Source-Changes-HG archive

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

[src/netbsd-1-4]: src/sys/arch/x68k/include Pull up revision 1.12 (requested ...



details:   https://anonhg.NetBSD.org/src/rev/71d3e6500f0a
branches:  netbsd-1-4
changeset: 470061:71d3e6500f0a
user:      he <he%NetBSD.org@localhost>
date:      Sat Jan 15 18:10:26 2000 +0000

description:
Pull up revision 1.12 (requested by minoura):
  Change physseg allocation strategy to VM_PSTRAT_BIGFIRST.  Required
  when big (>64MB) high memory is installed, i.e. in a situation
  where DMA reachable memory runs out because of the large buffer
  cache.

diffstat:

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

diffs (19 lines):

diff -r a0ac03783d26 -r 71d3e6500f0a sys/arch/x68k/include/vmparam.h
--- a/sys/arch/x68k/include/vmparam.h   Sat Jan 15 18:05:48 2000 +0000
+++ b/sys/arch/x68k/include/vmparam.h   Sat Jan 15 18:10:26 2000 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: vmparam.h,v 1.9 1999/03/16 16:30:21 minoura Exp $      */
+/*     $NetBSD: vmparam.h,v 1.9.2.1 2000/01/15 18:10:26 he Exp $       */
 
 /*
  * Copyright (c) 1988 University of Utah.
@@ -241,7 +241,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