Lines Matching full:super
3 * super.c
234 static int efs_validate_super(struct efs_sb_info *sb, struct efs_super *super) { in efs_validate_super() argument
236 if (!IS_EFS_MAGIC(be32_to_cpu(super->fs_magic))) in efs_validate_super()
239 sb->fs_magic = be32_to_cpu(super->fs_magic); in efs_validate_super()
240 sb->total_blocks = be32_to_cpu(super->fs_size); in efs_validate_super()
241 sb->first_block = be32_to_cpu(super->fs_firstcg); in efs_validate_super()
242 sb->group_size = be32_to_cpu(super->fs_cgfsize); in efs_validate_super()
243 sb->data_free = be32_to_cpu(super->fs_tfree); in efs_validate_super()
244 sb->inode_free = be32_to_cpu(super->fs_tinode); in efs_validate_super()
245 sb->inode_blocks = be16_to_cpu(super->fs_cgisize); in efs_validate_super()
246 sb->total_groups = be16_to_cpu(super->fs_ncg); in efs_validate_super()