diff options
author | Brian Gerst <brgerst@gmail.com> | 2009-12-09 12:34:41 -0500 |
---|---|---|
committer | H. Peter Anvin <hpa@zytor.com> | 2009-12-10 18:55:30 -0500 |
commit | fa4b8f84383ae197e643a46c36bf58ab8dffc95c (patch) | |
tree | f114c29d8ca381f20c0c8d0ba854f3c16bb8b834 /arch | |
parent | 3bd95dfb182969dc6d2a317c150e0df7107608d3 (diff) |
x86, 64-bit: Use user_mode() to determine new stack pointer in copy_thread()
Use user_mode() instead of a magic value for sp to determine when returning
to kernel mode.
Signed-off-by: Brian Gerst <brgerst@gmail.com>
LKML-Reference: <1260380084-3707-3-git-send-email-brgerst@gmail.com>
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/x86/kernel/process_64.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/arch/x86/kernel/process_64.c b/arch/x86/kernel/process_64.c index 92484c2130c6..00ac66fa5c6b 100644 --- a/arch/x86/kernel/process_64.c +++ b/arch/x86/kernel/process_64.c | |||
@@ -254,7 +254,7 @@ int kernel_thread(int (*fn)(void *), void *arg, unsigned long flags) | |||
254 | regs.flags = X86_EFLAGS_IF; | 254 | regs.flags = X86_EFLAGS_IF; |
255 | 255 | ||
256 | /* Ok, create the new process.. */ | 256 | /* Ok, create the new process.. */ |
257 | return do_fork(flags | CLONE_VM | CLONE_UNTRACED, ~0UL, ®s, 0, NULL, NULL); | 257 | return do_fork(flags | CLONE_VM | CLONE_UNTRACED, 0, ®s, 0, NULL, NULL); |
258 | } | 258 | } |
259 | EXPORT_SYMBOL(kernel_thread); | 259 | EXPORT_SYMBOL(kernel_thread); |
260 | 260 | ||
@@ -312,8 +312,9 @@ int copy_thread(unsigned long clone_flags, unsigned long sp, | |||
312 | *childregs = *regs; | 312 | *childregs = *regs; |
313 | 313 | ||
314 | childregs->ax = 0; | 314 | childregs->ax = 0; |
315 | childregs->sp = sp; | 315 | if (user_mode(regs)) |
316 | if (sp == ~0UL) | 316 | childregs->sp = sp; |
317 | else | ||
317 | childregs->sp = (unsigned long)childregs; | 318 | childregs->sp = (unsigned long)childregs; |
318 | 319 | ||
319 | p->thread.sp = (unsigned long) childregs; | 320 | p->thread.sp = (unsigned long) childregs; |