Commit 02fb4124 authored by Chris Wright's avatar Chris Wright Committed by Linus Torvalds

[PATCH] RLIM: adjust default mqueue sizes

Lower default sizes for POSIX mqueue allocation now that rlimits are in place.
Signed-off-by: default avatarAndrew Morton <akpm@osdl.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent ae17b2b3
...@@ -43,10 +43,10 @@ ...@@ -43,10 +43,10 @@
#define CTL_MSGSIZEMAX 4 #define CTL_MSGSIZEMAX 4
/* default values */ /* default values */
#define DFLT_QUEUESMAX 64 /* max number of message queues */ #define DFLT_QUEUESMAX 256 /* max number of message queues */
#define DFLT_MSGMAX 40 /* max number of messages in each queue */ #define DFLT_MSGMAX 10 /* max number of messages in each queue */
#define HARD_MSGMAX (131072/sizeof(void*)) #define HARD_MSGMAX (131072/sizeof(void*))
#define DFLT_MSGSIZEMAX 16384 /* max message size */ #define DFLT_MSGSIZEMAX 8192 /* max message size */
#define NOTIFY_COOKIE_LEN 32 #define NOTIFY_COOKIE_LEN 32
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment