root/include/linux/iso_fs_sb.h

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

INCLUDED FROM


   1 #ifndef _ISOFS_FS_SB
   2 #define _ISOFS_FS_SB
   3 
   4 /*
   5  * minix super-block data in memory
   6  */
   7 struct isofs_sb_info {
   8                         unsigned long s_ninodes;
   9                         unsigned long s_nzones;
  10                         unsigned long s_firstdatazone;
  11                         unsigned long s_log_zone_size;
  12                         unsigned long s_max_size;
  13 
  14                         unsigned char s_high_sierra; /* A simple flag */
  15                         unsigned char s_mapping;
  16                         unsigned char s_conversion;
  17                         unsigned char s_rock;
  18                         unsigned char s_cruft; /* Broken disks with high
  19                                                   byte of length containing
  20                                                   junk */
  21                         unsigned char s_unhide;
  22                         unsigned char s_nosuid;
  23                         unsigned char s_nodev;
  24                         mode_t s_mode;
  25                         gid_t s_gid;
  26                         uid_t s_uid;
  27 };
  28 
  29 #endif
  30 
  31 
  32 
  33 
  34 
  35 
  36 

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