Lines Matching defs:f2fs_sb_info
248 struct f2fs_sb_info { struct
249 struct f2fs_fsck *fsck;
251 struct f2fs_super_block *raw_super;
252 struct f2fs_nm_info *nm_info;
253 struct f2fs_sm_info *sm_info;
254 struct f2fs_checkpoint *ckpt;
255 int cur_cp;
257 struct list_head orphan_inode_list;
258 unsigned int n_orphans;
261 unsigned int log_sectors_per_block; /* log2 sectors per block */
262 unsigned int log_blocksize; /* log2 block size */
263 unsigned int blocksize; /* block size */
264 unsigned int root_ino_num; /* root inode number*/
265 unsigned int node_ino_num; /* node inode number*/
266 unsigned int meta_ino_num; /* meta inode number*/
267 unsigned int log_blocks_per_seg; /* log2 blocks per segment */
268 unsigned int blocks_per_seg; /* blocks per segment */
269 unsigned int segs_per_sec; /* segments per section */
270 unsigned int secs_per_zone; /* sections per zone */
271 unsigned int total_sections; /* total section count */
295 static inline struct f2fs_super_block *F2FS_RAW_SUPER(struct f2fs_sb_info *sbi) in F2FS_RAW_SUPER() argument