nfs_fs_i.h
上传用户:szlgq88
上传日期:2009-04-28
资源大小:48287k
文件大小:0k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

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