Lines Matching defs:exfat_sb_info
242 struct exfat_sb_info { struct
243 unsigned long long num_sectors; /* num of sectors in volume */
244 unsigned int num_clusters; /* num of clusters in volume */
245 unsigned int cluster_size; /* cluster size in bytes */
246 unsigned int cluster_size_bits;
247 unsigned int sect_per_clus; /* cluster size in sectors */
248 unsigned int sect_per_clus_bits;
249 unsigned long long FAT1_start_sector; /* FAT1 start sector */
250 unsigned long long FAT2_start_sector; /* FAT2 start sector */
251 unsigned long long data_start_sector; /* data area start sector */
252 unsigned int num_FAT_sectors; /* num of FAT sectors */
253 unsigned int root_dir; /* root dir cluster */
254 unsigned int dentries_per_clu; /* num of dentries per cluster */
255 unsigned int vol_flags; /* volume flags */
256 unsigned int vol_flags_persistent; /* volume flags to retain */
257 struct buffer_head *boot_bh; /* buffer_head of BOOT sector */
259 unsigned int map_clu; /* allocation bitmap start cluster */
260 unsigned int map_sectors; /* num of allocation bitmap sectors */
261 struct buffer_head **vol_amap; /* allocation bitmap */
263 unsigned short *vol_utbl; /* upcase table */
265 unsigned int clu_srch_ptr; /* cluster search pointer */
266 unsigned int used_clusters; /* number of used clusters */
268 struct mutex s_lock; /* superblock lock */
269 struct mutex bitmap_lock; /* bitmap lock */
270 struct exfat_mount_options options;
271 struct nls_table *nls_io; /* Charset used for input and display */
272 struct ratelimit_state ratelimit;
274 spinlock_t inode_hash_lock;
275 struct hlist_head inode_hashtable[EXFAT_HASH_SIZE];