]> git.ipfire.org Git - thirdparty/kernel/stable.git/commit
block: don't add partitions if GD_SUPPRESS_PART_SCAN is set
authorMing Lei <ming.lei@redhat.com>
Tue, 23 Aug 2022 10:38:19 +0000 (18:38 +0800)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 15 Sep 2022 08:47:15 +0000 (10:47 +0200)
commit4c9a8adb14d2a6b2f005db6b1cc68bd4492ed0e6
tree5bfd36154e161f1ddd3ade5b346d93d513924e2d
parent26a6d7d42972649277541483f794ec0f12b4e00c
block: don't add partitions if GD_SUPPRESS_PART_SCAN is set

[ Upstream commit 748008e1da926a814cc0a054c81ca614408b1b0c ]

Commit b9684a71fca7 ("block, loop: support partitions without scanning")
adds GD_SUPPRESS_PART_SCAN for replacing part function of
GENHD_FL_NO_PART. But looks blk_add_partitions() is missed, since
loop doesn't want to add partitions if GENHD_FL_NO_PART was set.
And it causes regression on libblockdev (as called from udisks) which
operates with the LO_FLAGS_PARTSCAN.

Fixes the issue by not adding partitions if GD_SUPPRESS_PART_SCAN is
set.

Fixes: b9684a71fca7 ("block, loop: support partitions without scanning")
Signed-off-by: Ming Lei <ming.lei@redhat.com>
Reviewed-by: Christoph Hellwig <hch@lst.de>
Link: https://lore.kernel.org/r/20220823103819.395776-1-ming.lei@redhat.com
Signed-off-by: Jens Axboe <axboe@kernel.dk>
Signed-off-by: Sasha Levin <sashal@kernel.org>
block/partitions/core.c