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/cd9660 | |
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/cd9660')
-rw-r--r-- | sys/fs/cd9660/cd9660_vfsops.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/fs/cd9660/cd9660_vfsops.c b/sys/fs/cd9660/cd9660_vfsops.c index 0934730..49e6169 100644 --- a/sys/fs/cd9660/cd9660_vfsops.c +++ b/sys/fs/cd9660/cd9660_vfsops.c @@ -438,7 +438,7 @@ iso_mountfs(devvp, mp, p, argp) isomp->im_dev = dev; isomp->im_devvp = devvp; - devvp->v_specmountpoint = mp; + devvp->v_rdev->si_mountpoint = mp; /* Check the Rock Ridge Extention support */ if (!(argp->flags & ISOFSMNT_NORRIP)) { @@ -505,7 +505,7 @@ iso_mountfs(devvp, mp, p, argp) return 0; out: - devvp->v_specmountpoint = NULL; + devvp->v_rdev->si_mountpoint = NULL; if (bp) brelse(bp); if (pribp) @@ -545,7 +545,7 @@ cd9660_unmount(mp, mntflags, p) isomp = VFSTOISOFS(mp); - isomp->im_devvp->v_specmountpoint = NULL; + isomp->im_devvp->v_rdev->si_mountpoint = NULL; error = VOP_CLOSE(isomp->im_devvp, FREAD, NOCRED, p); vrele(isomp->im_devvp); free((caddr_t)isomp, M_ISOFSMNT); |