smb_fs_i.h
上传用户:szlgq88
上传日期:2009-04-28
资源大小:48287k
文件大小: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. #include <linux/fs.h>
  13. /*
  14.  * smb fs inode data (in memory only)
  15.  */
  16. struct smb_inode_info {
  17. /*
  18.  * file handles are local to a connection. A file is open if
  19.  * (open == generation).
  20.  */
  21.         unsigned int open; /* open generation */
  22. __u16 fileid; /* What id to handle a file with? */
  23. __u16 attr; /* Attribute fields, DOS value */
  24. __u16 access; /* Access mode */
  25. __u16 flags;
  26. unsigned long oldmtime; /* last time refreshed */
  27. unsigned long closed; /* timestamp when closed */
  28. unsigned openers; /* number of fileid users */
  29. struct inode vfs_inode; /* must be at the end */
  30. };
  31. #endif
  32. #endif