diff options
author | 2017-05-08 09:32:19 +0000 | |
---|---|---|
committer | 2017-05-08 09:32:19 +0000 | |
commit | 8f7786fb2fc1d47b97ade87d4cc2a21170c02a89 (patch) | |
tree | ed9de452713d88df0a35cb883abbcc366f89053a | |
parent | Make netstat(8) always ask for IPv6 multicast routing information. Worst (diff) | |
download | wireguard-openbsd-8f7786fb2fc1d47b97ade87d4cc2a21170c02a89.tar.xz wireguard-openbsd-8f7786fb2fc1d47b97ade87d4cc2a21170c02a89.zip |
Unifed PMAP_UAREA, unused since we stopped supporting ARM < v7.
ok kettenis@
-rw-r--r-- | sys/uvm/uvm_glue.c | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/sys/uvm/uvm_glue.c b/sys/uvm/uvm_glue.c index 9098b232fbc..6362fb7938c 100644 --- a/sys/uvm/uvm_glue.c +++ b/sys/uvm/uvm_glue.c @@ -1,4 +1,4 @@ -/* $OpenBSD: uvm_glue.c,v 1.72 2017/04/30 13:04:49 mpi Exp $ */ +/* $OpenBSD: uvm_glue.c,v 1.73 2017/05/08 09:32:19 mpi Exp $ */ /* $NetBSD: uvm_glue.c,v 1.44 2001/02/06 19:54:44 eeh Exp $ */ /* @@ -263,12 +263,6 @@ uvm_uarea_alloc(void) no_constraint.ucr_low, no_constraint.ucr_high, 0, 0, USPACE/PAGE_SIZE); -#ifdef PMAP_UAREA - /* Tell the pmap this is a u-area mapping */ - if (uaddr != 0) - PMAP_UAREA(uaddr); -#endif - return (uaddr); } |