From 5fc491ef58d1481570c1d5c6c4edf08ecc11131a Mon Sep 17 00:00:00 2001 From: Peter Wemm Date: Mon, 28 Jun 1999 12:34:40 +0000 Subject: Fix a KASSERT() that was negated and lead to: nfs_strategy: buffer 0xxxxx not locked when you attempted to write and had INVARIANTS turned on. --- sys/nfsclient/nfs_vnops.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'sys/nfsclient/nfs_vnops.c') diff --git a/sys/nfsclient/nfs_vnops.c b/sys/nfsclient/nfs_vnops.c index 9e5ceb8f2811..f146631f3bb2 100644 --- a/sys/nfsclient/nfs_vnops.c +++ b/sys/nfsclient/nfs_vnops.c @@ -34,7 +34,7 @@ * SUCH DAMAGE. * * @(#)nfs_vnops.c 8.16 (Berkeley) 5/27/95 - * $Id: nfs_vnops.c,v 1.131 1999/06/16 23:27:48 mckusick Exp $ + * $Id: nfs_vnops.c,v 1.132 1999/06/26 02:46:32 mckusick Exp $ */ @@ -2647,7 +2647,7 @@ nfs_strategy(ap) int error = 0; KASSERT(!(bp->b_flags & B_DONE), ("nfs_strategy: buffer %p unexpectedly marked B_DONE", bp)); - KASSERT(BUF_REFCNT(bp) == 0, ("nfs_strategy: buffer %p not locked", bp)); + KASSERT(BUF_REFCNT(bp) > 0, ("nfs_strategy: buffer %p not locked", bp)); if (bp->b_flags & B_PHYS) panic("nfs physio"); -- cgit v1.2.3