]> git.baikalelectronics.ru Git - kernel.git/commit
dm: fix zoned locking imbalance due to needless check in clone_endio
authorMike Snitzer <snitzer@kernel.org>
Fri, 10 Jun 2022 19:07:48 +0000 (15:07 -0400)
committerMike Snitzer <snitzer@kernel.org>
Fri, 10 Jun 2022 19:23:54 +0000 (15:23 -0400)
commitae3d21bf3d501d1e74ec5e92e89075afba264e9c
tree28e1f26e4971e5f2df79d3f8f88928286f568ed3
parentb64a1907e2525a49cb91d53513e82442ecd6f10f
dm: fix zoned locking imbalance due to needless check in clone_endio

After the commit 1056e4e0610f ("dm: pass NULL bdev to bio_alloc_clone"),
clone_endio() only calls dm_zone_endio() when DM targets remap the
clone bio's bdev to something other than the md->disk->part0 default.

However, if a DM target (e.g. dm-crypt) stacked ontop of a dm-zoned
does not remap the clone bio using bio_set_dev() then dm_zone_endio()
is not called at completion of the bios and zone locks are not
properly unlocked. This triggers a hang, in dm_zone_map_bio(), when
blktests block/004 is run for dm-crypt on zoned block devices. To
avoid the hang, simply remove the clone_endio() check that verifies
the target remapped the clone bio to a device other than the default.

Fixes: 1056e4e0610f ("dm: pass NULL bdev to bio_alloc_clone")
Reported-by: Shin'ichiro Kawasaki <shinichiro.kawasaki@wdc.com>
Signed-off-by: Mike Snitzer <snitzer@kernel.org>
drivers/md/dm.c