Source-Changes-HG archive

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

[src/netbsd-6]: src/sys/arch Pull up following revision(s) (requested by sbor...



details:   https://anonhg.NetBSD.org/src/rev/24a8d17c2419
branches:  netbsd-6
changeset: 774452:24a8d17c2419
user:      riz <riz%NetBSD.org@localhost>
date:      Wed Aug 15 15:22:55 2012 +0000

description:
Pull up following revision(s) (requested by sborrill in ticket #501):
        sys/arch/amd64/include/vmparam.h: revision 1.31
        sys/arch/i386/include/vmparam.h: revision 1.75
Bump VM_PHYSSEG_MAX to 16 from 10. Modern IBM hardware requires
VM_PHYSSEG_MAX to be turned up to 11 to avoid an early panic.
Bump VM_PHYSSEG_MAX to 16 from 10. Modern IBM hardware requires
VM_PHYSSEG_MAX to be turned up to 11 to avoid an early panic.

diffstat:

 sys/arch/amd64/include/vmparam.h |  4 ++--
 sys/arch/i386/include/vmparam.h  |  4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diffs (36 lines):

diff -r 19b1a0b24f06 -r 24a8d17c2419 sys/arch/amd64/include/vmparam.h
--- a/sys/arch/amd64/include/vmparam.h  Wed Aug 15 01:26:45 2012 +0000
+++ b/sys/arch/amd64/include/vmparam.h  Wed Aug 15 15:22:55 2012 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: vmparam.h,v 1.29 2012/01/10 16:03:17 chs Exp $ */
+/*     $NetBSD: vmparam.h,v 1.29.2.1 2012/08/15 15:22:55 riz Exp $     */
 
 /*-
  * Copyright (c) 1990 The Regents of the University of California.
@@ -148,7 +148,7 @@
 /* virtual sizes (bytes) for various kernel submaps */
 #define VM_PHYS_SIZE           (USRIOSIZE*PAGE_SIZE)
 
-#define VM_PHYSSEG_MAX         10      /* 1 "hole" + 9 free lists */
+#define VM_PHYSSEG_MAX         16      /* 1 "hole" + 15 free lists */
 #define VM_PHYSSEG_STRAT       VM_PSTRAT_BIGFIRST
 
 #define        VM_NFREELIST            3
diff -r 19b1a0b24f06 -r 24a8d17c2419 sys/arch/i386/include/vmparam.h
--- a/sys/arch/i386/include/vmparam.h   Wed Aug 15 01:26:45 2012 +0000
+++ b/sys/arch/i386/include/vmparam.h   Wed Aug 15 15:22:55 2012 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: vmparam.h,v 1.72 2010/11/14 13:33:21 uebayasi Exp $    */
+/*     $NetBSD: vmparam.h,v 1.72.14.1 2012/08/15 15:22:55 riz Exp $    */
 
 /*-
  * Copyright (c) 1990 The Regents of the University of California.
@@ -127,7 +127,7 @@
 #define        VM_PHYSSEG_MAX          1
 #define        VM_NFREELIST            1
 #else
-#define        VM_PHYSSEG_MAX          10      /* 1 "hole" + 9 free lists */
+#define        VM_PHYSSEG_MAX          16      /* 1 "hole" + 15 free lists */
 #define        VM_NFREELIST            2
 #define        VM_FREELIST_FIRST16     1
 #endif /* XEN */



Home | Main Index | Thread Index | Old Index