Lines Matching refs:sblk
184 struct squashfs_super_block *sblk = NULL; in squashfs_fill_super() local
215 msblk->bytes_used = sizeof(*sblk); in squashfs_fill_super()
216 sblk = squashfs_read_table(sb, SQUASHFS_START, sizeof(*sblk)); in squashfs_fill_super()
218 if (IS_ERR(sblk)) { in squashfs_fill_super()
220 err = PTR_ERR(sblk); in squashfs_fill_super()
221 sblk = NULL; in squashfs_fill_super()
228 sb->s_magic = le32_to_cpu(sblk->s_magic); in squashfs_fill_super()
245 le16_to_cpu(sblk->s_major), in squashfs_fill_super()
246 le16_to_cpu(sblk->s_minor), in squashfs_fill_super()
247 le16_to_cpu(sblk->compression)); in squashfs_fill_super()
253 msblk->bytes_used = le64_to_cpu(sblk->bytes_used); in squashfs_fill_super()
259 msblk->block_size = le32_to_cpu(sblk->block_size); in squashfs_fill_super()
274 msblk->block_log = le16_to_cpu(sblk->block_log); in squashfs_fill_super()
283 root_inode = le64_to_cpu(sblk->root_inode); in squashfs_fill_super()
287 msblk->inode_table = le64_to_cpu(sblk->inode_table_start); in squashfs_fill_super()
288 msblk->directory_table = le64_to_cpu(sblk->directory_table_start); in squashfs_fill_super()
289 msblk->inodes = le32_to_cpu(sblk->inodes); in squashfs_fill_super()
290 msblk->fragments = le32_to_cpu(sblk->fragments); in squashfs_fill_super()
291 msblk->ids = le16_to_cpu(sblk->no_ids); in squashfs_fill_super()
292 flags = le16_to_cpu(sblk->flags); in squashfs_fill_super()
307 (u64) le64_to_cpu(sblk->fragment_table_start)); in squashfs_fill_super()
309 (u64) le64_to_cpu(sblk->id_table_start)); in squashfs_fill_super()
341 xattr_id_table_start = le64_to_cpu(sblk->xattr_id_table_start); in squashfs_fill_super()
362 le64_to_cpu(sblk->id_table_start), next_table, msblk->ids); in squashfs_fill_super()
372 lookup_table_start = le64_to_cpu(sblk->lookup_table_start); in squashfs_fill_super()
403 le64_to_cpu(sblk->fragment_table_start), next_table, fragments); in squashfs_fill_super()
448 kfree(sblk); in squashfs_fill_super()
464 kfree(sblk); in squashfs_fill_super()