[RFC PATCH 2/3] f2fs: show prjquota info on statfs for a file

From: Chengguang Xu
Date: Mon Nov 18 2019 - 00:11:18 EST


Currently we replace filesystem statistics using prjquota info
on statfs when specified directory has project id inherit flag.
However, statfs on a file(accurately non-dir) which is under the
project quota dir(with inherit flag) still shows whole filesystem
statistics. In container use case, it will give container user
inconsistent experience and cause confusion about available free
space.

Detail info like below:
We use project quota to limit disk space usage for a container
and run df command inside container.

Run df on a directory:

[root /]# df -h /etc/
Filesystem Size Used Avail Use% Mounted on
kataSharedÂÂÂÂÂ 1.0GÂÂ 13M 1012MÂÂ 2% /

Run df on a file:

[root /]# df -h /etc/exports
Filesystem Size Used Avail Use% Mounted on
kataSharedÂÂÂÂÂ 1.5TÂ 778MÂ 1.5TÂÂ 1% /

Signed-off-by: Chengguang Xu <cgxu519@xxxxxxxxxxxx>
---
fs/f2fs/super.c | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/fs/f2fs/super.c b/fs/f2fs/super.c
index 1443cee15863..c5b9a92d606b 100644
--- a/fs/f2fs/super.c
+++ b/fs/f2fs/super.c
@@ -1287,8 +1287,9 @@ static int f2fs_statfs(struct dentry *dentry, struct kstatfs *buf)
buf->f_fsid.val[1] = (u32)(id >> 32);

#ifdef CONFIG_QUOTA
- if (is_inode_flag_set(dentry->d_inode, FI_PROJ_INHERIT) &&
- sb_has_quota_limits_enabled(sb, PRJQUOTA)) {
+ if ((is_inode_flag_set(dentry->d_inode, FI_PROJ_INHERIT) ||
+ !S_ISDIR(dentry->d_inode->i_mode)) &&
+ sb_has_quota_limits_enabled(sb, PRJQUOTA)) {
f2fs_statfs_project(sb, F2FS_I(dentry->d_inode)->i_projid, buf);
}
#endif
--
2.20.1