up the default msgbuf limit to 64k.. a verbose boot on i386 on modern

hardware returns almost 48k of data...  to change the default per platform,
it should be done in DEFAULTS, not here...

Discussed on:	-arch
This commit is contained in:
jmg 2006-09-03 00:33:19 +00:00
parent 6c51ecb8c4
commit 632f50effc

View File

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