Increase MSGBUF_SIZE.

The previous size lead to truncated /var/run/dmesg.boot when booted with "-v".
This commit is contained in:
obrien 2011-10-07 06:00:00 +00:00
parent 4b04845b06
commit a2b5592dae

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