summaryrefslogtreecommitdiff
path: root/fs/f2fs/namei.c
diff options
context:
space:
mode:
authorChao Yu <chao2.yu@samsung.com>2015-02-16 11:20:27 +0300
committerJaegeuk Kim <jaegeuk@kernel.org>2015-03-03 20:58:45 +0300
commit3c0d84d6f1dde0a85f20957954fffb209edc55ac (patch)
treeea54749732f04adee95625208883a08921b50afc /fs/f2fs/namei.c
parent97dc3fd2cbbf6dac239333083a8a005bf50c96e8 (diff)
downloadlinux-3c0d84d6f1dde0a85f20957954fffb209edc55ac.tar.xz
f2fs: fix incorrectly stat number of inline data inode
We should stat inline data information for temp file in f2fs_tmpfile if we enable inline_data feature. Otherwise, inline data stat number will be wrong after this temp file is evicted. Signed-off-by: Chao Yu <chao2.yu@samsung.com> Signed-off-by: Jaegeuk Kim <jaegeuk@kernel.org>
Diffstat (limited to 'fs/f2fs/namei.c')
-rw-r--r--fs/f2fs/namei.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/fs/f2fs/namei.c b/fs/f2fs/namei.c
index e79639a9787a..1e2ae21bd6b6 100644
--- a/fs/f2fs/namei.c
+++ b/fs/f2fs/namei.c
@@ -693,6 +693,8 @@ static int f2fs_tmpfile(struct inode *dir, struct dentry *dentry, umode_t mode)
f2fs_unlock_op(sbi);
alloc_nid_done(sbi, inode->i_ino);
+
+ stat_inc_inline_inode(inode);
d_tmpfile(dentry, inode);
unlock_new_inode(inode);
return 0;