root/include/linux/msdos_fs_i.h

/* [previous][next][first][last][top][bottom][index][help] */

INCLUDED FROM


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

/* [previous][next][first][last][top][bottom][index][help] */