diff options
author | Jim Garlick <garlick.jim@gmail.com> | 2011-08-21 00:21:18 +0530 |
---|---|---|
committer | Eric Van Hensbergen <ericvh@gmail.com> | 2011-09-06 08:17:16 -0500 |
commit | 51b8b4fb32271d39fbdd760397406177b2b0fd36 (patch) | |
tree | be77b4fee13806914f81e0cde956928a0303d23a /include | |
parent | 73f507171cfa407b19f254aef95cbb058c8180cf (diff) | |
download | linux-3.10-51b8b4fb32271d39fbdd760397406177b2b0fd36.tar.gz linux-3.10-51b8b4fb32271d39fbdd760397406177b2b0fd36.tar.bz2 linux-3.10-51b8b4fb32271d39fbdd760397406177b2b0fd36.zip |
fs/9p: Use protocol-defined value for lock/getlock 'type' field.
Signed-off-by: Jim Garlick <garlick@llnl.gov>
Signed-off-by: Aneesh Kumar K.V <aneesh.kumar@linux.vnet.ibm.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/net/9p/9p.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/net/9p/9p.h b/include/net/9p/9p.h index 957ab99897a..a6326ef8ade 100644 --- a/include/net/9p/9p.h +++ b/include/net/9p/9p.h @@ -312,6 +312,11 @@ enum p9_perm_t { /* 9p2000.L at flags */ #define P9_DOTL_AT_REMOVEDIR 0x200 +/* 9p2000.L lock type */ +#define P9_LOCK_TYPE_RDLCK 0 +#define P9_LOCK_TYPE_WRLCK 1 +#define P9_LOCK_TYPE_UNLCK 2 + /** * enum p9_qid_t - QID types * @P9_QTDIR: directory |