Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit f5451c29 authored by Damien Le Moal's avatar Damien Le Moal Committed by Jaegeuk Kim
Browse files

f2fs: Do not issue small discards in LFS mode



commit acfd2810c75b0625897fc119a2d3a9c26cc0e405 upstream.

clear_prefree_segments() issues small discards after discarding full
segments. These small discards may not be section aligned, so not zone
aligned on a zoned block device, causing __f2fs_iissue_discard_zone() to fail.
Fix this by not issuing small discards for a volume mounted with the BLKZONED
feature enabled.

Cc: stable@vger.kernel.org
Signed-off-by: default avatarDamien Le Moal <damien.lemoal@wdc.com>
Reviewed-by: default avatarChao Yu <yuchao0@huawei.com>
Signed-off-by: default avatarJaegeuk Kim <jaegeuk@kernel.org>
parent 60eac60b
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -1416,7 +1416,8 @@ find_next:
					sbi->blocks_per_seg, cur_pos);
			len = next_pos - cur_pos;

			if (force && len < cpc->trim_minlen)
			if (f2fs_sb_mounted_blkzoned(sbi->sb) ||
			    (force && len < cpc->trim_minlen))
				goto skip;

			f2fs_issue_discard(sbi, entry->start_blkaddr + cur_pos,