summaryrefslogtreecommitdiff
path: root/sys/arch
diff options
context:
space:
mode:
authorDaniel Dickman <daniel@cvs.openbsd.org>2022-02-05 20:31:27 +0000
committerDaniel Dickman <daniel@cvs.openbsd.org>2022-02-05 20:31:27 +0000
commite9d7da98ba40ee931f16bb7984ed0cb01b8eb01a (patch)
tree3346c5178da523b913ab4ae341dc37030b71cad2 /sys/arch
parenteb6cbdb3c55b69ff2a06f5554bea99b57cbbddf7 (diff)
grow the dmesg buffer on i386 from 4 to 8 pages
I have a machine where the dmesg is too big for 4 pages. ok deraadt@
Diffstat (limited to 'sys/arch')
-rw-r--r--sys/arch/i386/include/param.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/i386/include/param.h b/sys/arch/i386/include/param.h
index 8a1a61b165f..87f50a528e8 100644
--- a/sys/arch/i386/include/param.h
+++ b/sys/arch/i386/include/param.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: param.h,v 1.50 2018/08/25 17:24:22 kettenis Exp $ */
+/* $OpenBSD: param.h,v 1.51 2022/02/05 20:31:26 daniel Exp $ */
/*-
* Copyright (c) 1990 The Regents of the University of California.
@@ -70,7 +70,7 @@
#define NMBCLUSTERS (32 * 1024) /* max cluster allocation */
#ifndef MSGBUFSIZE
-#define MSGBUFSIZE (4 * PAGE_SIZE) /* default message buffer size */
+#define MSGBUFSIZE (8 * PAGE_SIZE) /* default message buffer size */
#endif
/*