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 }; 22 23 #endif 24 25 26 27 28 29 30