summaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorMartin Pieuchot <mpi@cvs.openbsd.org>2017-05-08 09:32:20 +0000
committerMartin Pieuchot <mpi@cvs.openbsd.org>2017-05-08 09:32:20 +0000
commit73d0922ace04ef6a85e38bae4aa29a2650153736 (patch)
tree27963d028811c687aff077134b54f4d8a5cd3f13 /sys
parent62a12d921bcac268b97361ff51fd492122e3e2ec (diff)
Unifed PMAP_UAREA, unused since we stopped supporting ARM < v7.
ok kettenis@
Diffstat (limited to 'sys')
-rw-r--r--sys/uvm/uvm_glue.c8
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);
}