Linux-2.6.12-rc2
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!
This commit is contained in:
25
include/linux/nfs_fs_i.h
Normal file
25
include/linux/nfs_fs_i.h
Normal file
@@ -0,0 +1,25 @@
|
||||
#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
|
Reference in New Issue
Block a user