[XFS] kill struct bhv_vfs

Now that struct bhv_vfs doesn't have any members left we can kill it and
go directly from the super_block to the xfs_mount everywhere.

SGI-PV: 969608
SGI-Modid: xfs-linux-melb:xfs-kern:29509a

Signed-off-by: Christoph Hellwig <hch@infradead.org>
Signed-off-by: David Chinner <dgc@sgi.com>
Signed-off-by: Tim Shimmin <tes@sgi.com>
This commit is contained in:
Christoph Hellwig
2007-08-30 17:21:30 +10:00
committed by Tim Shimmin
parent 7439449670
commit b267ce9952
14 changed files with 39 additions and 312 deletions

View File

@@ -369,7 +369,7 @@ xfs_iget(
XFS_STATS_INC(xs_ig_attempts);
retry:
inode = iget_locked(XFS_MTOVFS(mp)->vfs_super, ino);
inode = iget_locked(mp->m_super, ino);
if (inode) {
xfs_inode_t *ip;