summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2019-03-28 18:34:33 +0100
committerLennart Poettering <lennart@poettering.net>2019-03-28 18:43:04 +0100
commitc3272fd4df4a2ff3ebc1b8d4024d56bc803a1b62 (patch)
tree5acc41313e43a026384a1aa15b1ff50c676cc216
parent48da47eeca7a58aecc3512346ab8d4064711c71d (diff)
downloadsystemd-c3272fd4df4a2ff3ebc1b8d4024d56bc803a1b62.tar.gz
missing: add FS_PROJINHERIT_FL
It's available since kernel 4.5, but not in older kernels.
-rw-r--r--src/basic/missing_fs.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/basic/missing_fs.h b/src/basic/missing_fs.h
index 48c1af0458..c262a91812 100644
--- a/src/basic/missing_fs.h
+++ b/src/basic/missing_fs.h
@@ -61,3 +61,7 @@
#ifndef NS_GET_NSTYPE /* d95fa3c76a66b6d76b1e109ea505c55e66360f3c (4.11) */
#define NS_GET_NSTYPE _IO(0xb7, 0x3)
#endif
+
+#ifndef FS_PROJINHERIT_FL
+#define FS_PROJINHERIT_FL 0x20000000
+#endif