>From fa84c5d014bd698d5ce1d42641c0734b044f2dbc Mon Sep 17 00:00:00 2001 From: Szabolcs Nagy Date: Mon, 12 Aug 2019 18:30:00 +0000 Subject: [PATCH 4/7] fcntl.h: add AT_RECURSIVE from linux v5.2 apply open_tree with OPEN_TREE_CLONE call to the entire subtree, see linux commit a07b20004793d8926f78d63eb5980559f7813404 vfs: syscall: Add open_tree(2) to reference or clone a mount --- include/fcntl.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/fcntl.h b/include/fcntl.h index 51ec7efa..1dba20c2 100644 --- a/include/fcntl.h +++ b/include/fcntl.h @@ -70,6 +70,7 @@ int posix_fallocate(int, off_t, off_t); #define AT_STATX_SYNC_AS_STAT 0x0000 #define AT_STATX_FORCE_SYNC 0x2000 #define AT_STATX_DONT_SYNC 0x4000 +#define AT_RECURSIVE 0x8000 #endif #define POSIX_FADV_NORMAL 0 -- 2.21.0