Lines Matching defs:ntfs_sb_info
208 struct ntfs_sb_info { struct
209 struct super_block *sb;
211 u32 discard_granularity;
212 u64 discard_granularity_mask_inv; // ~(discard_granularity_mask_inv-1)
214 u32 cluster_size; // bytes per cluster
215 u32 cluster_mask; // == cluster_size - 1
216 u64 cluster_mask_inv; // ~(cluster_size - 1)
217 u32 block_mask; // sb->s_blocksize - 1
218 u32 blocks_per_cluster; // cluster_size / sb->s_blocksize
220 u32 record_size;
221 u32 index_size;
223 u8 cluster_bits;
224 u8 record_bits;
226 u64 maxbytes; // Maximum size for normal files.
227 u64 maxbytes_sparse; // Maximum size for sparse file.
229 u32 flags; // See NTFS_FLAGS_XXX.
231 CLST zone_max; // Maximum MFT zone length in clusters
232 CLST bad_clusters; // The count of marked bad clusters.
234 u16 max_bytes_per_attr; // Maximum attribute size in record.
235 u16 attr_size_tr; // Attribute size threshold (320 bytes).
238 CLST objid_no;
239 CLST quota_no;
240 CLST reparse_no;
241 CLST usn_jrnl_no;
243 struct ATTR_DEF_ENTRY *def_table; // Attribute definition table.
244 u32 def_entries;
245 u32 ea_max_size;
247 struct MFT_REC *new_rec;
249 u16 *upcase;
251 struct {
266 } mft;
268 struct {
271 } used;
273 struct {
283 } volume;
285 struct {
292 } security;
294 struct {
298 } reparse;
300 struct {
324 struct ntfs_sb_info *sbi; argument