Lines Matching full:super
3 * super.c
223 static int efs_validate_super(struct efs_sb_info *sb, struct efs_super *super) { in efs_validate_super() argument
225 if (!IS_EFS_MAGIC(be32_to_cpu(super->fs_magic))) in efs_validate_super()
228 sb->fs_magic = be32_to_cpu(super->fs_magic); in efs_validate_super()
229 sb->total_blocks = be32_to_cpu(super->fs_size); in efs_validate_super()
230 sb->first_block = be32_to_cpu(super->fs_firstcg); in efs_validate_super()
231 sb->group_size = be32_to_cpu(super->fs_cgfsize); in efs_validate_super()
232 sb->data_free = be32_to_cpu(super->fs_tfree); in efs_validate_super()
233 sb->inode_free = be32_to_cpu(super->fs_tinode); in efs_validate_super()
234 sb->inode_blocks = be16_to_cpu(super->fs_cgisize); in efs_validate_super()
235 sb->total_groups = be16_to_cpu(super->fs_ncg); in efs_validate_super()