diff options
author | 2010-06-22 05:20:40 +0000 | |
---|---|---|
committer | 2010-06-22 05:20:40 +0000 | |
commit | 464e52d4c67e9b3bc59772acd2a8fe417e365645 (patch) | |
tree | f0a305559804eba5fd2bde90dcd77cb811d114c3 | |
parent | include the user name on "subsystem request for ..." log messages; (diff) | |
download | wireguard-openbsd-464e52d4c67e9b3bc59772acd2a8fe417e365645.tar.xz wireguard-openbsd-464e52d4c67e9b3bc59772acd2a8fe417e365645.zip |
bump up the dmesg buffer size. new boxes have lots of crap in them, so
boot messages can be too big to fit.
sure deraadt@
-rw-r--r-- | sys/arch/amd64/include/param.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/amd64/include/param.h b/sys/arch/amd64/include/param.h index c72821b7b2f..0a05730ac25 100644 --- a/sys/arch/amd64/include/param.h +++ b/sys/arch/amd64/include/param.h @@ -1,4 +1,4 @@ -/* $OpenBSD: param.h,v 1.15 2007/10/28 10:25:09 martin Exp $ */ +/* $OpenBSD: param.h,v 1.16 2010/06/22 05:20:40 dlg Exp $ */ /*- * Copyright (c) 1990 The Regents of the University of California. @@ -94,7 +94,7 @@ #define USPACE_ALIGN (0) /* u-area alignment 0-none */ #ifndef MSGBUFSIZE -#define MSGBUFSIZE 4*NBPG /* default message buffer size */ +#define MSGBUFSIZE 8*NBPG /* default message buffer size */ #endif /* |