aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuck, Tony <[email protected]>2011-03-23 16:41:43 -0700
committerLinus Torvalds <[email protected]>2011-03-23 19:46:09 -0700
commitf48fea035b439fa0c75138d0a113ef409dc9caa0 (patch)
treeee9172f4661331f6b454c5eb561c0caf8ed95d96
parent968b503e69a6b90aa4a3b9162960f605b6abd821 (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 <[email protected]> Signed-off-by: Andrew Morton <[email protected]> Signed-off-by: Linus Torvalds <[email protected]>
-rw-r--r--arch/ia64/include/asm/thread_info.h2
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 {
KERNEL_STACK_SIZE_ORDER); \
struct task_struct *ret = page ? page_address(page) : NULL; \
\
- ret;
+ ret; \
})
#define free_task_struct(tsk) free_pages((unsigned long) (tsk), KERNEL_STACK_SIZE_ORDER)