diff options
author | Alexey Dobriyan <adobriyan@sw.ru> | 2007-10-16 23:26:10 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-10-17 08:42:47 -0700 |
commit | 040b5c6f9503f2d6b35c335f8537bb3035d35547 (patch) | |
tree | 71f1693fbcaf9e2a953e66fdf13bbbc20510b60e /kernel | |
parent | c4f3b63fe15b4629aa1ec163c95ab30423d0f76a (diff) | |
download | op-kernel-dev-040b5c6f9503f2d6b35c335f8537bb3035d35547.zip op-kernel-dev-040b5c6f9503f2d6b35c335f8537bb3035d35547.tar.gz |
SLAB_PANIC more (proc, posix-timers, shmem)
These aren't modular, so SLAB_PANIC is OK.
Signed-off-by: Alexey Dobriyan <adobriyan@sw.ru>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'kernel')
-rw-r--r-- | kernel/posix-timers.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/kernel/posix-timers.c b/kernel/posix-timers.c index 57efe04..d71ed09 100644 --- a/kernel/posix-timers.c +++ b/kernel/posix-timers.c @@ -241,7 +241,8 @@ static __init int init_posix_timers(void) register_posix_clock(CLOCK_MONOTONIC, &clock_monotonic); posix_timers_cache = kmem_cache_create("posix_timers_cache", - sizeof (struct k_itimer), 0, 0, NULL); + sizeof (struct k_itimer), 0, SLAB_PANIC, + NULL); idr_init(&posix_timers_id); return 0; } |