diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2018-03-04 16:44:03 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2018-03-04 16:44:03 +0000 |
commit | 06d1e743b7b8f9115ac239717694c4c65b056f3a (patch) | |
tree | c1e3c746520df93e4d36166b254171a0436b586c /sys/arch | |
parent | 6a3c9222345b5807bd5a8d2f47549c5322b80190 (diff) |
grow dmesg buffer - bigger machines showing up
Diffstat (limited to 'sys/arch')
-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 fa1ac991f34..ad9f1b2eaa5 100644 --- a/sys/arch/amd64/include/param.h +++ b/sys/arch/amd64/include/param.h @@ -1,4 +1,4 @@ -/* $OpenBSD: param.h,v 1.24 2017/09/06 04:44:39 dlg Exp $ */ +/* $OpenBSD: param.h,v 1.25 2018/03/04 16:44:02 deraadt Exp $ */ /*- * Copyright (c) 1990 The Regents of the University of California. @@ -75,7 +75,7 @@ #define NMBCLUSTERS (256 * 1024) /* max cluster allocation */ #ifndef MSGBUFSIZE -#define MSGBUFSIZE (16 * PAGE_SIZE) /* default message buffer size */ +#define MSGBUFSIZE (24 * PAGE_SIZE) /* default message buffer size */ #endif /* |