[PATCH 2.6.19-rc1-mm1] espfix Use scaling addressing mode ratherthan shifting in PER_CPU

From: Jeremy Fitzhardinge
Date: Tue Oct 10 2006 - 20:39:34 EST


Use the x86 scaling addressing mode rather than shifting to
multiplying by 4 in PER_CPU().

Signed-off-by: Jeremy Fitzhardinge <jeremy@xxxxxxxx>
Cc: Andrew Morton <akpm@xxxxxxxx>
Cc: Stas Sergeev <stsp@xxxxxxxx>
Cc: Zachary Amsden <zach@xxxxxxxxxx>
Cc: Chuck Ebbert <76306.1226@xxxxxxxxxxxxxx>
Cc: Jan Beulich <jbeulich@xxxxxxxxxx>
Cc: Andi Kleen <ak@xxxxxx>

diff -r ea4549dd86a4 include/asm-i386/percpu.h
--- a/include/asm-i386/percpu.h Tue Oct 10 16:36:02 2006 -0700
+++ b/include/asm-i386/percpu.h Tue Oct 10 16:37:59 2006 -0700
@@ -19,8 +19,7 @@
*/
#ifdef CONFIG_SMP
#define PER_CPU(var, cpu) \
- shll $2, cpu; \
- movl __per_cpu_offset(cpu), cpu; \
+ movl __per_cpu_offset(,cpu,4), cpu; \
addl $per_cpu__/**/var, cpu;
#else /* ! SMP */
#define PER_CPU(var, cpu) \


-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/