1 /* SPDX-License-Identifier: GPL-2.0 */
7 #include <uapi/linux/stat.h>
9 #define S_IRWXUGO (S_IRWXU|S_IRWXG|S_IRWXO)
10 #define S_IALLUGO (S_ISUID|S_ISGID|S_ISVTX|S_IRWXUGO)
11 #define S_IRUGO (S_IRUSR|S_IRGRP|S_IROTH)
12 #define S_IWUGO (S_IWUSR|S_IWGRP|S_IWOTH)
13 #define S_IXUGO (S_IXUSR|S_IXGRP|S_IXOTH)
15 #define UTIME_NOW ((1l << 30) - 1l)
16 #define UTIME_OMIT ((1l << 30) - 2l)
18 #include <linux/types.h>
19 #include <linux/time.h>
20 #include <linux/uidgid.h>
23 u32 result_mask
; /* What fields the user got */
26 uint32_t blksize
; /* Preferred I/O size */
29 #define KSTAT_ATTR_FS_IOC_FLAGS \
30 (STATX_ATTR_COMPRESSED | \
31 STATX_ATTR_IMMUTABLE | \
34 STATX_ATTR_ENCRYPTED | \
36 )/* Attrs corresponding to FS_*_FL flags */
37 #define KSTAT_ATTR_VFS_FLAGS \
38 (STATX_ATTR_IMMUTABLE | \
40 ) /* Attrs corresponding to S_* flags that are enforced by the VFS */
47 struct timespec64 atime
;
48 struct timespec64 mtime
;
49 struct timespec64 ctime
;
50 struct timespec64 btime
; /* File creation time */
57 u32 atomic_write_unit_min
;
58 u32 atomic_write_unit_max
;
59 u32 atomic_write_segments_max
;
62 /* These definitions are internal to the kernel for now. Mainly used by nfsd. */
65 #define STATX_CHANGE_COOKIE 0x40000000U /* Want/got stx_change_attr */
67 /* file attribute values */
68 #define STATX_ATTR_CHANGE_MONOTONIC 0x8000000000000000ULL /* version monotonically increases */