summaryrefslogtreecommitdiffstats
path: root/fs
diff options
context:
space:
mode:
authorJaegeuk Kim <jaegeuk@kernel.org>2017-02-27 21:28:53 -0800
committerJaegeuk Kim <jaegeuk@kernel.org>2017-02-28 09:57:13 -0800
commit900f736251c81886f3064c9d489c85eddee921b7 (patch)
tree2349e14d649acffbf8e6c106a85a8f8d212d67a3 /fs
parent8b107f5b97772c7c0c218302e9a4d15b4edf50b4 (diff)
downloadlinux-0-day-900f736251c81886f3064c9d489c85eddee921b7.tar.gz
linux-0-day-900f736251c81886f3064c9d489c85eddee921b7.tar.xz
f2fs: avoid to flush nat journal entries
This patch adds a missing condition which flushes nat journal entries unnecessarily introduced by: f2fs: add bitmaps for empty or full NAT blocks Signed-off-by: Chao Yu <yuchao0@huawei.com> Signed-off-by: Jaegeuk Kim <jaegeuk@kernel.org>
Diffstat (limited to 'fs')
-rw-r--r--fs/f2fs/node.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/f2fs/node.c b/fs/f2fs/node.c
index b3aead4c5a0fb..94967171dee87 100644
--- a/fs/f2fs/node.c
+++ b/fs/f2fs/node.c
@@ -2513,7 +2513,7 @@ void flush_nat_entries(struct f2fs_sb_info *sbi, struct cp_control *cpc)
* entries, remove all entries from journal and merge them
* into nat entry set.
*/
- if (cpc->reason == CP_UMOUNT ||
+ if (enabled_nat_bits(sbi, cpc) ||
!__has_cursum_space(journal, nm_i->dirty_nat_cnt, NAT_JOURNAL))
remove_nats_in_journal(sbi);