diff options
author | eivind <eivind@FreeBSD.org> | 2000-10-09 17:31:39 +0000 |
---|---|---|
committer | eivind <eivind@FreeBSD.org> | 2000-10-09 17:31:39 +0000 |
commit | 4a39f454a004e45fbf58edf33d5a7c897964fa2d (patch) | |
tree | 1dc4af23aa65164f631bbeb9f969739d5f05803b /sys/fs/hpfs/hpfs_vfsops.c | |
parent | 21413d77fe0420111b362ba10c8108c1a22ee2b7 (diff) | |
download | FreeBSD-src-4a39f454a004e45fbf58edf33d5a7c897964fa2d.zip FreeBSD-src-4a39f454a004e45fbf58edf33d5a7c897964fa2d.tar.gz |
Blow away the v_specmountpoint define, replacing it with what it was
defined as (rdev->si_mountpoint)
Diffstat (limited to 'sys/fs/hpfs/hpfs_vfsops.c')
-rw-r--r-- | sys/fs/hpfs/hpfs_vfsops.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/fs/hpfs/hpfs_vfsops.c b/sys/fs/hpfs/hpfs_vfsops.c index 1906799..a5be4d8 100644 --- a/sys/fs/hpfs/hpfs_vfsops.c +++ b/sys/fs/hpfs/hpfs_vfsops.c @@ -439,7 +439,7 @@ hpfs_mountfs(devvp, mp, argsp, p) #endif mp->mnt_maxsymlinklen = 0; mp->mnt_flag |= MNT_LOCAL; - devvp->v_specmountpoint = mp; + devvp->v_rdev->si_mountpoint = mp; return (0); failed: @@ -447,7 +447,7 @@ failed: brelse (bp); mp->mnt_data = (qaddr_t)NULL; #if defined(__FreeBSD__) - devvp->v_specmountpoint = NULL; + devvp->v_rdev->si_mountpoint = NULL; #else devvp->v_specflags &= ~SI_MOUNTEDON; #endif @@ -492,7 +492,7 @@ hpfs_unmount( } #if defined(__FreeBSD__) - hpmp->hpm_devvp->v_specmountpoint = NULL; + hpmp->hpm_devvp->v_rdev->si_mountpoint = NULL; #else hpmp->hpm_devvp->v_specflags &= ~SI_MOUNTEDON; #endif |