diff options
author | Luck, Tony <tony.luck@intel.com> | 2011-03-23 19:41:43 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2011-03-23 22:46:09 -0400 |
commit | f48fea035b439fa0c75138d0a113ef409dc9caa0 (patch) | |
tree | ee9172f4661331f6b454c5eb561c0caf8ed95d96 /arch | |
parent | 968b503e69a6b90aa4a3b9162960f605b6abd821 (diff) |
ia64: fix build breakage in asm/thread_info.h
In commit 504f52b5439aaf26d3e2c1d45ec10fce38c8dd27
mm: NUMA aware alloc_task_struct_node()
Eric Dumazet forgot a "\". Add it.
Signed-off-by: Tony Luck <tony.luck@intel.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/ia64/include/asm/thread_info.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/ia64/include/asm/thread_info.h b/arch/ia64/include/asm/thread_info.h index 6392908e8f98..ff0cc84e7bcc 100644 --- a/arch/ia64/include/asm/thread_info.h +++ b/arch/ia64/include/asm/thread_info.h | |||
@@ -91,7 +91,7 @@ struct thread_info { | |||
91 | KERNEL_STACK_SIZE_ORDER); \ | 91 | KERNEL_STACK_SIZE_ORDER); \ |
92 | struct task_struct *ret = page ? page_address(page) : NULL; \ | 92 | struct task_struct *ret = page ? page_address(page) : NULL; \ |
93 | \ | 93 | \ |
94 | ret; | 94 | ret; \ |
95 | }) | 95 | }) |
96 | #define free_task_struct(tsk) free_pages((unsigned long) (tsk), KERNEL_STACK_SIZE_ORDER) | 96 | #define free_task_struct(tsk) free_pages((unsigned long) (tsk), KERNEL_STACK_SIZE_ORDER) |
97 | 97 | ||