Lines Matching refs:sbp
78 vxfs_put_super(struct super_block *sbp) in vxfs_put_super() argument
80 struct vxfs_sb_info *infp = VXFS_SBI(sbp); in vxfs_put_super()
148 static int vxfs_fill_super(struct super_block *sbp, void *dp, int silent) in vxfs_fill_super() argument
157 sbp->s_flags |= MS_RDONLY; in vxfs_fill_super()
165 bsize = sb_min_blocksize(sbp, BLOCK_SIZE); in vxfs_fill_super()
171 bp = sb_bread(sbp, 1); in vxfs_fill_super()
198 sbp->s_magic = rsbp->vs_magic; in vxfs_fill_super()
199 sbp->s_fs_info = infp; in vxfs_fill_super()
206 if (!sb_set_blocksize(sbp, rsbp->vs_bsize)) { in vxfs_fill_super()
211 if (vxfs_read_olt(sbp, bsize)) { in vxfs_fill_super()
216 if (vxfs_read_fshead(sbp)) { in vxfs_fill_super()
221 sbp->s_op = &vxfs_super_ops; in vxfs_fill_super()
222 root = vxfs_iget(sbp, VXFS_ROOT_INO); in vxfs_fill_super()
227 sbp->s_root = d_make_root(root); in vxfs_fill_super()
228 if (!sbp->s_root) { in vxfs_fill_super()