diff options
author | bors <bors@rust-lang.org> | 2022-10-09 07:12:47 +0000 |
---|---|---|
committer | bors <bors@rust-lang.org> | 2022-10-09 07:12:47 +0000 |
commit | 8dcd55656eb7abbef1d6cfeb8bad28306473fce6 (patch) | |
tree | 73677a9793d4f78c563bd0768bafed8ce3ae0254 /libc-test/semver/linux-gnu.txt | |
parent | f064e97b687b508e4adbaae9ef4c38e23662ad2b (diff) | |
parent | a8c85b48e4c90c24161b5032d27eb8f73624df38 (diff) | |
download | rust-libc-8dcd55656eb7abbef1d6cfeb8bad28306473fce6.tar.gz |
Auto merge of #2941 - SteveLauC:statx-constants-on-gnu-linux, r=JohnTitor
add missing STATX_ATTR_* constants on gnu/linux
Corresponds to [this](https://github.com/torvalds/linux/blob/master/include/uapi/linux/stat.h#L189~L191):
```c
#define STATX_ATTR_MOUNT_ROOT 0x00002000 /* Root of a mount */
#define STATX_ATTR_VERITY 0x00100000 /* [I] Verity protected file */
#define STATX_ATTR_DAX 0x00200000 /* File is currently in DAX state */
```
Diffstat (limited to 'libc-test/semver/linux-gnu.txt')
-rw-r--r-- | libc-test/semver/linux-gnu.txt | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libc-test/semver/linux-gnu.txt b/libc-test/semver/linux-gnu.txt index 3ad582e210..6b43d6202b 100644 --- a/libc-test/semver/linux-gnu.txt +++ b/libc-test/semver/linux-gnu.txt @@ -424,6 +424,9 @@ STATX_ATTR_COMPRESSED STATX_ATTR_ENCRYPTED STATX_ATTR_IMMUTABLE STATX_ATTR_NODUMP +STATX_ATTR_MOUNT_ROOT +STATX_ATTR_VERITY +STATX_ATTR_DAX STATX_BASIC_STATS STATX_BLOCKS STATX_BTIME |