aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJaegeuk Kim <[email protected]>2017-10-13 10:27:45 -0700
committerJaegeuk Kim <[email protected]>2017-10-26 10:44:15 +0200
commit5b4267d195dd887c4412e34b5a7365baa741b679 (patch)
tree5fe317176e6fcc6b291bddb5c7b41506a8e3dc79
parent943973cd528bc8814c85bc3af1c0f8ab87a1d69b (diff)
f2fs: expose some sectors to user in inline data or dentry case
If there's some data written through inline data or dentry, we need to shouw st_blocks. This fixes reporting zero blocks even though there is small written data. Cc: [email protected] Reviewed-by: Chao Yu <[email protected]> [Jaegeuk Kim: avoid link file for quotacheck] Signed-off-by: Jaegeuk Kim <[email protected]>
-rw-r--r--fs/f2fs/file.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/fs/f2fs/file.c b/fs/f2fs/file.c
index 9b93aea5cbeb..8fe95f8b16b1 100644
--- a/fs/f2fs/file.c
+++ b/fs/f2fs/file.c
@@ -686,6 +686,12 @@ int f2fs_getattr(const struct path *path, struct kstat *stat,
STATX_ATTR_NODUMP);
generic_fillattr(inode, stat);
+
+ /* we need to show initial sectors used for inline_data/dentries */
+ if ((S_ISREG(inode->i_mode) && f2fs_has_inline_data(inode)) ||
+ f2fs_has_inline_dentry(inode))
+ stat->blocks += (stat->size + 511) >> 9;
+
return 0;
}