f2fs: don't issue flush in f2fs_flush_device_cache() for nobarrier case
authorChao Yu <yuchao0@huawei.com>
Mon, 12 Oct 2020 02:28:14 +0000 (10:28 +0800)
committerJaegeuk Kim <jaegeuk@kernel.org>
Wed, 14 Oct 2020 06:23:34 +0000 (23:23 -0700)
This patch changes f2fs_flush_device_cache() to skip issuing flush for
nobarrier case.

Signed-off-by: Chao Yu <yuchao0@huawei.com>
Signed-off-by: Jaegeuk Kim <jaegeuk@kernel.org>
fs/f2fs/segment.c

index 05ab5ae..1596502 100644 (file)
@@ -759,6 +759,9 @@ int f2fs_flush_device_cache(struct f2fs_sb_info *sbi)
        if (!f2fs_is_multi_device(sbi))
                return 0;
 
+       if (test_opt(sbi, NOBARRIER))
+               return 0;
+
        for (i = 1; i < sbi->s_ndevs; i++) {
                if (!f2fs_test_bit(i, (char *)&sbi->dirty_device))
                        continue;