]> git.ipfire.org Git - people/ms/linux.git/commit
btrfs: zoned: set pseudo max append zone limit in zone emulation mode
authorShin'ichiro Kawasaki <shinichiro.kawasaki@wdc.com>
Fri, 26 Aug 2022 07:42:15 +0000 (16:42 +0900)
committerDavid Sterba <dsterba@suse.com>
Mon, 5 Sep 2022 13:32:26 +0000 (15:32 +0200)
commitcac5c44c48c9fb9cc31bea15ebd9ef0c6462314f
treedab3026219e586f635378cacca2ca69eee156c5c
parentd5b81ced74afded85619ffbbe9c32ba9d82c9b1e
btrfs: zoned: set pseudo max append zone limit in zone emulation mode

The commit 7d7672bc5d10 ("btrfs: convert count_max_extents() to use
fs_info->max_extent_size") introduced a division by
fs_info->max_extent_size. This max_extent_size is initialized with max
zone append limit size of the device btrfs runs on. However, in zone
emulation mode, the device is not zoned then its zone append limit is
zero. This resulted in zero value of fs_info->max_extent_size and caused
zero division error.

Fix the error by setting non-zero pseudo value to max append zone limit
in zone emulation mode. Set the pseudo value based on max_segments as
suggested in the commit c2ae7b772ef4 ("btrfs: zoned: revive
max_zone_append_bytes").

Fixes: 7d7672bc5d10 ("btrfs: convert count_max_extents() to use fs_info->max_extent_size")
CC: stable@vger.kernel.org # 5.12+
Reviewed-by: Johannes Thumshirn <johannes.thumshirn@wdc.com>
Reviewed-by: Naohiro Aota <naohiro.aota@wdc.com>
Signed-off-by: Shin'ichiro Kawasaki <shinichiro.kawasaki@wdc.com>
Signed-off-by: David Sterba <dsterba@suse.com>
fs/btrfs/zoned.c