From: Amerigo Wang Date: Wed, 16 Dec 2009 00:47:36 +0000 (-0800) Subject: ipc: HARD_MSGMAX should be higher not lower on 64bit X-Git-Tag: v2.6.33-rc1~71^2~64 X-Git-Url: https://openfabrics.org/gitweb/?a=commitdiff_plain;h=9cf18e1dd74cd0061d58ac55029784ca3dd88f6a;p=~emulex%2Finfiniband.git ipc: HARD_MSGMAX should be higher not lower on 64bit We have HARD_MSGMAX lower on 64bit than on 32bit, since usually 64bit machines have more memory than 32bit machines. Making it higher on 64bit seems reasonable, and keep the original number on 32bit. Acked-by: Serge E. Hallyn Cc: Cedric Le Goater Signed-off-by: WANG Cong Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds --- diff --git a/include/linux/ipc_namespace.h b/include/linux/ipc_namespace.h index e408722a84c..07baa38bce3 100644 --- a/include/linux/ipc_namespace.h +++ b/include/linux/ipc_namespace.h @@ -87,7 +87,7 @@ extern int mq_init_ns(struct ipc_namespace *ns); /* default values */ #define DFLT_QUEUESMAX 256 /* max number of message queues */ #define DFLT_MSGMAX 10 /* max number of messages in each queue */ -#define HARD_MSGMAX (131072/sizeof(void *)) +#define HARD_MSGMAX (32768*sizeof(void *)/4) #define DFLT_MSGSIZEMAX 8192 /* max message size */ #else static inline int mq_init_ns(struct ipc_namespace *ns) { return 0; }