aboutsummaryrefslogtreecommitdiff
path: root/fs/f2fs/data.c
diff options
context:
space:
mode:
authorChao Yu <yuchao0@huawei.com>2016-08-20 15:12:02 +0800
committerMister Oyster <oysterized@gmail.com>2017-04-13 12:33:59 +0200
commit26685e4f1d3ea94d464f93baa6b2d8972fcded88 (patch)
tree80c8d9b17b06d778aedbdfcbba6c0dd41a24874d /fs/f2fs/data.c
parentd5e40a3f41de1104772eea0d9ad0c344c1de35bd (diff)
f2fs: fix to do f2fs_balance_fs in f2fs_map_blocks correctly
If we preallocate blocks with f2fs_reserve_blocks in f2fs_map_blocks, we should call f2fs_balance_fs for checking and reclaiming space, fix it. Signed-off-by: Chao Yu <yuchao0@huawei.com> Signed-off-by: Jaegeuk Kim <jaegeuk@kernel.org>
Diffstat (limited to 'fs/f2fs/data.c')
-rw-r--r--fs/f2fs/data.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/fs/f2fs/data.c b/fs/f2fs/data.c
index 8dd50ab99..c7083f54c 100644
--- a/fs/f2fs/data.c
+++ b/fs/f2fs/data.c
@@ -777,6 +777,7 @@ skip:
err = reserve_new_blocks(&dn, prealloc);
if (err)
goto sync_out;
+ allocated = dn.node_changed;
map->m_len += dn.ofs_in_node - ofs_in_node;
if (prealloc && dn.ofs_in_node != last_ofs_in_node + 1) {