Lines Matching defs:m_ext2fs

154 struct m_ext2fs {  struct
155 struct ext2fs * e2fs;
156 char e2fs_fsmnt[MAXMNTLEN];/* name mounted on */
157 char e2fs_ronly; /* mounted read-only flag */
158 char e2fs_fmod; /* super block modified flag */
159 uint64_t e2fs_bcount; /* blocks count */
160 uint64_t e2fs_rbcount; /* reserved blocks count */
161 uint64_t e2fs_fbcount; /* free blocks count */
162 uint32_t e2fs_ficount; /* free inodes count */
163 uint32_t e2fs_bsize; /* Block size */
164 uint32_t e2fs_bshift; /* calc of logical block no */
165 uint32_t e2fs_bpg; /* Number of blocks per group */
166 int64_t e2fs_qbmask; /* = s_blocksize -1 */
167 uint32_t e2fs_fsbtodb; /* Shift to get disk block */
168 uint32_t e2fs_ipg; /* Number of inodes per group */
169 uint32_t e2fs_ipb; /* Number of inodes per block */
170 uint32_t e2fs_itpg; /* Number of inode table per group */
171 uint32_t e2fs_fsize; /* Size of fragments per block */
172 uint32_t e2fs_fpb; /* Number of fragments per block */
173 uint32_t e2fs_fpg; /* Number of fragments per group */
174 uint32_t e2fs_gdbcount; /* Number of group descriptors */
175 uint32_t e2fs_gcount; /* Number of groups */
176 uint32_t e2fs_isize; /* Size of inode */
177 uint32_t e2fs_total_dir; /* Total number of directories */
178 uint8_t *e2fs_contigdirs; /* (u) # of contig. allocated dirs */
179 char e2fs_wasvalid; /* valid at mount time */
180 off_t e2fs_maxfilesize;
181 struct ext2_gd *e2fs_gd; /* Group Descriptors */
182 int32_t e2fs_contigsumsize; /* size of cluster summary array */
183 int32_t *e2fs_maxcluster; /* max cluster in each cyl group */
184 struct csum *e2fs_clustersum; /* cluster summary in each cyl group */
185 int32_t e2fs_uhash; /* 3 if hash should be signed, 0 if not */
186 uint32_t e2fs_csum_seed; /* sb checksum seed */