diff options
| author | Al Viro <viro@ftp.linux.org.uk> | 2006-01-12 04:05:53 -0500 |
|---|---|---|
| committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-01-12 12:08:54 -0500 |
| commit | 097cb338c72b4916d8221278caba63d74d9f19d6 (patch) | |
| tree | 7a5abd24170e05a8c87d75da8f4a5ffa59d1c3ab | |
| parent | 6c3559fc458e3ed171d7a8bf6a6d7eaea1e7b2e5 (diff) | |
[PATCH] frv: task_thread_info(), 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>
| -rw-r--r-- | arch/frv/kernel/process.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/frv/kernel/process.c b/arch/frv/kernel/process.c index c4488379ac3b..0fff8a61ef2a 100644 --- a/arch/frv/kernel/process.c +++ b/arch/frv/kernel/process.c | |||
| @@ -204,7 +204,7 @@ int copy_thread(int nr, unsigned long clone_flags, | |||
| 204 | 204 | ||
| 205 | regs0 = __kernel_frame0_ptr; | 205 | regs0 = __kernel_frame0_ptr; |
| 206 | childregs0 = (struct pt_regs *) | 206 | childregs0 = (struct pt_regs *) |
| 207 | ((unsigned long) p->thread_info + THREAD_SIZE - USER_CONTEXT_SIZE); | 207 | (task_stack_page(p) + THREAD_SIZE - USER_CONTEXT_SIZE); |
| 208 | childregs = childregs0; | 208 | childregs = childregs0; |
| 209 | 209 | ||
| 210 | /* set up the userspace frame (the only place that the USP is stored) */ | 210 | /* set up the userspace frame (the only place that the USP is stored) */ |
| @@ -220,7 +220,7 @@ int copy_thread(int nr, unsigned long clone_flags, | |||
| 220 | *childregs = *regs; | 220 | *childregs = *regs; |
| 221 | childregs->sp = (unsigned long) childregs0; | 221 | childregs->sp = (unsigned long) childregs0; |
| 222 | childregs->next_frame = childregs0; | 222 | childregs->next_frame = childregs0; |
| 223 | childregs->gr15 = (unsigned long) p->thread_info; | 223 | childregs->gr15 = (unsigned long) task_thread_info(p); |
| 224 | childregs->gr29 = (unsigned long) p; | 224 | childregs->gr29 = (unsigned long) p; |
| 225 | } | 225 | } |
| 226 | 226 | ||
