diff options
author | Artur Grabowski <art@cvs.openbsd.org> | 2002-06-11 06:38:02 +0000 |
---|---|---|
committer | Artur Grabowski <art@cvs.openbsd.org> | 2002-06-11 06:38:02 +0000 |
commit | 4757b77504cc9cdf29187c364da6b8f8d0d85536 (patch) | |
tree | d18a74839f17469901742387c3dc64d22644dc0b /sys | |
parent | eb435aefdad092a7357da1b04a1124706bfc9213 (diff) |
Remove a stupid assert that grows the kernel by 40kB.
Diffstat (limited to 'sys')
-rw-r--r-- | sys/uvm/uvm_map.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sys/uvm/uvm_map.h b/sys/uvm/uvm_map.h index c5341066430..f99f25e307c 100644 --- a/sys/uvm/uvm_map.h +++ b/sys/uvm/uvm_map.h @@ -1,4 +1,4 @@ -/* $OpenBSD: uvm_map.h,v 1.26 2002/03/14 01:27:18 millert Exp $ */ +/* $OpenBSD: uvm_map.h,v 1.27 2002/06/11 06:38:01 art Exp $ */ /* $NetBSD: uvm_map.h,v 1.24 2001/02/18 21:19:08 chs Exp $ */ /* @@ -439,7 +439,6 @@ vm_map_lock(map) &map->flags_lock, curproc); if (error) { - KASSERT(error == ENOLCK); goto try_again; } |