Lines Matching defs:hpfs_sb_info
64 struct hpfs_sb_info { struct
65 struct mutex hpfs_mutex; /* global hpfs lock */
66 ino_t sb_root; /* inode number of root dir */
67 unsigned sb_fs_size; /* file system size, sectors */
68 unsigned sb_bitmaps; /* sector number of bitmap list */
69 unsigned sb_dirband_start; /* directory band start sector */
70 unsigned sb_dirband_size; /* directory band size, dnodes */
71 unsigned sb_dmap; /* sector number of dnode bit map */
72 unsigned sb_n_free; /* free blocks for statfs, or -1 */
73 unsigned sb_n_free_dnodes; /* free dnodes for statfs, or -1 */
74 kuid_t sb_uid; /* uid from mount options */
75 kgid_t sb_gid; /* gid from mount options */
76 umode_t sb_mode; /* mode from mount options */
77 unsigned sb_eas : 2; /* eas: 0-ignore, 1-ro, 2-rw */
78 unsigned sb_err : 2; /* on errs: 0-cont, 1-ro, 2-panic */
79 unsigned sb_chk : 2; /* checks: 0-no, 1-normal, 2-strict */
80 unsigned sb_lowercase : 1; /* downcase filenames hackery */
81 unsigned sb_was_error : 1; /* there was an error, set dirty flag */
82 unsigned sb_chkdsk : 2; /* chkdsk: 0-no, 1-on errs, 2-allways */
83 unsigned char *sb_cp_table; /* code page tables: */
86 __le32 *sb_bmp_dir; /* main bitmap directory */
87 unsigned sb_c_bitmap; /* current bitmap */
88 unsigned sb_max_fwd_alloc; /* max forwad allocation */
89 int sb_timeshift;
90 struct rcu_head rcu;
92 unsigned n_hotfixes;
93 secno hotfix_from[256];
94 secno hotfix_to[256];