mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-10-28 23:24:50 +00:00
1313e6034a
Also from linux/nfs_xdr.h. Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
20 lines
269 B
C
20 lines
269 B
C
#ifndef _NFS_FS_I
|
|
#define _NFS_FS_I
|
|
|
|
struct nlm_lockowner;
|
|
|
|
/*
|
|
* NFS lock info
|
|
*/
|
|
struct nfs_lock_info {
|
|
u32 state;
|
|
struct nlm_lockowner *owner;
|
|
struct list_head list;
|
|
};
|
|
|
|
struct nfs4_lock_state;
|
|
struct nfs4_lock_info {
|
|
struct nfs4_lock_state *owner;
|
|
};
|
|
|
|
#endif
|