Lines Matching refs:sblk
120 struct squashfs_super_block *sblk = NULL; in squashfs_fill_super() local
150 msblk->bytes_used = sizeof(*sblk); in squashfs_fill_super()
151 sblk = squashfs_read_table(sb, SQUASHFS_START, sizeof(*sblk)); in squashfs_fill_super()
153 if (IS_ERR(sblk)) { in squashfs_fill_super()
155 err = PTR_ERR(sblk); in squashfs_fill_super()
156 sblk = NULL; in squashfs_fill_super()
163 sb->s_magic = le32_to_cpu(sblk->s_magic); in squashfs_fill_super()
174 le16_to_cpu(sblk->s_major), in squashfs_fill_super()
175 le16_to_cpu(sblk->s_minor), in squashfs_fill_super()
176 le16_to_cpu(sblk->compression)); in squashfs_fill_super()
182 msblk->bytes_used = le64_to_cpu(sblk->bytes_used); in squashfs_fill_super()
188 msblk->block_size = le32_to_cpu(sblk->block_size); in squashfs_fill_super()
203 msblk->block_log = le16_to_cpu(sblk->block_log); in squashfs_fill_super()
212 root_inode = le64_to_cpu(sblk->root_inode); in squashfs_fill_super()
216 msblk->inode_table = le64_to_cpu(sblk->inode_table_start); in squashfs_fill_super()
217 msblk->directory_table = le64_to_cpu(sblk->directory_table_start); in squashfs_fill_super()
218 msblk->inodes = le32_to_cpu(sblk->inodes); in squashfs_fill_super()
219 msblk->fragments = le32_to_cpu(sblk->fragments); in squashfs_fill_super()
220 msblk->ids = le16_to_cpu(sblk->no_ids); in squashfs_fill_super()
221 flags = le16_to_cpu(sblk->flags); in squashfs_fill_super()
236 (u64) le64_to_cpu(sblk->fragment_table_start)); in squashfs_fill_super()
238 (u64) le64_to_cpu(sblk->id_table_start)); in squashfs_fill_super()
270 xattr_id_table_start = le64_to_cpu(sblk->xattr_id_table_start); in squashfs_fill_super()
291 le64_to_cpu(sblk->id_table_start), next_table, msblk->ids); in squashfs_fill_super()
301 lookup_table_start = le64_to_cpu(sblk->lookup_table_start); in squashfs_fill_super()
332 le64_to_cpu(sblk->fragment_table_start), next_table, fragments); in squashfs_fill_super()
377 kfree(sblk); in squashfs_fill_super()
393 kfree(sblk); in squashfs_fill_super()