1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-03 09:00:21 +00:00

Increase MSGBUF_SIZE.

The previous size lead to truncated /var/run/dmesg.boot when booted with "-v".
This commit is contained in:
David E. O'Brien 2011-10-07 06:00:00 +00:00
parent ef522f9515
commit 0fe2573328
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=226090

View File

@ -77,7 +77,7 @@ int msgbuf_peekbytes(struct msgbuf *mbp, char *buf, int buflen,
void msgbuf_reinit(struct msgbuf *mbp, void *ptr, int size);
#ifndef MSGBUF_SIZE
#define MSGBUF_SIZE (32768 * 2)
#define MSGBUF_SIZE (32768 * 3)
#endif
#endif /* KERNEL */