Lines Matching defs:sbp
124 * @sbp: superblock of the filesystem we search in
130 * @sbp in the extent @extent.
139 vxfs_blkiget(struct super_block *sbp, u_long extent, ino_t ino)
145 inode = new_inode(sbp);
150 block = extent + ((ino * VXFS_ISIZE) / sbp->s_blocksize);
151 offset = ((ino % (sbp->s_blocksize / VXFS_ISIZE)) * VXFS_ISIZE);
152 bp = sb_bread(sbp, block);
159 dip2vip_cpy(VXFS_SBI(sbp), vip, dip);
182 * described by @sbp. Use the specified inode table (@ilistp).
215 * @sbp: VFS superblock
219 * Find inode @ino in the filesystem described by @sbp using
224 vxfs_stiget(struct super_block *sbp, ino_t ino)
229 inode = new_inode(sbp);
234 error = __vxfs_iget(VXFS_SBI(sbp)->vsi_stilist, VXFS_INO(inode), ino);
245 * @sbp: the superblock to get the inode for
253 vxfs_iget(struct super_block *sbp, ino_t ino)
260 ip = iget_locked(sbp, ino);
267 error = __vxfs_iget(VXFS_SBI(sbp)->vsi_ilist, vip, ino);