Files
linux-apfs/include/linux/nfs_fs_i.h
T

25 lines
340 B
C
Raw Normal View History

2005-04-16 15:20:36 -07: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 13:44:40 -05:00
struct list_head list;
2005-04-16 15:20:36 -07:00
};
struct nfs4_lock_state;
struct nfs4_lock_info {
struct nfs4_lock_state *owner;
};
2005-04-16 15:20:36 -07:00
#endif