diff options
author | Al Viro <viro@ftp.linux.org.uk> | 2006-01-12 04:06:01 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-01-12 12:08:57 -0500 |
commit | ee8c1dd44305cca9d0ded248de991f67b55ec622 (patch) | |
tree | 59d5e3b0cfa58390f793223eb8b3a779fc61c2d6 /arch/sh64/kernel | |
parent | 7fdf0d7a2012e560fee738bfd7f2af26faeb3a39 (diff) |
[PATCH] sh64: task_stack_page()
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'arch/sh64/kernel')
-rw-r--r-- | arch/sh64/kernel/process.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/sh64/kernel/process.c b/arch/sh64/kernel/process.c index 419b5a710441..1da9c61d6823 100644 --- a/arch/sh64/kernel/process.c +++ b/arch/sh64/kernel/process.c | |||
@@ -744,7 +744,7 @@ int copy_thread(int nr, unsigned long clone_flags, unsigned long usp, | |||
744 | } | 744 | } |
745 | #endif | 745 | #endif |
746 | /* Copy from sh version */ | 746 | /* Copy from sh version */ |
747 | childregs = ((struct pt_regs *)(THREAD_SIZE + (unsigned long) p->thread_info )) - 1; | 747 | childregs = (struct pt_regs *)(THREAD_SIZE + task_stack_page(p)) - 1; |
748 | 748 | ||
749 | *childregs = *regs; | 749 | *childregs = *regs; |
750 | 750 | ||
@@ -752,7 +752,7 @@ int copy_thread(int nr, unsigned long clone_flags, unsigned long usp, | |||
752 | childregs->regs[15] = usp; | 752 | childregs->regs[15] = usp; |
753 | p->thread.uregs = childregs; | 753 | p->thread.uregs = childregs; |
754 | } else { | 754 | } else { |
755 | childregs->regs[15] = (unsigned long)p->thread_info + THREAD_SIZE; | 755 | childregs->regs[15] = (unsigned long)task_stack_page(p) + THREAD_SIZE; |
756 | } | 756 | } |
757 | 757 | ||
758 | childregs->regs[9] = 0; /* Set return value for child */ | 758 | childregs->regs[9] = 0; /* Set return value for child */ |