]> git.hungrycats.org Git - linux/commitdiff
f2fs: Do not issue small discards in LFS mode
authorDamien Le Moal <damien.lemoal@wdc.com>
Fri, 26 May 2017 08:04:40 +0000 (17:04 +0900)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 27 Jul 2017 22:10:15 +0000 (15:10 -0700)
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.

Signed-off-by: Damien Le Moal <damien.lemoal@wdc.com>
Reviewed-by: Chao Yu <yuchao0@huawei.com>
Signed-off-by: Jaegeuk Kim <jaegeuk@kernel.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
fs/f2fs/segment.c

index 3222e2be41974715edd3fd174fcf21d30a6d08a1..4b09c369a886644eeacfcf882eb861da7bedfc9e 100644 (file)
@@ -1329,7 +1329,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,