1From 052818e91314b797d96d87672c60f6784160f935 Mon Sep 17 00:00:00 2001
2From: Khem Raj <raj.khem@gmail.com>
3Date: Mon, 25 Mar 2024 10:50:59 -0700
4Subject: [PATCH 2/2] Add missing STATX_ATTR_* defines from musl sys/stat.h
5
6These defines are not provided by sys/stat.h on musl but are
7in glibc's sys/stat.h, therefore to compile the tests on musl
8based systems add the missing defines from linux/stat.h
9if they are not provided
10
11Upstream-Status: Submitted [https://lore.kernel.org/fstests/20240325175323.3450750-2-raj.khem@gmail.com/T/#u]
12Signed-off-by: Khem Raj <raj.khem@gmail.com>
13---
14 src/statx.h | 12 ++++++++++++
15 1 file changed, 12 insertions(+)
16
17diff --git a/src/statx.h b/src/statx.h
18index 3f239d79..12599f5b 100644
19--- a/src/statx.h
20+++ b/src/statx.h
21@@ -12,6 +12,18 @@
22 #define AT_STATX_DONT_SYNC      0x4000  /* - Don't sync attributes with the server */
23 #endif
24
25+#ifndef STATX_ATTR_COMPRESSED
26+#define STATX_ATTR_COMPRESSED		0x00000004 /* [I] File is compressed by the fs */
27+#define STATX_ATTR_IMMUTABLE		0x00000010 /* [I] File is marked immutable */
28+#define STATX_ATTR_APPEND		0x00000020 /* [I] File is append-only */
29+#define STATX_ATTR_NODUMP		0x00000040 /* [I] File is not to be dumped */
30+#define STATX_ATTR_ENCRYPTED		0x00000800 /* [I] File requires key to decrypt in fs */
31+#define STATX_ATTR_AUTOMOUNT		0x00001000 /* Dir: Automount trigger */
32+#define STATX_ATTR_MOUNT_ROOT		0x00002000 /* Root of a mount */
33+#define STATX_ATTR_VERITY		0x00100000 /* [I] Verity protected file */
34+#define STATX_ATTR_DAX			0x00200000 /* File is currently in DAX state */
35+#endif
36+
37 #ifndef AT_NO_AUTOMOUNT
38 #define AT_NO_AUTOMOUNT		0x800	/* Suppress terminal automount traversal */
39 #endif
40--
412.44.0
42
43