smb_fs_i.h
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:1k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  *  smb_fs_i.h
  3.  *
  4.  *  Copyright (C) 1995 by Paal-Kr. Engstad and Volker Lendecke
  5.  *  Copyright (C) 1997 by Volker Lendecke
  6.  *
  7.  */
  8. #ifndef _LINUX_SMB_FS_I
  9. #define _LINUX_SMB_FS_I
  10. #ifdef __KERNEL__
  11. #include <linux/types.h>
  12. /*
  13.  * smb fs inode data (in memory only)
  14.  */
  15. struct smb_inode_info {
  16. /*
  17.  * file handles are local to a connection. A file is open if
  18.  * (open == generation).
  19.  */
  20.         unsigned int open; /* open generation */
  21. __u16 fileid; /* What id to handle a file with? */
  22. __u16 attr; /* Attribute fields, DOS value */
  23. __u16 access; /* Access mode */
  24. __u16 flags;
  25. unsigned long oldmtime; /* last time refreshed */
  26. unsigned long closed; /* timestamp when closed */
  27. unsigned openers; /* number of fileid users */
  28. };
  29. #endif
  30. #endif