diff options
author | Thomas Gleixner <tglx@linutronix.de> | 2012-05-05 11:05:48 -0400 |
---|---|---|
committer | Thomas Gleixner <tglx@linutronix.de> | 2012-05-08 08:08:46 -0400 |
commit | f5e10287367dcffb5504d19c83e85ca041ca2596 (patch) | |
tree | caa6684a16ed32809b328f858711758dc7b0c9bb /arch/ia64/include | |
parent | 66bb4cda55477efeb1be5c2cbd3785a69b088a8a (diff) |
task_allocator: Use config switches instead of magic defines
Replace __HAVE_ARCH_TASK_ALLOCATOR and __HAVE_ARCH_THREAD_ALLOCATOR
with proper config switches.
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Cc: Sam Ravnborg <sam@ravnborg.org>
Cc: Tony Luck <tony.luck@intel.com>
Link: http://lkml.kernel.org/r/20120505150142.371309416@linutronix.de
Diffstat (limited to 'arch/ia64/include')
-rw-r--r-- | arch/ia64/include/asm/thread_info.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/arch/ia64/include/asm/thread_info.h b/arch/ia64/include/asm/thread_info.h index e054bcc4273c..310d9734f02d 100644 --- a/arch/ia64/include/asm/thread_info.h +++ b/arch/ia64/include/asm/thread_info.h | |||
@@ -54,8 +54,6 @@ struct thread_info { | |||
54 | }, \ | 54 | }, \ |
55 | } | 55 | } |
56 | 56 | ||
57 | #define __HAVE_ARCH_THREAD_INFO_ALLOCATOR | ||
58 | |||
59 | #ifndef ASM_OFFSETS_C | 57 | #ifndef ASM_OFFSETS_C |
60 | /* how to get the thread information struct from C */ | 58 | /* how to get the thread information struct from C */ |
61 | #define current_thread_info() ((struct thread_info *) ((char *) current + IA64_TASK_SIZE)) | 59 | #define current_thread_info() ((struct thread_info *) ((char *) current + IA64_TASK_SIZE)) |
@@ -84,7 +82,6 @@ struct thread_info { | |||
84 | #endif | 82 | #endif |
85 | #define end_of_stack(p) (unsigned long *)((void *)(p) + IA64_RBS_OFFSET) | 83 | #define end_of_stack(p) (unsigned long *)((void *)(p) + IA64_RBS_OFFSET) |
86 | 84 | ||
87 | #define __HAVE_ARCH_TASK_STRUCT_ALLOCATOR | ||
88 | #define alloc_task_struct_node(node) \ | 85 | #define alloc_task_struct_node(node) \ |
89 | ({ \ | 86 | ({ \ |
90 | struct page *page = alloc_pages_node(node, GFP_KERNEL | __GFP_COMP, \ | 87 | struct page *page = alloc_pages_node(node, GFP_KERNEL | __GFP_COMP, \ |