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  * iso9660 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_name_check; /* r = relaxed, s = strict */
  19                         unsigned char s_cruft; /* Broken disks with high
  20                                                   byte of length containing
  21                                                   junk */
  22                         unsigned char s_unhide;
  23                         unsigned char s_nosuid;
  24                         unsigned char s_nodev;
  25                         mode_t s_mode;
  26                         gid_t s_gid;
  27                         uid_t s_uid;
  28 };
  29 
  30 #endif
  31 
  32 
  33 
  34 
  35 
  36 
  37 

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