aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPankaj Raghav <[email protected]>2022-02-04 13:00:22 +0100
committerDavid Sterba <[email protected]>2022-03-14 13:13:49 +0100
commitf716fa4798df82f858afb9876f6d2e9f37a0d5c7 (patch)
treebe01e9e6b19988726b35da3347675095694623c0
parenta55e65b80e318e8917faa781df9955549c6cdaff (diff)
btrfs: zoned: remove redundant assignment in btrfs_check_zoned_mode
Remove the redundant assignment to zone_info variable in btrfs_check_zoned_mode function. Reviewed-by: Johannes Thumshirn <[email protected]> Signed-off-by: Pankaj Raghav <[email protected]> Signed-off-by: David Sterba <[email protected]>
-rw-r--r--fs/btrfs/zoned.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/fs/btrfs/zoned.c b/fs/btrfs/zoned.c
index 3aad1970ee43..b7b5fac1c779 100644
--- a/fs/btrfs/zoned.c
+++ b/fs/btrfs/zoned.c
@@ -652,8 +652,7 @@ int btrfs_check_zoned_mode(struct btrfs_fs_info *fs_info)
if (model == BLK_ZONED_HM ||
(model == BLK_ZONED_HA && incompat_zoned) ||
(model == BLK_ZONED_NONE && incompat_zoned)) {
- struct btrfs_zoned_device_info *zone_info =
- device->zone_info;
+ struct btrfs_zoned_device_info *zone_info;
zone_info = device->zone_info;
zoned_devices++;