diff options
author | Paul Mackerras <paulus@samba.org> | 2006-03-03 21:31:25 +1100 |
---|---|---|
committer | Paul Mackerras <paulus@samba.org> | 2006-03-03 21:31:25 +1100 |
commit | 0c2aca88bdac4254a13466fb108733d243a118b6 (patch) | |
tree | 037912efdde6c0341ea114cca0fc58e8ad68e5c4 /arch | |
parent | 76a0ee3d1633b035f4090ab591445ae7b087f129 (diff) | |
download | linux-3.10-0c2aca88bdac4254a13466fb108733d243a118b6.tar.gz linux-3.10-0c2aca88bdac4254a13466fb108733d243a118b6.tar.bz2 linux-3.10-0c2aca88bdac4254a13466fb108733d243a118b6.zip |
powerpc32: Fix timebase synchronization on 32-bit powermacs
The variable `timebase' used to transfer the current timebase value
from one cpu to the other in smp_core99_give/take_timebase was only
an unsigned long, i.e. 32 bits on 32-bit machines. It needs to be
64 bits. This makes it a u64, and fixes the issue reported by Kyle
Moffett, that the two cpus see wildly different values for the time
of day.
Signed-off-by: Paul Mackerras <paulus@samba.org>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/powerpc/platforms/powermac/smp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/powerpc/platforms/powermac/smp.c b/arch/powerpc/platforms/powermac/smp.c index 0df2cdcd805..6d64a9bf347 100644 --- a/arch/powerpc/platforms/powermac/smp.c +++ b/arch/powerpc/platforms/powermac/smp.c @@ -435,7 +435,7 @@ struct smp_ops_t psurge_smp_ops = { */ static void (*pmac_tb_freeze)(int freeze); -static unsigned long timebase; +static u64 timebase; static int tb_req; static void smp_core99_give_timebase(void) |