diff options
Diffstat (limited to 'arch/frv')
-rw-r--r-- | arch/frv/include/asm/thread_info.h | 13 |
1 files changed, 4 insertions, 9 deletions
diff --git a/arch/frv/include/asm/thread_info.h b/arch/frv/include/asm/thread_info.h index 11f33ead29bf..8582e9c7531c 100644 --- a/arch/frv/include/asm/thread_info.h +++ b/arch/frv/include/asm/thread_info.h | |||
@@ -84,16 +84,11 @@ register struct thread_info *__current_thread_info asm("gr15"); | |||
84 | 84 | ||
85 | /* thread information allocation */ | 85 | /* thread information allocation */ |
86 | #ifdef CONFIG_DEBUG_STACK_USAGE | 86 | #ifdef CONFIG_DEBUG_STACK_USAGE |
87 | #define alloc_thread_info(tsk) \ | 87 | #define alloc_thread_info_node(tsk, node) \ |
88 | ({ \ | 88 | kzalloc_node(THREAD_SIZE, GFP_KERNEL, node) |
89 | struct thread_info *ret; \ | ||
90 | \ | ||
91 | ret = kzalloc(THREAD_SIZE, GFP_KERNEL); \ | ||
92 | \ | ||
93 | ret; \ | ||
94 | }) | ||
95 | #else | 89 | #else |
96 | #define alloc_thread_info(tsk) kmalloc(THREAD_SIZE, GFP_KERNEL) | 90 | #define alloc_thread_info_node(tsk) \ |
91 | kmalloc_node(THREAD_SIZE, GFP_KERNEL, node) | ||
97 | #endif | 92 | #endif |
98 | 93 | ||
99 | #define free_thread_info(info) kfree(info) | 94 | #define free_thread_info(info) kfree(info) |