6 #include <uapi/linux/stat.h>
8 #define S_IRWXUGO (S_IRWXU|S_IRWXG|S_IRWXO)
9 #define S_IALLUGO (S_ISUID|S_ISGID|S_ISVTX|S_IRWXUGO)
10 #define S_IRUGO (S_IRUSR|S_IRGRP|S_IROTH)
11 #define S_IWUGO (S_IWUSR|S_IWGRP|S_IWOTH)
12 #define S_IXUGO (S_IXUSR|S_IXGRP|S_IXOTH)
14 #define UTIME_NOW ((1l << 30) - 1l)
15 #define UTIME_OMIT ((1l << 30) - 2l)
17 #include <linux/types.h>
18 #include <linux/time.h>
19 #include <linux/uidgid.h>
30 struct timespec atime
;
31 struct timespec mtime
;
32 struct timespec ctime
;
33 unsigned long blksize
;
34 unsigned long long blocks
;