summaryrefslogtreecommitdiffstats
path: root/arch/x86_64/kernel/smpboot.c
diff options
context:
space:
mode:
authorEric W. Biederman2005-08-12 06:26:25 +0200
committerLinus Torvalds2005-08-12 18:22:04 +0200
commit349188f66da2fd88f8cb2407763051d8e136c9aa (patch)
treed14fad61cfc65cd4fc2ee74e8f5753500379c8b6 /arch/x86_64/kernel/smpboot.c
parent[PATCH] Fix DVB URL (diff)
downloadkernel-qcow2-linux-349188f66da2fd88f8cb2407763051d8e136c9aa.tar.gz
kernel-qcow2-linux-349188f66da2fd88f8cb2407763051d8e136c9aa.tar.xz
kernel-qcow2-linux-349188f66da2fd88f8cb2407763051d8e136c9aa.zip
[PATCH] x86_64: Fix apicid versus cpu# confusion.
Oops. I knew I didn't have the physical versus logical cpu identifiers right when I generated that patch. It's not nearly as bad as I feared at the time though. Signed-off-by: Eric W. Biederman <ebiederm@xmission.com> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'arch/x86_64/kernel/smpboot.c')
-rw-r--r--arch/x86_64/kernel/smpboot.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86_64/kernel/smpboot.c b/arch/x86_64/kernel/smpboot.c
index 6e4807d64d46..b15761ff4101 100644
--- a/arch/x86_64/kernel/smpboot.c
+++ b/arch/x86_64/kernel/smpboot.c
@@ -334,7 +334,7 @@ static void __cpuinit tsc_sync_wait(void)
{
if (notscsync || !cpu_has_tsc)
return;
- sync_tsc(boot_cpu_id);
+ sync_tsc(0);
}
static __init int notscsync_setup(char *s)