1da177e4c3
Initial git repository build. I'm not bothering with the full history, even though we have it. We can create a separate "historical" git archive of that later if we want to, and in the meantime it's about 3.2GB when imported into git - space that would just make the early git days unnecessarily complicated, when we don't have a lot of good infrastructure for it. Let it rip!
25 lines
400 B
C
25 lines
400 B
C
#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;
|
|
u32 flags;
|
|
struct nlm_lockowner *owner;
|
|
};
|
|
|
|
/*
|
|
* Lock flag values
|
|
*/
|
|
#define NFS_LCK_GRANTED 0x0001 /* lock has been granted */
|
|
#define NFS_LCK_RECLAIM 0x0002 /* lock marked for reclaiming */
|
|
|
|
#endif
|