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