From 47ba5e6d34e69c881327719f51228e3fff9a09e2 Mon Sep 17 00:00:00 2001 From: phk Date: Tue, 20 Mar 2001 12:31:53 +0000 Subject: Fix a reference to the "vn" driver in a warning message. --- sys/dev/md/md.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/dev/md/md.c b/sys/dev/md/md.c index ca06c9c..8611872 100644 --- a/sys/dev/md/md.c +++ b/sys/dev/md/md.c @@ -385,7 +385,7 @@ mdstart_vnode(struct md_s *sc) auio.uio_resid = bp->bio_bcount; auio.uio_procp = curproc; if (VOP_ISLOCKED(sc->vnode, NULL)) - vprint("unexpected vn driver lock", sc->vnode); + vprint("unexpected md driver lock", sc->vnode); if (bp->bio_cmd == BIO_READ) { vn_lock(sc->vnode, LK_EXCLUSIVE | LK_RETRY, curproc); error = VOP_READ(sc->vnode, &auio, 0, sc->cred); -- cgit v1.1