Module Name: src
Committed By: isaki
Date: Sat Dec 28 11:42:18 UTC 2019
Modified Files:
src/sys/arch/x68k/include: param.h
Log Message:
Bump MSGBUFSIZE (2 * NBPG).
Since timestamp was introduced, it was too small to store full dmesg
of one boot.
And putting this behind of #include <m68k/param.h> had no effect.
This was fixed on many arch in 1997 but x68k was not...
http://mail-index.netbsd.org/source-changes/1997/09/20/0021.html
To generate a diff of this commit:
cvs rdiff -u -r1.28 -r1.29 src/sys/arch/x68k/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/x68k/include/param.h
diff -u src/sys/arch/x68k/include/param.h:1.28 src/sys/arch/x68k/include/param.h:1.29
--- src/sys/arch/x68k/include/param.h:1.28 Fri Feb 10 17:35:47 2012
+++ src/sys/arch/x68k/include/param.h Sat Dec 28 11:42:18 2019
@@ -1,4 +1,4 @@
-/* $NetBSD: param.h,v 1.28 2012/02/10 17:35:47 para Exp $ */
+/* $NetBSD: param.h,v 1.29 2019/12/28 11:42:18 isaki Exp $ */
/*
* Copyright (c) 1988 University of Utah.
@@ -52,14 +52,14 @@
#define UPAGES 2 /* pages of u-area */
+#ifndef MSGBUFSIZE
+#define MSGBUFSIZE (2 * NBPG) /* default message buffer size */
+#endif
+
#include <m68k/param.h>
#define NPTEPG (NBPG/(sizeof (pt_entry_t)))
-#ifndef MSGBUFSIZE
-#define MSGBUFSIZE NBPG /* default message buffer size */
-#endif
-
/*
* Minimum and maximum sizes of the kernel malloc arena in PAGE_SIZE-sized
* logical pages.