diff options
author | Al Viro <viro@ftp.linux.org.uk> | 2006-01-12 12:05:52 +0300 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-01-12 20:08:54 +0300 |
commit | 6c3559fc458e3ed171d7a8bf6a6d7eaea1e7b2e5 (patch) | |
tree | e6c68721887f4f6fbc5aa0c2e6629f30f73f74b2 /arch/m32r/kernel/smpboot.c | |
parent | b7f6961d83d480c8636543d1d0dbb9584b878a68 (diff) | |
download | linux-6c3559fc458e3ed171d7a8bf6a6d7eaea1e7b2e5.tar.xz |
[PATCH] m32r: task_pt_regs(), 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>
Diffstat (limited to 'arch/m32r/kernel/smpboot.c')
-rw-r--r-- | arch/m32r/kernel/smpboot.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/m32r/kernel/smpboot.c b/arch/m32r/kernel/smpboot.c index b90c54169fa5..d7ec16e7fb25 100644 --- a/arch/m32r/kernel/smpboot.c +++ b/arch/m32r/kernel/smpboot.c @@ -286,7 +286,7 @@ static void __init do_boot_cpu(int phys_id) /* So we see what's up */ printk("Booting processor %d/%d\n", phys_id, cpu_id); stack_start.spi = (void *)idle->thread.sp; - idle->thread_info->cpu = cpu_id; + task_thread_info(idle)->cpu = cpu_id; /* * Send Startup IPI |