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

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 */