Lines Matching refs:sblk
71 struct squashfs_super_block *sblk = NULL; in squashfs_fill_super() local
99 msblk->bytes_used = sizeof(*sblk); in squashfs_fill_super()
100 sblk = squashfs_read_table(sb, SQUASHFS_START, sizeof(*sblk)); in squashfs_fill_super()
102 if (IS_ERR(sblk)) { in squashfs_fill_super()
104 err = PTR_ERR(sblk); in squashfs_fill_super()
105 sblk = NULL; in squashfs_fill_super()
112 sb->s_magic = le32_to_cpu(sblk->s_magic); in squashfs_fill_super()
123 le16_to_cpu(sblk->s_major), in squashfs_fill_super()
124 le16_to_cpu(sblk->s_minor), in squashfs_fill_super()
125 le16_to_cpu(sblk->compression)); in squashfs_fill_super()
131 msblk->bytes_used = le64_to_cpu(sblk->bytes_used); in squashfs_fill_super()
137 msblk->block_size = le32_to_cpu(sblk->block_size); in squashfs_fill_super()
152 msblk->block_log = le16_to_cpu(sblk->block_log); in squashfs_fill_super()
161 root_inode = le64_to_cpu(sblk->root_inode); in squashfs_fill_super()
165 msblk->inode_table = le64_to_cpu(sblk->inode_table_start); in squashfs_fill_super()
166 msblk->directory_table = le64_to_cpu(sblk->directory_table_start); in squashfs_fill_super()
167 msblk->inodes = le32_to_cpu(sblk->inodes); in squashfs_fill_super()
168 msblk->fragments = le32_to_cpu(sblk->fragments); in squashfs_fill_super()
169 msblk->ids = le16_to_cpu(sblk->no_ids); in squashfs_fill_super()
170 flags = le16_to_cpu(sblk->flags); in squashfs_fill_super()
185 (u64) le64_to_cpu(sblk->fragment_table_start)); in squashfs_fill_super()
187 (u64) le64_to_cpu(sblk->id_table_start)); in squashfs_fill_super()
219 xattr_id_table_start = le64_to_cpu(sblk->xattr_id_table_start); in squashfs_fill_super()
240 le64_to_cpu(sblk->id_table_start), next_table, msblk->ids); in squashfs_fill_super()
250 lookup_table_start = le64_to_cpu(sblk->lookup_table_start); in squashfs_fill_super()
281 le64_to_cpu(sblk->fragment_table_start), next_table, fragments); in squashfs_fill_super()
326 kfree(sblk); in squashfs_fill_super()
342 kfree(sblk); in squashfs_fill_super()