aboutsummaryrefslogtreecommitdiffstats
path: root/fs/xfs/xfs_mount.c
diff options
context:
space:
mode:
authorNathan Scott <nathans@sgi.com>2006-06-09 02:48:30 -0400
committerNathan Scott <nathans@sgi.com>2006-06-09 02:48:30 -0400
commitb83bd1388133e914c38bd31d69bc90143e6ab10c (patch)
tree3f7fecf3913d1aa8216e06f109746c63ec0ac501 /fs/xfs/xfs_mount.c
parent932f2c323196c214e645d5a572a1d7b562c0f93f (diff)
[XFS] Resolve a namespace collision on vfs/vfsops for FreeBSD porters.
SGI-PV: 9533338 SGI-Modid: xfs-linux-melb:xfs-kern:26106a Signed-off-by: Nathan Scott <nathans@sgi.com>
Diffstat (limited to 'fs/xfs/xfs_mount.c')
-rw-r--r--fs/xfs/xfs_mount.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/fs/xfs/xfs_mount.c b/fs/xfs/xfs_mount.c
index 9378408a69d5..56c4b7e51f4d 100644
--- a/fs/xfs/xfs_mount.c
+++ b/fs/xfs/xfs_mount.c
@@ -196,7 +196,7 @@ xfs_mount_free(
196 kmem_free(mp->m_logname, strlen(mp->m_logname) + 1); 196 kmem_free(mp->m_logname, strlen(mp->m_logname) + 1);
197 197
198 if (remove_bhv) { 198 if (remove_bhv) {
199 struct vfs *vfsp = XFS_MTOVFS(mp); 199 struct bhv_vfs *vfsp = XFS_MTOVFS(mp);
200 200
201 bhv_remove_all_vfsops(vfsp, 0); 201 bhv_remove_all_vfsops(vfsp, 0);
202 VFS_REMOVEBHV(vfsp, &mp->m_bhv); 202 VFS_REMOVEBHV(vfsp, &mp->m_bhv);
@@ -337,7 +337,7 @@ xfs_mount_validate_sb(
337 337
338xfs_agnumber_t 338xfs_agnumber_t
339xfs_initialize_perag( 339xfs_initialize_perag(
340 struct vfs *vfs, 340 bhv_vfs_t *vfs,
341 xfs_mount_t *mp, 341 xfs_mount_t *mp,
342 xfs_agnumber_t agcount) 342 xfs_agnumber_t agcount)
343{ 343{
@@ -651,7 +651,7 @@ xfs_mount_common(xfs_mount_t *mp, xfs_sb_t *sbp)
651 */ 651 */
652int 652int
653xfs_mountfs( 653xfs_mountfs(
654 vfs_t *vfsp, 654 bhv_vfs_t *vfsp,
655 xfs_mount_t *mp, 655 xfs_mount_t *mp,
656 int mfsi_flags) 656 int mfsi_flags)
657{ 657{
@@ -1095,7 +1095,7 @@ xfs_mountfs(
1095int 1095int
1096xfs_unmountfs(xfs_mount_t *mp, struct cred *cr) 1096xfs_unmountfs(xfs_mount_t *mp, struct cred *cr)
1097{ 1097{
1098 struct vfs *vfsp = XFS_MTOVFS(mp); 1098 struct bhv_vfs *vfsp = XFS_MTOVFS(mp);
1099#if defined(DEBUG) || defined(INDUCE_IO_ERROR) 1099#if defined(DEBUG) || defined(INDUCE_IO_ERROR)
1100 int64_t fsid; 1100 int64_t fsid;
1101#endif 1101#endif