diff options
author | Chao Yu <yuchao0@huawei.com> | 2020-03-25 10:22:09 +0800 |
---|---|---|
committer | Jaegeuk Kim <jaegeuk@kernel.org> | 2020-04-03 10:21:31 -0700 |
commit | fd26725f6eafa84cb112ee889b2765b57e1263d8 (patch) | |
tree | dbb8fa38d470e9901ac2712ca49ddc3551820193 /fs/f2fs/file.c | |
parent | 80d0d45ab5b23361b3394e89768afc2d076a5950 (diff) | |
download | linux-fd26725f6eafa84cb112ee889b2765b57e1263d8.tar.gz linux-fd26725f6eafa84cb112ee889b2765b57e1263d8.tar.bz2 linux-fd26725f6eafa84cb112ee889b2765b57e1263d8.zip |
f2fs: show compression in statx
fstest reports below message when compression is on:
generic/424 1s ... - output mismatch
--- tests/generic/424.out
+++ results/generic/424.out.bad
@@ -1,2 +1,26 @@
QA output created by 424
+[!] Attribute compressed should be set
+Failed
+stat_test failed
+[!] Attribute compressed should be set
+Failed
+stat_test failed
We missed to set STATX_ATTR_COMPRESSED on compressed inode in getattr(),
fix it.
Signed-off-by: Chao Yu <yuchao0@huawei.com>
Signed-off-by: Jaegeuk Kim <jaegeuk@kernel.org>
Diffstat (limited to 'fs/f2fs/file.c')
-rw-r--r-- | fs/f2fs/file.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/fs/f2fs/file.c b/fs/f2fs/file.c index e3c294372db8..1476a3bc6317 100644 --- a/fs/f2fs/file.c +++ b/fs/f2fs/file.c @@ -799,6 +799,8 @@ int f2fs_getattr(const struct path *path, struct kstat *stat, } flags = fi->i_flags; + if (flags & F2FS_COMPR_FL) + stat->attributes |= STATX_ATTR_COMPRESSED; if (flags & F2FS_APPEND_FL) stat->attributes |= STATX_ATTR_APPEND; if (IS_ENCRYPTED(inode)) @@ -810,7 +812,8 @@ int f2fs_getattr(const struct path *path, struct kstat *stat, if (IS_VERITY(inode)) stat->attributes |= STATX_ATTR_VERITY; - stat->attributes_mask |= (STATX_ATTR_APPEND | + stat->attributes_mask |= (STATX_ATTR_COMPRESSED | + STATX_ATTR_APPEND | STATX_ATTR_ENCRYPTED | STATX_ATTR_IMMUTABLE | STATX_ATTR_NODUMP | |