Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/arch/x68k/include Change physseg allocation strategy to ...



details:   https://anonhg.NetBSD.org/src/rev/9de12ca34b5a
branches:  trunk
changeset: 480549:9de12ca34b5a
user:      minoura <minoura%NetBSD.org@localhost>
date:      Sat Jan 15 14:47:25 2000 +0000

description:
Change physseg allocation strategy to VM_PSTRAT_BIGFIRST.
Required when big (>64MB) high memory is installed.

diffstat:

 sys/arch/x68k/include/vmparam.h |  5 +++--
 1 files changed, 3 insertions(+), 2 deletions(-)

diffs (19 lines):

diff -r 52f0579fed67 -r 9de12ca34b5a sys/arch/x68k/include/vmparam.h
--- a/sys/arch/x68k/include/vmparam.h   Sat Jan 15 13:50:13 2000 +0000
+++ b/sys/arch/x68k/include/vmparam.h   Sat Jan 15 14:47:25 2000 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: vmparam.h,v 1.11 1999/12/04 21:21:48 ragge Exp $       */
+/*     $NetBSD: vmparam.h,v 1.12 2000/01/15 14:47:25 minoura Exp $     */
 
 /*
  * Copyright (c) 1988 University of Utah.
@@ -240,7 +240,8 @@
  * Constants which control the way the VM system deals with memory segments.
  */
 #define        VM_PHYSSEG_MAX          3
-#define VM_PHYSSEG_STRAT       VM_PSTRAT_RANDOM        /* ??? */
+#define VM_PHYSSEG_STRAT       VM_PSTRAT_BIGFIRST
+                               /* Actually VM_PSTRAT_UPPERFIRST is needed */
 #define        VM_PHYSSEG_NOADD
 
 #define        VM_NFREELIST            1



Home | Main Index | Thread Index | Old Index