linux-mm.kvack.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] ipc,shm: increase default size for shmmax
@ 2014-03-31  3:06 Davidlohr Bueso
  2014-03-31 21:32 ` Andrew Morton
  0 siblings, 1 reply; 57+ messages in thread
From: Davidlohr Bueso @ 2014-03-31  3:06 UTC (permalink / raw)
  To: Andrew Morton
  Cc: Manfred Spraul, Davidlohr Bueso, aswin, linux-kernel, linux-mm

From: Davidlohr Bueso <davidlohr@hp.com>

The default size is, and always has been, 32Mb. Today, in the
XXI century, it seems that this value is rather small, making
users have to increase it via sysctl, which can cause unnecessary
work and userspace application workarounds[1]. I have arbitrarily
chosen a 4x increase, leaving it at 128Mb, and naturally, the
same goes for shmall. While it may make more sense to set the value
based on the system memory, this limit must be the same across all
systems, and left to users to change if needed.

[1]: http://rhaas.blogspot.com/2012/06/absurd-shared-memory-limits.html

Signed-off-by: Davidlohr Bueso <davidlohr@hp.com>
---
 include/uapi/linux/shm.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/include/uapi/linux/shm.h b/include/uapi/linux/shm.h
index 78b6941..754b605 100644
--- a/include/uapi/linux/shm.h
+++ b/include/uapi/linux/shm.h
@@ -12,7 +12,7 @@
  * be increased by sysctl
  */
 
-#define SHMMAX 0x2000000		 /* max shared seg size (bytes) */
+#define SHMMAX 0x8000000		 /* max shared seg size (bytes) */
 #define SHMMIN 1			 /* min shared seg size (bytes) */
 #define SHMMNI 4096			 /* max num of segs system wide */
 #ifndef __KERNEL__
-- 
1.8.1.4



--
To unsubscribe, send a message with 'unsubscribe linux-mm' in
the body to majordomo@kvack.org.  For more info on Linux MM,
see: http://www.linux-mm.org/ .
Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a>

^ permalink raw reply	[flat|nested] 57+ messages in thread

end of thread, other threads:[~2014-04-17 20:19 UTC | newest]

Thread overview: 57+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-03-31  3:06 [PATCH] ipc,shm: increase default size for shmmax Davidlohr Bueso
2014-03-31 21:32 ` Andrew Morton
2014-03-31 22:59   ` Davidlohr Bueso
2014-03-31 23:13     ` Andrew Morton
2014-03-31 23:25       ` Davidlohr Bueso
2014-04-01  0:05         ` Andrew Morton
2014-04-01  6:29           ` Kamezawa Hiroyuki
2014-04-01 19:19             ` Andrew Morton
2014-04-01 20:15               ` KOSAKI Motohiro
2014-04-01 20:26                 ` Davidlohr Bueso
2014-04-02  0:11                 ` Kamezawa Hiroyuki
2014-04-02  1:02               ` Kamezawa Hiroyuki
2014-04-02 14:55               ` One Thousand Gnomes
2014-04-02 23:47                 ` Kamezawa Hiroyuki
2014-04-01 17:01           ` Davidlohr Bueso
2014-04-01 18:10             ` KOSAKI Motohiro
2014-04-01 18:31               ` Davidlohr Bueso
2014-04-01 19:51                 ` KOSAKI Motohiro
2014-04-01 21:01                   ` Davidlohr Bueso
2014-04-01 21:12                     ` KOSAKI Motohiro
2014-04-01 21:29                       ` Andrew Morton
2014-04-01 21:41                         ` KOSAKI Motohiro
2014-04-01 21:48                           ` Andrew Morton
2014-04-01 22:02                             ` Davidlohr Bueso
2014-04-01 22:08                               ` Andrew Morton
2014-04-13 18:05                                 ` Manfred Spraul
2014-04-13 23:15                                   ` Davidlohr Bueso
2014-04-16 22:46                                   ` Andrew Morton
2014-04-16 23:19                                     ` Davidlohr Bueso
2014-04-17 10:41                                     ` Michael Kerrisk
2014-04-17 16:41                                       ` Manfred Spraul
2014-04-17 20:19                                         ` Michael Kerrisk (man-pages)
2014-04-01 22:49                             ` KOSAKI Motohiro
2014-04-01 23:28                               ` Davidlohr Bueso
2014-04-01 23:56                                 ` KOSAKI Motohiro
2014-04-02  0:40                                   ` Davidlohr Bueso
2014-04-02  1:08                                     ` Greg Thelen
2014-04-02  1:58                                       ` Kamezawa Hiroyuki
2014-04-02  2:11                                         ` Greg Thelen
2014-04-03  0:20                                   ` [PATCH] ipc,shm: disable shmmax and shmall by default Davidlohr Bueso
2014-04-03 14:07                                     ` Kamezawa Hiroyuki
2014-04-03 19:02                                     ` Manfred Spraul
2014-04-03 19:50                                       ` Davidlohr Bueso
2014-04-03 23:39                                         ` KOSAKI Motohiro
2014-04-04  5:00                                           ` Davidlohr Bueso
2014-04-05 18:24                                             ` KOSAKI Motohiro
2014-04-06  6:42                                               ` Manfred Spraul
2014-04-06 16:54                                                 ` Davidlohr Bueso
2014-04-03 22:29                                     ` KOSAKI Motohiro
2014-04-03 23:47                                     ` KOSAKI Motohiro
2014-04-11 18:28                                     ` Manfred Spraul
2014-04-11 20:27                                       ` Davidlohr Bueso
2014-04-11 20:48                                         ` Davidlohr Bueso
2014-04-12  8:50                                         ` Manfred Spraul
2014-04-12 15:33                                           ` Davidlohr Bueso
2014-04-01 21:43                       ` [PATCH] ipc,shm: increase default size for shmmax Davidlohr Bueso
2014-04-01 19:26             ` Andrew Morton

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox