Lines Matching refs:sblk

82 	struct squashfs_super_block *sblk = NULL;  in squashfs_fill_super()  local
110 msblk->bytes_used = sizeof(*sblk); in squashfs_fill_super()
111 sblk = squashfs_read_table(sb, SQUASHFS_START, sizeof(*sblk)); in squashfs_fill_super()
113 if (IS_ERR(sblk)) { in squashfs_fill_super()
115 err = PTR_ERR(sblk); in squashfs_fill_super()
116 sblk = NULL; in squashfs_fill_super()
123 sb->s_magic = le32_to_cpu(sblk->s_magic); in squashfs_fill_super()
133 le16_to_cpu(sblk->s_major), in squashfs_fill_super()
134 le16_to_cpu(sblk->s_minor), in squashfs_fill_super()
135 le16_to_cpu(sblk->compression)); in squashfs_fill_super()
141 msblk->bytes_used = le64_to_cpu(sblk->bytes_used); in squashfs_fill_super()
147 msblk->block_size = le32_to_cpu(sblk->block_size); in squashfs_fill_super()
162 msblk->block_log = le16_to_cpu(sblk->block_log); in squashfs_fill_super()
171 root_inode = le64_to_cpu(sblk->root_inode); in squashfs_fill_super()
175 msblk->inode_table = le64_to_cpu(sblk->inode_table_start); in squashfs_fill_super()
176 msblk->directory_table = le64_to_cpu(sblk->directory_table_start); in squashfs_fill_super()
177 msblk->inodes = le32_to_cpu(sblk->inodes); in squashfs_fill_super()
178 msblk->fragments = le32_to_cpu(sblk->fragments); in squashfs_fill_super()
179 flags = le16_to_cpu(sblk->flags); in squashfs_fill_super()
190 TRACE("Number of ids %d\n", le16_to_cpu(sblk->no_ids)); in squashfs_fill_super()
194 (u64) le64_to_cpu(sblk->fragment_table_start)); in squashfs_fill_super()
196 (u64) le64_to_cpu(sblk->id_table_start)); in squashfs_fill_super()
226 xattr_id_table_start = le64_to_cpu(sblk->xattr_id_table_start); in squashfs_fill_super()
247 le64_to_cpu(sblk->id_table_start), next_table, in squashfs_fill_super()
248 le16_to_cpu(sblk->no_ids)); in squashfs_fill_super()
258 lookup_table_start = le64_to_cpu(sblk->lookup_table_start); in squashfs_fill_super()
289 le64_to_cpu(sblk->fragment_table_start), next_table, fragments); in squashfs_fill_super()
334 kfree(sblk); in squashfs_fill_super()
348 kfree(sblk); in squashfs_fill_super()