diff options
author | Chao Yu <yuchao0@huawei.com> | 2016-10-11 17:31:35 +0300 |
---|---|---|
committer | Jaegeuk Kim <jaegeuk@kernel.org> | 2016-11-23 23:11:02 +0300 |
commit | 3a2ad5672bb36ee9c07bab97dadc8b0f70d391f4 (patch) | |
tree | 182e8599c13bea5b9e01ca4cca2ed5acc2ab5b0a /fs/f2fs/checkpoint.c | |
parent | eb0aa4b80784b8551bd5be577024e067bc83ef94 (diff) | |
download | linux-3a2ad5672bb36ee9c07bab97dadc8b0f70d391f4.tar.xz |
f2fs: don't interrupt free nids building during nid allocation
Let build_free_nids support sync/async methods, in allocation flow of nids,
we use synchronuous method, so that we can avoid looping in alloc_nid when
free memory is low; in unblock_operations and f2fs_balance_fs_bg we use
asynchronuous method in where low memory condition can interrupt us.
Signed-off-by: Chao Yu <yuchao0@huawei.com>
Signed-off-by: Jaegeuk Kim <jaegeuk@kernel.org>
Diffstat (limited to 'fs/f2fs/checkpoint.c')
-rw-r--r-- | fs/f2fs/checkpoint.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/f2fs/checkpoint.c b/fs/f2fs/checkpoint.c index 7db2aa2280ad..654f5d7f9288 100644 --- a/fs/f2fs/checkpoint.c +++ b/fs/f2fs/checkpoint.c @@ -987,7 +987,7 @@ static void unblock_operations(struct f2fs_sb_info *sbi) { up_write(&sbi->node_write); - build_free_nids(sbi); + build_free_nids(sbi, false); f2fs_unlock_all(sbi); } |