aboutsummaryrefslogtreecommitdiff
path: root/sys/ntfs
diff options
context:
space:
mode:
authorEivind Eklund <eivind@FreeBSD.org>2000-10-09 17:31:39 +0000
committerEivind Eklund <eivind@FreeBSD.org>2000-10-09 17:31:39 +0000
commit7eb9fca557a7666b6be50b3f7b315ea1e0560530 (patch)
tree49b072ac7edc2f36b4b3c49d8151748389d8db37 /sys/ntfs
parent7925558e0add1a45d3760ac07eed4186873782ff (diff)
Notes
Diffstat (limited to 'sys/ntfs')
-rw-r--r--sys/ntfs/ntfs_vfsops.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/ntfs/ntfs_vfsops.c b/sys/ntfs/ntfs_vfsops.c
index 1b0b97a724ab..b520eb8f3db9 100644
--- a/sys/ntfs/ntfs_vfsops.c
+++ b/sys/ntfs/ntfs_vfsops.c
@@ -605,7 +605,7 @@ ntfs_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);
out1:
@@ -616,7 +616,7 @@ out1:
dprintf(("ntfs_mountfs: vflush failed\n"));
out:
- devvp->v_specmountpoint = NULL;
+ devvp->v_rdev->si_mountpoint = NULL;
if (bp)
brelse(bp);
@@ -685,7 +685,7 @@ ntfs_unmount(
* field is NULL and touching it causes null pointer derefercence.
*/
if (ntmp->ntm_devvp->v_type != VBAD)
- ntmp->ntm_devvp->v_specmountpoint = NULL;
+ ntmp->ntm_devvp->v_rdev->si_mountpoint = NULL;
vinvalbuf(ntmp->ntm_devvp, V_SAVE, NOCRED, p, 0, 0);