Lines Matching defs:ntfs_sb_info
203 struct ntfs_sb_info { struct
204 struct super_block *sb;
206 u32 discard_granularity;
207 u64 discard_granularity_mask_inv; // ~(discard_granularity_mask_inv-1)
209 u32 cluster_size; // bytes per cluster
210 u32 cluster_mask; // == cluster_size - 1
211 u64 cluster_mask_inv; // ~(cluster_size - 1)
212 u32 block_mask; // sb->s_blocksize - 1
213 u32 blocks_per_cluster; // cluster_size / sb->s_blocksize
215 u32 record_size;
216 u32 index_size;
218 u8 cluster_bits;
219 u8 record_bits;
221 u64 maxbytes; // Maximum size for normal files.
222 u64 maxbytes_sparse; // Maximum size for sparse file.
224 u32 flags; // See NTFS_FLAGS_XXX.
226 CLST zone_max; // Maximum MFT zone length in clusters
227 CLST bad_clusters; // The count of marked bad clusters.
229 u16 max_bytes_per_attr; // Maximum attribute size in record.
230 u16 attr_size_tr; // Attribute size threshold (320 bytes).
233 CLST objid_no;
234 CLST quota_no;
235 CLST reparse_no;
236 CLST usn_jrnl_no;
238 struct ATTR_DEF_ENTRY *def_table; // Attribute definition table.
239 u32 def_entries;
240 u32 ea_max_size;
242 struct MFT_REC *new_rec;
244 u16 *upcase;
246 struct {
261 } mft;
263 struct {
266 } used;
268 struct {
278 } volume;
280 struct {
288 } security;
290 struct {
294 } reparse;
319 struct ntfs_sb_info *sbi; argument