diff options
author | 2013-01-18 10:07:37 +0000 | |
---|---|---|
committer | 2013-01-18 10:07:37 +0000 | |
commit | 3bedbb35b1cfcd4280aba5b0c42c9fe350f0608e (patch) | |
tree | 28b951bd26064514c0fcb80077846188c80095cc | |
parent | Tweak workunit completion. (diff) | |
download | wireguard-openbsd-3bedbb35b1cfcd4280aba5b0c42c9fe350f0608e.tar.xz wireguard-openbsd-3bedbb35b1cfcd4280aba5b0c42c9fe350f0608e.zip |
oops. this kassert should have gone with the B_NOTMAPPED commit
-rw-r--r-- | sys/kern/vfs_biomem.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sys/kern/vfs_biomem.c b/sys/kern/vfs_biomem.c index e93d071f281..363686b7ec7 100644 --- a/sys/kern/vfs_biomem.c +++ b/sys/kern/vfs_biomem.c @@ -1,4 +1,4 @@ -/* $OpenBSD: vfs_biomem.c,v 1.22 2013/01/18 08:52:04 beck Exp $ */ +/* $OpenBSD: vfs_biomem.c,v 1.23 2013/01/18 10:07:37 beck Exp $ */ /* * Copyright (c) 2007 Artur Grabowski <art@openbsd.org> * @@ -155,7 +155,6 @@ buf_release(struct buf *bp) { KASSERT(bp->b_flags & B_BUSY); - KASSERT(bp->b_data != NULL); splassert(IPL_BIO); if (bp->b_data) { |