diff options
author | Al Viro <viro@ftp.linux.org.uk> | 2006-01-12 04:05:55 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-01-12 12:08:55 -0500 |
commit | 68f8b1f8f113fcbc8d8e835f174b97cdaf96af20 (patch) | |
tree | 0064610b7aefea6f3740dd88d7a27d10514a61f3 /arch | |
parent | 40f1f0deaff90b78b81dbba109bfa1cef241ec16 (diff) |
[PATCH] h8300: 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')
-rw-r--r-- | arch/h8300/kernel/process.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/h8300/kernel/process.c b/arch/h8300/kernel/process.c index 585ed5efd0f7..ed79ae20e88d 100644 --- a/arch/h8300/kernel/process.c +++ b/arch/h8300/kernel/process.c | |||
@@ -195,7 +195,7 @@ int copy_thread(int nr, unsigned long clone_flags, | |||
195 | { | 195 | { |
196 | struct pt_regs * childregs; | 196 | struct pt_regs * childregs; |
197 | 197 | ||
198 | childregs = ((struct pt_regs *) (THREAD_SIZE + (unsigned long) p->thread_info)) - 1; | 198 | childregs = (struct pt_regs *) (THREAD_SIZE + task_stack_page(p)) - 1; |
199 | 199 | ||
200 | *childregs = *regs; | 200 | *childregs = *regs; |
201 | childregs->retpc = (unsigned long) ret_from_fork; | 201 | childregs->retpc = (unsigned long) ret_from_fork; |