Lines Matching defs:exfat_sb_info

214 struct exfat_sb_info {  struct
215 unsigned long long num_sectors; /* num of sectors in volume */
216 unsigned int num_clusters; /* num of clusters in volume */
217 unsigned int cluster_size; /* cluster size in bytes */
218 unsigned int cluster_size_bits;
219 unsigned int sect_per_clus; /* cluster size in sectors */
220 unsigned int sect_per_clus_bits;
221 unsigned long long FAT1_start_sector; /* FAT1 start sector */
222 unsigned long long FAT2_start_sector; /* FAT2 start sector */
223 unsigned long long data_start_sector; /* data area start sector */
224 unsigned int num_FAT_sectors; /* num of FAT sectors */
225 unsigned int root_dir; /* root dir cluster */
226 unsigned int dentries_per_clu; /* num of dentries per cluster */
227 unsigned int vol_flags; /* volume flags */
228 unsigned int vol_flags_persistent; /* volume flags to retain */
229 struct buffer_head *boot_bh; /* buffer_head of BOOT sector */
231 unsigned int map_clu; /* allocation bitmap start cluster */
232 unsigned int map_sectors; /* num of allocation bitmap sectors */
233 struct buffer_head **vol_amap; /* allocation bitmap */
235 unsigned short *vol_utbl; /* upcase table */
237 unsigned int clu_srch_ptr; /* cluster search pointer */
238 unsigned int used_clusters; /* number of used clusters */
240 struct mutex s_lock; /* superblock lock */
241 struct exfat_mount_options options;
242 struct nls_table *nls_io; /* Charset used for input and display */
243 struct ratelimit_state ratelimit;
245 spinlock_t inode_hash_lock;
246 struct hlist_head inode_hashtable[EXFAT_HASH_SIZE];
248 struct rcu_head rcu;