btrfs: fix missing blkdev_put() call in btrfs_scan_one_device()
authorShin'ichiro Kawasaki <shinichiro.kawasaki@wdc.com>
Wed, 15 Dec 2021 10:38:43 +0000 (19:38 +0900)
committerDavid Sterba <dsterba@suse.com>
Wed, 15 Dec 2021 16:07:34 +0000 (17:07 +0100)
commit4989d4a0aed3fb30f5b48787a689d7090de6f86d
treec8340203bf9bf3d13b96c010365fddff141944a8
parent212a58fda9b9077e0efc20200a4feb76afacfd95
btrfs: fix missing blkdev_put() call in btrfs_scan_one_device()

The function btrfs_scan_one_device() calls blkdev_get_by_path() and
blkdev_put() to get and release its target block device. However, when
btrfs_sb_log_location_bdev() fails, blkdev_put() is not called and the
block device is left without clean up. This triggered failure of fstests
generic/085. Fix the failure path of btrfs_sb_log_location_bdev() to
call blkdev_put().

Fixes: 12659251ca5df ("btrfs: implement log-structured superblock for ZONED mode")
CC: stable@vger.kernel.org # 5.15+
Reviewed-by: Nikolay Borisov <nborisov@suse.com>
Signed-off-by: Shin'ichiro Kawasaki <shinichiro.kawasaki@wdc.com>
Reviewed-by: David Sterba <dsterba@suse.com>
Signed-off-by: David Sterba <dsterba@suse.com>
fs/btrfs/volumes.c