Module Name: src
Committed By: martin
Date: Wed Apr 11 14:43:23 UTC 2018
Modified Files:
src/sys/arch/amd64/include [netbsd-8]: param.h
src/sys/arch/i386/include [netbsd-8]: param.h
Log Message:
Pull up following revision(s) (requested by sborrill in ticket #736):
sys/arch/i386/include/param.h: revision 1.83
sys/arch/amd64/include/param.h: revision 1.24
Double size of MSGBUFSIZE as existing value is not big enough to hold
boot dmesg on modern server-class hardware with lots of CPUs, etc.
To generate a diff of this commit:
cvs rdiff -u -r1.21.6.2 -r1.21.6.3 src/sys/arch/amd64/include/param.h
cvs rdiff -u -r1.80 -r1.80.6.1 src/sys/arch/i386/include/param.h
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/arch/amd64/include/param.h
diff -u src/sys/arch/amd64/include/param.h:1.21.6.2 src/sys/arch/amd64/include/param.h:1.21.6.3
--- src/sys/arch/amd64/include/param.h:1.21.6.2 Thu Mar 22 16:59:03 2018
+++ src/sys/arch/amd64/include/param.h Wed Apr 11 14:43:23 2018
@@ -1,4 +1,4 @@
-/* $NetBSD: param.h,v 1.21.6.2 2018/03/22 16:59:03 martin Exp $ */
+/* $NetBSD: param.h,v 1.21.6.3 2018/04/11 14:43:23 martin Exp $ */
#ifdef __x86_64__
@@ -60,7 +60,7 @@
#define USPACE (UPAGES * NBPG) /* total size of u-area */
#ifndef MSGBUFSIZE
-#define MSGBUFSIZE (8*NBPG) /* default message buffer size */
+#define MSGBUFSIZE (16*NBPG) /* default message buffer size */
#endif
/*
Index: src/sys/arch/i386/include/param.h
diff -u src/sys/arch/i386/include/param.h:1.80 src/sys/arch/i386/include/param.h:1.80.6.1
--- src/sys/arch/i386/include/param.h:1.80 Fri Jan 20 00:29:28 2017
+++ src/sys/arch/i386/include/param.h Wed Apr 11 14:43:23 2018
@@ -1,4 +1,4 @@
-/* $NetBSD: param.h,v 1.80 2017/01/20 00:29:28 maya Exp $ */
+/* $NetBSD: param.h,v 1.80.6.1 2018/04/11 14:43:23 martin Exp $ */
/*-
* Copyright (c) 1990 The Regents of the University of California.
@@ -103,7 +103,7 @@
#define INTRSTACKSIZE 8192
#ifndef MSGBUFSIZE
-#define MSGBUFSIZE (8*NBPG) /* default message buffer size */
+#define MSGBUFSIZE (16*NBPG) /* default message buffer size */
#endif
/*