git://git.onelab.eu
/
linux-2.6.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
patch-o-matic-ng-20050103 pptp-conntrack-nat conntrack-acct
[linux-2.6.git]
/
include
/
linux
/
nfs_fs_i.h
1
#ifndef _NFS_FS_I
2
#define _NFS_FS_I
3
4
#include <asm/types.h>
5
#include <linux/list.h>
6
#include <linux/nfs.h>
7
8
/*
9
* NFS lock info
10
*/
11
struct nfs_lock_info {
12
u32 state;
13
u32 flags;
14
struct nlm_host *host;
15
};
16
17
/*
18
* Lock flag values
19
*/
20
#define NFS_LCK_GRANTED 0x0001 /* lock has been granted */
21
#define NFS_LCK_RECLAIM 0x0002 /* lock marked for reclaiming */
22
23
#endif