1 #ifndef _MSDOS_FS_I 2 #define _MSDOS_FS_I 3 4 /* 5 * MS-DOS file system inode data in memory 6 */ 7 8 struct msdos_inode_info { 9 int i_start; /* first cluster or 0 */ 10 int i_attrs; /* unused attribute bits */ 11 int i_busy; /* file is either deleted but still open, or 12 inconsistent (mkdir) */ 13 struct inode *i_depend; /* pointer to inode that depends on the 14 current inode */ 15 struct inode *i_old; /* pointer to the old inode this inode 16 depends on */ 17 int i_binary; /* file contains non-text data */ 18 }; 19 20 #endif