f2fs: Fix discard bug on zoned block devices with 2MiB zone size
authorYonggil Song <yonggil.song@samsung.com>
Mon, 13 Mar 2023 09:48:25 +0000 (18:48 +0900)
committerJaegeuk Kim <jaegeuk@kernel.org>
Wed, 29 Mar 2023 22:17:38 +0000 (15:17 -0700)
commit6797ebc4ac55e7539391a5155f8a27f614da6bc5
treeed2f7fdfbce886954a02136807e8e86f34fae274
parentbf21acf9959a48d90dd32869a0649525eb21be56
f2fs: Fix discard bug on zoned block devices with 2MiB zone size

When using f2fs on a zoned block device with 2MiB zone size, IO errors
occurs because f2fs tries to write data to a zone that has not been reset.

The cause is that f2fs tries to discard multiple zones at once. This is
caused by a condition in f2fs_clear_prefree_segments that does not check
for zoned block devices when setting the discard range. This leads to
invalid reset commands and write pointer mismatches.

This patch fixes the zoned block device with 2MiB zone size to reset one
zone at a time.

Signed-off-by: Yonggil Song <yonggil.song@samsung.com>
Signed-off-by: Jaegeuk Kim <jaegeuk@kernel.org>
fs/f2fs/segment.c