diff options
| author | Eivind Eklund <eivind@FreeBSD.org> | 2000-10-09 17:31:39 +0000 |
|---|---|---|
| committer | Eivind Eklund <eivind@FreeBSD.org> | 2000-10-09 17:31:39 +0000 |
| commit | 7eb9fca557a7666b6be50b3f7b315ea1e0560530 (patch) | |
| tree | 49b072ac7edc2f36b4b3c49d8151748389d8db37 /sys/kern/vfs_subr.c | |
| parent | 7925558e0add1a45d3760ac07eed4186873782ff (diff) | |
Notes
Diffstat (limited to 'sys/kern/vfs_subr.c')
| -rw-r--r-- | sys/kern/vfs_subr.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/kern/vfs_subr.c b/sys/kern/vfs_subr.c index c37397a3ad6b..eb5f5cf39b83 100644 --- a/sys/kern/vfs_subr.c +++ b/sys/kern/vfs_subr.c @@ -1235,7 +1235,7 @@ reassignbuf(bp, newvp) break; case VCHR: case VBLK: - if (newvp->v_specmountpoint != NULL) { + if (newvp->v_rdev->si_mountpoint != NULL) { delay = metadelay; break; } @@ -2251,7 +2251,7 @@ vfs_mountedon(vp) struct vnode *vp; { - if (vp->v_specmountpoint != NULL) + if (vp->v_rdev->si_mountpoint != NULL) return (EBUSY); return (0); } |
