Blame view

include/linux/nfs_fs_i.h 340 Bytes
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
  #ifndef _NFS_FS_I
  #define _NFS_FS_I
  
  #include <asm/types.h>
  #include <linux/list.h>
  #include <linux/nfs.h>
  
  struct nlm_lockowner;
  
  /*
   * NFS lock info
   */
  struct nfs_lock_info {
  	u32		state;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
15
  	struct nlm_lockowner *owner;
26bcbf965   Christoph Hellwig   lockd: stop abusi...
16
  	struct list_head list;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
17
  };
8d0a8a9d0   Trond Myklebust   [PATCH] NFSv4: Cl...
18
19
20
21
  struct nfs4_lock_state;
  struct nfs4_lock_info {
  	struct nfs4_lock_state *owner;
  };
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
22
  #endif