Lines Matching refs:sblk

82 	struct squashfs_super_block *sblk = NULL;  in squashfs_fill_super()  local
111 msblk->bytes_used = sizeof(*sblk); in squashfs_fill_super()
112 sblk = squashfs_read_table(sb, SQUASHFS_START, sizeof(*sblk)); in squashfs_fill_super()
114 if (IS_ERR(sblk)) { in squashfs_fill_super()
116 err = PTR_ERR(sblk); in squashfs_fill_super()
117 sblk = NULL; in squashfs_fill_super()
124 sb->s_magic = le32_to_cpu(sblk->s_magic); in squashfs_fill_super()
134 le16_to_cpu(sblk->s_major), in squashfs_fill_super()
135 le16_to_cpu(sblk->s_minor), in squashfs_fill_super()
136 le16_to_cpu(sblk->compression)); in squashfs_fill_super()
142 msblk->bytes_used = le64_to_cpu(sblk->bytes_used); in squashfs_fill_super()
148 msblk->block_size = le32_to_cpu(sblk->block_size); in squashfs_fill_super()
163 msblk->block_log = le16_to_cpu(sblk->block_log); in squashfs_fill_super()
172 root_inode = le64_to_cpu(sblk->root_inode); in squashfs_fill_super()
176 msblk->inode_table = le64_to_cpu(sblk->inode_table_start); in squashfs_fill_super()
177 msblk->directory_table = le64_to_cpu(sblk->directory_table_start); in squashfs_fill_super()
178 msblk->inodes = le32_to_cpu(sblk->inodes); in squashfs_fill_super()
179 flags = le16_to_cpu(sblk->flags); in squashfs_fill_super()
189 TRACE("Number of fragments %d\n", le32_to_cpu(sblk->fragments)); 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()
276 fragments = le32_to_cpu(sblk->fragments); 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()