summaryrefslogtreecommitdiff
path: root/sys/arch/hppa64/include
diff options
context:
space:
mode:
authorMiod Vallat <miod@cvs.openbsd.org>2006-06-04 17:21:25 +0000
committerMiod Vallat <miod@cvs.openbsd.org>2006-06-04 17:21:25 +0000
commit42e4130d0a6fcb41516f4c08ada976c9427f2112 (patch)
tree22819f76f8cc59e4d05dfd4323376a44bfdbb2c7 /sys/arch/hppa64/include
parentbba723b9745299edaf195f729e9513d715fe9e8d (diff)
Shrink VM_PHYSSEG_MAX to 1 on platforms where physical memory is contiguous
and there is only one call to uvm_page_physload().
Diffstat (limited to 'sys/arch/hppa64/include')
-rw-r--r--sys/arch/hppa64/include/vmparam.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/arch/hppa64/include/vmparam.h b/sys/arch/hppa64/include/vmparam.h
index e9c3f210f79..fbdff030e42 100644
--- a/sys/arch/hppa64/include/vmparam.h
+++ b/sys/arch/hppa64/include/vmparam.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: vmparam.h,v 1.2 2005/04/13 04:03:46 mickey Exp $ */
+/* $OpenBSD: vmparam.h,v 1.3 2006/06/04 17:21:24 miod Exp $ */
/*
* Copyright (c) 1988-1994, The University of Utah and
@@ -79,8 +79,8 @@
/* virtual sizes (bytes) for various kernel submaps */
#define VM_PHYS_SIZE (USRIOSIZE*PAGE_SIZE)
-#define VM_PHYSSEG_MAX 8 /* this many physmem segments */
-#define VM_PHYSSEG_STRAT VM_PSTRAT_BIGFIRST
+#define VM_PHYSSEG_MAX 1 /* this many physmem segments */
+#define VM_PHYSSEG_STRAT VM_PSTRAT_RANDOM
#define VM_PHYSSEG_NOADD /* XXX until uvm code is fixed */