aboutsummaryrefslogtreecommitdiff
path: root/include/linux/stat.h
diff options
context:
space:
mode:
authorGravatar Amir Goldstein <amir73il@gmail.com> 2021-06-19 12:26:16 +0300
committerGravatar Miklos Szeredi <mszeredi@redhat.com> 2021-08-17 11:47:43 +0200
commit4f911138c8da94bcff84f1d093d28e378703c43f (patch)
tree5e60f8b85f273a6599ad0b52165b84af91189a2b /include/linux/stat.h
parentLinux 5.14-rc6 (diff)
downloadlinux-4f911138c8da94bcff84f1d093d28e378703c43f.tar.gz
linux-4f911138c8da94bcff84f1d093d28e378703c43f.tar.bz2
linux-4f911138c8da94bcff84f1d093d28e378703c43f.zip
fs: add generic helper for filling statx attribute flags
The immutable and append-only properties on an inode are published on the inode's i_flags and enforced by the VFS. Create a helper to fill the corresponding STATX_ATTR_ flags in the kstat structure from the inode's i_flags. Only orange was converted to use this helper. Other filesystems could use it in the future. Suggested-by: Miklos Szeredi <miklos@szeredi.hu> Signed-off-by: Amir Goldstein <amir73il@gmail.com> Signed-off-by: Miklos Szeredi <mszeredi@redhat.com>
Diffstat (limited to 'include/linux/stat.h')
-rw-r--r--include/linux/stat.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/include/linux/stat.h b/include/linux/stat.h
index fff27e603814..7df06931f25d 100644
--- a/include/linux/stat.h
+++ b/include/linux/stat.h
@@ -34,6 +34,10 @@ struct kstat {
STATX_ATTR_ENCRYPTED | \
STATX_ATTR_VERITY \
)/* Attrs corresponding to FS_*_FL flags */
+#define KSTAT_ATTR_VFS_FLAGS \
+ (STATX_ATTR_IMMUTABLE | \
+ STATX_ATTR_APPEND \
+ ) /* Attrs corresponding to S_* flags that are enforced by the VFS */
u64 ino;
dev_t dev;
dev_t rdev;