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

嵌入式Linux

开发平台:

Unix_Linux

  1. #ifndef _MSDOS_FS_I
  2. #define _MSDOS_FS_I
  3. /*
  4.  * MS-DOS file system inode data in memory
  5.  */
  6. struct msdos_inode_info {
  7. unsigned long mmu_private;
  8. int i_start; /* first cluster or 0 */
  9. int i_logstart; /* logical first cluster */
  10. int i_attrs; /* unused attribute bits */
  11. int i_ctime_ms; /* unused change time in milliseconds */
  12. int i_location; /* on-disk position of directory entry or 0 */
  13. struct inode *i_fat_inode; /* struct inode of this one */
  14. struct list_head i_fat_hash; /* hash by i_location */
  15. };
  16. #endif