Commit 731184f5 authored by Matt Mackall's avatar Matt Mackall Committed by Linus Torvalds

[PATCH] base-small: shrink futex queues

CONFIG_BASE_SMALL reduce futex hash table
Signed-off-by: default avatarMatt Mackall <mpm@selenic.com>
Signed-off-by: default avatarAndrew Morton <akpm@osdl.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent c4c62e94
...@@ -40,7 +40,7 @@ ...@@ -40,7 +40,7 @@
#include <linux/pagemap.h> #include <linux/pagemap.h>
#include <linux/syscalls.h> #include <linux/syscalls.h>
#define FUTEX_HASHBITS 8 #define FUTEX_HASHBITS (CONFIG_BASE_SMALL ? 4 : 8)
/* /*
* Futexes are matched on equal values of this key. * Futexes are matched on equal values of this key.
......
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