- Kai Germaschewski: ymfpci cleanups and resource leak fixes
[davej-history.git] / include / linux / iso_fs_sb.h
blob7bb55a504ce5e03ef32fe24ac8c84fe094edde54
1 #ifndef _ISOFS_FS_SB
2 #define _ISOFS_FS_SB
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;
14 unsigned char s_high_sierra; /* A simple flag */
15 unsigned char s_mapping;
16 unsigned char s_rock;
17 unsigned char s_joliet_level;
18 unsigned char s_utf8;
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 struct nls_table *s_nls_iocharset; /* Native language support table */
31 #endif