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 | 40f1f0deaff90b78b81dbba109bfa1cef241ec16 (patch) | |
| tree | d4c3ca3c4a26df585b5cd24e7ae63ac3c246f4e3 | |
| parent | 513091ba7e4a8b498632d7913ff9408ebbca6235 (diff) | |
[PATCH] parisc: task_stack_page(), task_thread_info()
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/parisc/kernel/process.c | 6 | ||||
| -rw-r--r-- | arch/parisc/kernel/smp.c | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/arch/parisc/kernel/process.c b/arch/parisc/kernel/process.c index 4eb70a40ec7e..5da41677e70b 100644 --- a/arch/parisc/kernel/process.c +++ b/arch/parisc/kernel/process.c | |||
| @@ -295,7 +295,7 @@ copy_thread(int nr, unsigned long clone_flags, unsigned long usp, | |||
| 295 | struct task_struct * p, struct pt_regs * pregs) | 295 | struct task_struct * p, struct pt_regs * pregs) |
| 296 | { | 296 | { |
| 297 | struct pt_regs * cregs = &(p->thread.regs); | 297 | struct pt_regs * cregs = &(p->thread.regs); |
| 298 | struct thread_info *ti = p->thread_info; | 298 | void *stack = task_stack_page(p); |
| 299 | 299 | ||
| 300 | /* We have to use void * instead of a function pointer, because | 300 | /* We have to use void * instead of a function pointer, because |
| 301 | * function pointers aren't a pointer to the function on 64-bit. | 301 | * function pointers aren't a pointer to the function on 64-bit. |
| @@ -322,7 +322,7 @@ copy_thread(int nr, unsigned long clone_flags, unsigned long usp, | |||
| 322 | */ | 322 | */ |
| 323 | if (usp == 1) { | 323 | if (usp == 1) { |
| 324 | /* kernel thread */ | 324 | /* kernel thread */ |
| 325 | cregs->ksp = (((unsigned long)(ti)) + THREAD_SZ_ALGN); | 325 | cregs->ksp = (unsigned long)stack + THREAD_SZ_ALGN; |
| 326 | /* Must exit via ret_from_kernel_thread in order | 326 | /* Must exit via ret_from_kernel_thread in order |
| 327 | * to call schedule_tail() | 327 | * to call schedule_tail() |
| 328 | */ | 328 | */ |
| @@ -344,7 +344,7 @@ copy_thread(int nr, unsigned long clone_flags, unsigned long usp, | |||
| 344 | */ | 344 | */ |
| 345 | 345 | ||
| 346 | /* Use same stack depth as parent */ | 346 | /* Use same stack depth as parent */ |
| 347 | cregs->ksp = ((unsigned long)(ti)) | 347 | cregs->ksp = (unsigned long)stack |
| 348 | + (pregs->gr[21] & (THREAD_SIZE - 1)); | 348 | + (pregs->gr[21] & (THREAD_SIZE - 1)); |
| 349 | cregs->gr[30] = usp; | 349 | cregs->gr[30] = usp; |
| 350 | if (p->personality == PER_HPUX) { | 350 | if (p->personality == PER_HPUX) { |
diff --git a/arch/parisc/kernel/smp.c b/arch/parisc/kernel/smp.c index 17f23c26f1ca..25564b7ca6bb 100644 --- a/arch/parisc/kernel/smp.c +++ b/arch/parisc/kernel/smp.c | |||
| @@ -517,7 +517,7 @@ int __init smp_boot_one_cpu(int cpuid) | |||
| 517 | if (IS_ERR(idle)) | 517 | if (IS_ERR(idle)) |
| 518 | panic("SMP: fork failed for CPU:%d", cpuid); | 518 | panic("SMP: fork failed for CPU:%d", cpuid); |
| 519 | 519 | ||
| 520 | idle->thread_info->cpu = cpuid; | 520 | task_thread_info(idle)->cpu = cpuid; |
| 521 | 521 | ||
| 522 | /* Let _start know what logical CPU we're booting | 522 | /* Let _start know what logical CPU we're booting |
| 523 | ** (offset into init_tasks[],cpu_data[]) | 523 | ** (offset into init_tasks[],cpu_data[]) |
