Subversion Repositories shark

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
422 giacomo 1
#ifndef _NFS_FS_I
2
#define _NFS_FS_I
3
 
4
#include <asm/types.h>
5
#include <linux/list.h>
6
#include <linux/nfs.h>
7
 
8
/*
9
 * NFS lock info
10
 */
11
struct nfs_lock_info {
12
        u32             state;
13
        u32             flags;
14
        struct nlm_host *host;
15
};
16
 
17
/*
18
 * Lock flag values
19
 */
20
#define NFS_LCK_GRANTED         0x0001          /* lock has been granted */
21
#define NFS_LCK_RECLAIM         0x0002          /* lock marked for reclaiming */
22
 
23
#endif