File tree Expand file tree Collapse file tree 3 files changed +9
-0
lines changed
src/unix/linux_like/linux/gnu Expand file tree Collapse file tree 3 files changed +9
-0
lines changed Original file line number Diff line number Diff line change @@ -3312,6 +3312,9 @@ fn test_linux(target: &str) {
33123312 | "IFLA_ALT_IFNAME"
33133313 | "IFLA_PERM_ADDRESS"
33143314 | "IFLA_PROTO_DOWN_REASON"
3315+ | "STATX_ATTR_MOUNT_ROOT"
3316+ | "STATX_ATTR_VERITY"
3317+ | "STATX_ATTR_DAX"
33153318 if sparc64 => true ,
33163319 // Added in Linux 5.13
33173320 "PTRACE_GET_RSEQ_CONFIGURATION" if sparc64 => true ,
Original file line number Diff line number Diff line change @@ -424,6 +424,9 @@ STATX_ATTR_COMPRESSED
424424STATX_ATTR_ENCRYPTED
425425STATX_ATTR_IMMUTABLE
426426STATX_ATTR_NODUMP
427+ STATX_ATTR_MOUNT_ROOT
428+ STATX_ATTR_VERITY
429+ STATX_ATTR_DAX
427430STATX_BASIC_STATS
428431STATX_BLOCKS
429432STATX_BTIME
Original file line number Diff line number Diff line change @@ -1026,6 +1026,9 @@ pub const STATX_ATTR_APPEND: ::c_int = 0x0020;
10261026pub const STATX_ATTR_NODUMP : :: c_int = 0x0040 ;
10271027pub const STATX_ATTR_ENCRYPTED : :: c_int = 0x0800 ;
10281028pub const STATX_ATTR_AUTOMOUNT : :: c_int = 0x1000 ;
1029+ pub const STATX_ATTR_MOUNT_ROOT : :: c_int = 0x2000 ;
1030+ pub const STATX_ATTR_VERITY : :: c_int = 0x00100000 ;
1031+ pub const STATX_ATTR_DAX : :: c_int = 0x00200000 ;
10291032
10301033pub const SOMAXCONN : :: c_int = 4096 ;
10311034
You can’t perform that action at this time.
0 commit comments