diff options
author | 2002-06-11 06:38:01 +0000 | |
---|---|---|
committer | 2002-06-11 06:38:01 +0000 | |
commit | 6763ad39e5e78e863c41b3821744cc090da9118e (patch) | |
tree | 1e09d60032a2f781537321c0b5660c4d1a2fbb95 | |
parent | ANSIfy (diff) | |
download | wireguard-openbsd-6763ad39e5e78e863c41b3821744cc090da9118e.tar.xz wireguard-openbsd-6763ad39e5e78e863c41b3821744cc090da9118e.zip |
Remove a stupid assert that grows the kernel by 40kB.
-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; } |