Import 2.3.47pre4
[davej-history.git] / include / linux / lockd / nlm.h
blobbdaecfd814256752cc05a5408e9be635ced74d83
1 /*
2 * linux/include/linux/lockd/nlm.h
4 * Declarations for the Network Lock Manager protocol.
6 * Copyright (C) 1996, Olaf Kirch <okir@monad.swb.de>
7 */
9 #ifndef LINUX_LOCKD_NLM_H
10 #define LINUX_LOCKD_NLM_H
12 /* Maximum file offset in file_lock.fl_end */
13 #ifdef OFFSET_MAX
14 # define NLM_OFFSET_MAX OFFSET_MAX
15 #else
16 # define NLM_OFFSET_MAX ((off_t) 0x7fffffff)
17 #endif
19 /* Return states for NLM */
20 enum {
21 NLM_LCK_GRANTED = 0,
22 NLM_LCK_DENIED = 1,
23 NLM_LCK_DENIED_NOLOCKS = 2,
24 NLM_LCK_BLOCKED = 3,
25 NLM_LCK_DENIED_GRACE_PERIOD = 4,
26 #ifdef CONFIG_LOCKD_V4
27 NLM_DEADLCK = 5,
28 NLM_ROFS = 6,
29 NLM_STALE_FH = 7,
30 NLM_FBIG = 8,
31 NLM_FAILED = 9,
32 #endif
35 #define NLM_PROGRAM 100021
37 #define NLMPROC_NULL 0
38 #define NLMPROC_TEST 1
39 #define NLMPROC_LOCK 2
40 #define NLMPROC_CANCEL 3
41 #define NLMPROC_UNLOCK 4
42 #define NLMPROC_GRANTED 5
43 #define NLMPROC_TEST_MSG 6
44 #define NLMPROC_LOCK_MSG 7
45 #define NLMPROC_CANCEL_MSG 8
46 #define NLMPROC_UNLOCK_MSG 9
47 #define NLMPROC_GRANTED_MSG 10
48 #define NLMPROC_TEST_RES 11
49 #define NLMPROC_LOCK_RES 12
50 #define NLMPROC_CANCEL_RES 13
51 #define NLMPROC_UNLOCK_RES 14
52 #define NLMPROC_GRANTED_RES 15
53 #define NLMPROC_SHARE 20
54 #define NLMPROC_UNSHARE 21
55 #define NLMPROC_NM_LOCK 22
56 #define NLMPROC_FREE_ALL 23
57 #define NLMPROC_NSM_NOTIFY 24 /* statd callback */
59 #endif /* LINUX_LOCKD_NLM_H */