Commit a3705799 authored by Paul Mundt's avatar Paul Mundt

sh: Use SLAB_PANIC for thread_info slab cache.

Presently this has a BUG_ON() for failure cases, as powerpc does. Switch
this over to a SLAB_PANIC instead.
Signed-off-by: default avatarPaul Mundt <lethal@linux-sh.org>
parent cbf6b1ba
...@@ -26,8 +26,7 @@ void free_thread_info(struct thread_info *ti) ...@@ -26,8 +26,7 @@ void free_thread_info(struct thread_info *ti)
void thread_info_cache_init(void) void thread_info_cache_init(void)
{ {
thread_info_cache = kmem_cache_create("thread_info", THREAD_SIZE, thread_info_cache = kmem_cache_create("thread_info", THREAD_SIZE,
THREAD_SIZE, 0, NULL); THREAD_SIZE, SLAB_PANIC, NULL);
BUG_ON(thread_info_cache == NULL);
} }
#else #else
struct thread_info *alloc_thread_info(struct task_struct *tsk) struct thread_info *alloc_thread_info(struct task_struct *tsk)
......
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