projects
/
GitHub
/
moto-9609
/
android_kernel_motorola_exynos9610.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d600af2
)
f2fs: fix to do f2fs_balance_fs in f2fs_map_blocks correctly
author
Chao Yu
<yuchao0@huawei.com>
Sat, 20 Aug 2016 07:12:02 +0000
(15:12 +0800)
committer
Jaegeuk Kim
<jaegeuk@kernel.org>
Tue, 30 Aug 2016 01:31:10 +0000
(18:31 -0700)
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>
fs/f2fs/data.c
patch
|
blob
|
blame
|
history
diff --git
a/fs/f2fs/data.c
b/fs/f2fs/data.c
index ccb401eebc112b26b848818185579929b5ee1030..7d618a969524399842e4be668fc9b0d4777324d7 100644
(file)
--- a/
fs/f2fs/data.c
+++ b/
fs/f2fs/data.c
@@
-783,6
+783,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) {