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) {
3312
3312
| "IFLA_ALT_IFNAME"
3313
3313
| "IFLA_PERM_ADDRESS"
3314
3314
| "IFLA_PROTO_DOWN_REASON"
3315
+ | "STATX_ATTR_MOUNT_ROOT"
3316
+ | "STATX_ATTR_VERITY"
3317
+ | "STATX_ATTR_DAX"
3315
3318
if sparc64 => true ,
3316
3319
// Added in Linux 5.13
3317
3320
"PTRACE_GET_RSEQ_CONFIGURATION" if sparc64 => true ,
Original file line number Diff line number Diff line change @@ -424,6 +424,9 @@ STATX_ATTR_COMPRESSED
424
424
STATX_ATTR_ENCRYPTED
425
425
STATX_ATTR_IMMUTABLE
426
426
STATX_ATTR_NODUMP
427
+ STATX_ATTR_MOUNT_ROOT
428
+ STATX_ATTR_VERITY
429
+ STATX_ATTR_DAX
427
430
STATX_BASIC_STATS
428
431
STATX_BLOCKS
429
432
STATX_BTIME
Original file line number Diff line number Diff line change @@ -1026,6 +1026,9 @@ pub const STATX_ATTR_APPEND: ::c_int = 0x0020;
1026
1026
pub const STATX_ATTR_NODUMP : :: c_int = 0x0040 ;
1027
1027
pub const STATX_ATTR_ENCRYPTED : :: c_int = 0x0800 ;
1028
1028
pub 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 ;
1029
1032
1030
1033
pub const SOMAXCONN : :: c_int = 4096 ;
1031
1034
You can’t perform that action at this time.
0 commit comments