]> www.infradead.org Git - users/dwmw2/linux.git/commit
dm: fix a crash if blk_alloc_disk fails
authorMikulas Patocka <mpatocka@redhat.com>
Mon, 7 Oct 2024 11:38:12 +0000 (13:38 +0200)
committerMikulas Patocka <mpatocka@redhat.com>
Tue, 15 Oct 2024 11:37:17 +0000 (13:37 +0200)
commitfed13a5478680614ba97fc87e71f16e2e197912e
tree69e5f716fe994c8cc26e8f843c4a6abef4216c76
parent8e929cb546ee42c9a61d24fae60605e9e3192354
dm: fix a crash if blk_alloc_disk fails

If blk_alloc_disk fails, the variable md->disk is set to an error value.
cleanup_mapped_device will see that md->disk is non-NULL and it will
attempt to access it, causing a crash on this statement
"md->disk->private_data = NULL;".

Signed-off-by: Mikulas Patocka <mpatocka@redhat.com>
Reported-by: Chenyuan Yang <chenyuan0y@gmail.com>
Closes: https://marc.info/?l=dm-devel&m=172824125004329&w=2
Cc: stable@vger.kernel.org
Reviewed-by: Nitesh Shetty <nj.shetty@samsung.com>
drivers/md/dm.c