source: svn/trunk/newcon3bcm2_21bu/toolchain/mips-linux-uclibc/include/linux/nfs_fs_i.h

Last change on this file was 2, checked in by jglee, 11 years ago

first commit

  • Property svn:executable set to *
File size: 380 bytes
Line 
1#ifndef _NFS_FS_I
2#define _NFS_FS_I
3
4#include <asm/types.h>
5#include <linux/nfs.h>
6
7struct nlm_lockowner;
8
9/*
10 * NFS lock info
11 */
12struct nfs_lock_info {
13        __u32           state;
14        __u32           flags;
15        struct nlm_lockowner *owner;
16};
17
18/*
19 * Lock flag values
20 */
21#define NFS_LCK_GRANTED         0x0001          /* lock has been granted */
22#define NFS_LCK_RECLAIM         0x0002          /* lock marked for reclaiming */
23
24#endif
Note: See TracBrowser for help on using the repository browser.