summaryrefslogtreecommitdiffstats
path: root/fs/f2fs
diff options
context:
space:
mode:
authorJaegeuk Kim2014-03-19 02:43:59 +0100
committerJaegeuk Kim2014-03-20 14:10:08 +0100
commit40bb0058c871c6ddcd4aff9fe2f5224e59aba47b (patch)
treee77b844ff325c799afc0760bc0d4d23b788ecb10 /fs/f2fs
parentf2fs: call f2fs_wait_on_page_writeback instead of native function (diff)
downloadkernel-qcow2-linux-40bb0058c871c6ddcd4aff9fe2f5224e59aba47b.tar.gz
kernel-qcow2-linux-40bb0058c871c6ddcd4aff9fe2f5224e59aba47b.tar.xz
kernel-qcow2-linux-40bb0058c871c6ddcd4aff9fe2f5224e59aba47b.zip
f2fs: avoid to drop nat entries due to the negative nr_shrink
The try_to_free_nats should not receive the negative nr_shrink. Otherwise, it can drop all the nat entries by the while loop. Signed-off-by: Jaegeuk Kim <jaegeuk.kim@samsung.com>
Diffstat (limited to 'fs/f2fs')
-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 9a6d8bbf0bd7..d27e65a1fb0b 100644
--- a/fs/f2fs/node.c
+++ b/fs/f2fs/node.c
@@ -208,7 +208,7 @@ int try_to_free_nats(struct f2fs_sb_info *sbi, int nr_shrink)
{
struct f2fs_nm_info *nm_i = NM_I(sbi);
- if (nm_i->nat_cnt <= NM_WOUT_THRESHOLD)
+ if (nm_i->nat_cnt <= NM_WOUT_THRESHOLD || nr_shrink <= 0)
return 0;
write_lock(&nm_i->nat_tree_lock);