Lines Matching defs:sbp
149 * @sbp: superblock of the filesystem we search in
155 * @sbp in the extent @extent.
164 vxfs_blkiget(struct super_block *sbp, u_long extent, ino_t ino)
170 inode = new_inode(sbp);
175 block = extent + ((ino * VXFS_ISIZE) / sbp->s_blocksize);
176 offset = ((ino % (sbp->s_blocksize / VXFS_ISIZE)) * VXFS_ISIZE);
177 bp = sb_bread(sbp, block);
184 dip2vip_cpy(VXFS_SBI(sbp), vip, dip);
207 * described by @sbp. Use the specified inode table (@ilistp).
240 * @sbp: VFS superblock
244 * Find inode @ino in the filesystem described by @sbp using
249 vxfs_stiget(struct super_block *sbp, ino_t ino)
254 inode = new_inode(sbp);
259 error = __vxfs_iget(VXFS_SBI(sbp)->vsi_stilist, VXFS_INO(inode), ino);
270 * @sbp: the superblock to get the inode for
278 vxfs_iget(struct super_block *sbp, ino_t ino)
285 ip = iget_locked(sbp, ino);
292 error = __vxfs_iget(VXFS_SBI(sbp)->vsi_ilist, vip, ino);