2005-04-17 00:20:36 +02:00
|
|
|
#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;
|
|
|
|
struct nlm_lockowner *owner;
|
2006-03-20 19:44:40 +01:00
|
|
|
struct list_head list;
|
2005-04-17 00:20:36 +02:00
|
|
|
};
|
|
|
|
|
2005-06-22 19:16:32 +02:00
|
|
|
struct nfs4_lock_state;
|
|
|
|
struct nfs4_lock_info {
|
|
|
|
struct nfs4_lock_state *owner;
|
|
|
|
};
|
|
|
|
|
2005-04-17 00:20:36 +02:00
|
|
|
#endif
|