Make msgseg, msgssz (->msgmax) and msgmni TUNABLE.
This commit is contained in:
parent
ccf136a93f
commit
896de692f8
@ -132,6 +132,11 @@ msginit()
|
||||
{
|
||||
register int i;
|
||||
|
||||
TUNABLE_INT_FETCH("kern.ipc.msgseg", &msginfo.msgseg);
|
||||
TUNABLE_INT_FETCH("kern.ipc.msgssz", &msginfo.msgssz);
|
||||
msginfo.msgmax = msginfo.msgseg * msginfo.msgssz;
|
||||
TUNABLE_INT_FETCH("kern.ipc.msgmni", &msginfo.msgmni);
|
||||
|
||||
msgpool = malloc(msginfo.msgmax, M_MSG, M_WAITOK);
|
||||
if (msgpool == NULL)
|
||||
panic("msgpool is NULL");
|
||||
|
Loading…
x
Reference in New Issue
Block a user