Lines Matching refs:sb
52 static long long squashfs_inode_lookup(struct super_block *sb, int ino_num) in squashfs_inode_lookup() argument
54 struct squashfs_sb_info *msblk = sb->s_fs_info; in squashfs_inode_lookup()
63 err = squashfs_read_metadata(sb, &ino, &start, &offset, sizeof(ino)); in squashfs_inode_lookup()
74 static struct dentry *squashfs_export_iget(struct super_block *sb, in squashfs_export_iget() argument
82 ino = squashfs_inode_lookup(sb, ino_num); in squashfs_export_iget()
84 dentry = d_obtain_alias(squashfs_iget(sb, ino, ino_num)); in squashfs_export_iget()
90 static struct dentry *squashfs_fh_to_dentry(struct super_block *sb, in squashfs_fh_to_dentry() argument
97 return squashfs_export_iget(sb, fid->i32.ino); in squashfs_fh_to_dentry()
101 static struct dentry *squashfs_fh_to_parent(struct super_block *sb, in squashfs_fh_to_parent() argument
107 return squashfs_export_iget(sb, fid->i32.parent_ino); in squashfs_fh_to_parent()
123 __le64 *squashfs_read_inode_lookup_table(struct super_block *sb, in squashfs_read_inode_lookup_table() argument
144 table = squashfs_read_table(sb, lookup_table_start, length); in squashfs_read_inode_lookup_table()