diff options
Diffstat (limited to 'include/linux/fcntl.h')
-rw-r--r-- | include/linux/fcntl.h | 15 |
1 files changed, 10 insertions, 5 deletions
diff --git a/include/linux/fcntl.h b/include/linux/fcntl.h index 40b93265d4ba..86037400a6e3 100644 --- a/include/linux/fcntl.h +++ b/include/linux/fcntl.h | |||
@@ -3,12 +3,17 @@ | |||
3 | 3 | ||
4 | #include <asm/fcntl.h> | 4 | #include <asm/fcntl.h> |
5 | 5 | ||
6 | /* Cancel a blocking posix lock; internal use only until we expose an | 6 | #define F_SETLEASE (F_LINUX_SPECIFIC_BASE + 0) |
7 | * asynchronous lock api to userspace: */ | 7 | #define F_GETLEASE (F_LINUX_SPECIFIC_BASE + 1) |
8 | #define F_CANCELLK (F_LINUX_SPECIFIC_BASE+5) | ||
9 | 8 | ||
10 | #define F_SETLEASE (F_LINUX_SPECIFIC_BASE+0) | 9 | /* |
11 | #define F_GETLEASE (F_LINUX_SPECIFIC_BASE+1) | 10 | * Cancel a blocking posix lock; internal use only until we expose an |
11 | * asynchronous lock api to userspace: | ||
12 | */ | ||
13 | #define F_CANCELLK (F_LINUX_SPECIFIC_BASE + 5) | ||
14 | |||
15 | /* Create a file descriptor with FD_CLOEXEC set. */ | ||
16 | #define F_DUPFD_CLOEXEC (F_LINUX_SPECIFIC_BASE + 6) | ||
12 | 17 | ||
13 | /* | 18 | /* |
14 | * Request nofications on a directory. | 19 | * Request nofications on a directory. |