diff options
| author | Thomas Gleixner <tglx@linutronix.de> | 2010-05-10 11:59:37 +0200 | 
|---|---|---|
| committer | Thomas Gleixner <tglx@linutronix.de> | 2010-05-10 14:20:42 +0200 | 
| commit | dbb6be6d5e974c42bbecd183effaa0df69e1dd8b (patch) | |
| tree | 5735cb47e70853d057a9881dd0ce44b83e88fa63 /arch/arm/kernel/process.c | |
| parent | 6a867a395558a7f882d041783e4cdea6744ca2bf (diff) | |
| parent | b57f95a38233a2e73b679bea4a5453a1cc2a1cc9 (diff) | |
| download | olio-linux-3.10-dbb6be6d5e974c42bbecd183effaa0df69e1dd8b.tar.xz olio-linux-3.10-dbb6be6d5e974c42bbecd183effaa0df69e1dd8b.zip  | |
Merge branch 'linus' into timers/core
Reason: Further posix_cpu_timer patches depend on mainline changes
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'arch/arm/kernel/process.c')
| -rw-r--r-- | arch/arm/kernel/process.c | 9 | 
1 files changed, 4 insertions, 5 deletions
diff --git a/arch/arm/kernel/process.c b/arch/arm/kernel/process.c index ba2adefa53f..acf5e6fdb6d 100644 --- a/arch/arm/kernel/process.c +++ b/arch/arm/kernel/process.c @@ -16,7 +16,6 @@  #include <linux/mm.h>  #include <linux/stddef.h>  #include <linux/unistd.h> -#include <linux/slab.h>  #include <linux/user.h>  #include <linux/delay.h>  #include <linux/reboot.h> @@ -356,7 +355,7 @@ EXPORT_SYMBOL(dump_fpu);   * the thread function, and r3 points to the exit function.   */  extern void kernel_thread_helper(void); -asm(	".section .text\n" +asm(	".pushsection .text\n"  "	.align\n"  "	.type	kernel_thread_helper, #function\n"  "kernel_thread_helper:\n" @@ -364,11 +363,11 @@ asm(	".section .text\n"  "	mov	lr, r3\n"  "	mov	pc, r2\n"  "	.size	kernel_thread_helper, . - kernel_thread_helper\n" -"	.previous"); +"	.popsection");  #ifdef CONFIG_ARM_UNWIND  extern void kernel_thread_exit(long code); -asm(	".section .text\n" +asm(	".pushsection .text\n"  "	.align\n"  "	.type	kernel_thread_exit, #function\n"  "kernel_thread_exit:\n" @@ -378,7 +377,7 @@ asm(	".section .text\n"  "	nop\n"  "	.fnend\n"  "	.size	kernel_thread_exit, . - kernel_thread_exit\n" -"	.previous"); +"	.popsection");  #else  #define kernel_thread_exit	do_exit  #endif  |