summaryrefslogtreecommitdiff
path: root/src/basic/missing_syscall.h
diff options
context:
space:
mode:
authorRomain Naour <romain.naour@smile.fr>2022-01-07 22:25:23 +0100
committerYu Watanabe <watanabe.yu+github@gmail.com>2022-03-28 16:37:59 +0900
commit608c3b0293cac3cbb037b2d15c0a0f1e247eb71e (patch)
tree4c7d2959455a84ae6e615d22221a93e8b14779b9 /src/basic/missing_syscall.h
parentd13ce742e1390cb33df7eab97c208c24eaacb040 (diff)
downloadsystemd-608c3b0293cac3cbb037b2d15c0a0f1e247eb71e.tar.gz
missing-syscall: define MOVE_MOUNT_T_EMPTY_PATH if missing
MOVE_MOUNT_T_EMPTY_PATH has been added to systemd 250 by [1] but it's defined in kernel headers since version 5.2. [1] c7bf079bbc19e3b409acc0c7acc3e14749211fe2
Diffstat (limited to 'src/basic/missing_syscall.h')
-rw-r--r--src/basic/missing_syscall.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/basic/missing_syscall.h b/src/basic/missing_syscall.h
index 8267b1a90c..793d111c55 100644
--- a/src/basic/missing_syscall.h
+++ b/src/basic/missing_syscall.h
@@ -569,6 +569,10 @@ static inline int missing_open_tree(
#define MOVE_MOUNT_F_EMPTY_PATH 0x00000004 /* Empty from path permitted */
#endif
+#ifndef MOVE_MOUNT_T_EMPTY_PATH
+#define MOVE_MOUNT_T_EMPTY_PATH 0x00000040 /* Empty to path permitted */
+#endif
+
static inline int missing_move_mount(
int from_dfd,
const char *from_pathname,