diff options
author | H. Peter Anvin <hpa@zytor.com> | 2010-03-01 14:49:23 -0500 |
---|---|---|
committer | H. Peter Anvin <hpa@zytor.com> | 2010-03-01 14:51:56 -0500 |
commit | a5c9161f27c3e1ae6c0094d262f03a7e98262181 (patch) | |
tree | 484be5657daf938e76dc61126fc96f9dcfdf8d15 | |
parent | f3e83131469e29032a700217aa394996107b8fc5 (diff) |
x86, atomic64: In selftest, distinguish x86-64 from 586+
The x86-64 implementation of the atomics is totally different from the
i586+ implementation, which makes it quite confusing to call it
"586+". Also fix indentation, and add "i" for "i386" and "i586" as
used elsewhere in the kernel.
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
Cc: Luca Barbieri <luca@luca-barbieri.com>
LKML-Reference: <1267005265-27958-4-git-send-email-luca@luca-barbieri.com>
-rw-r--r-- | lib/atomic64_test.c | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/lib/atomic64_test.c b/lib/atomic64_test.c index f7bb706c9c3a..65e482caf5e9 100644 --- a/lib/atomic64_test.c +++ b/lib/atomic64_test.c | |||
@@ -144,14 +144,16 @@ static __init int test_atomic64(void) | |||
144 | BUG_ON(v.counter != r); | 144 | BUG_ON(v.counter != r); |
145 | 145 | ||
146 | #ifdef CONFIG_X86 | 146 | #ifdef CONFIG_X86 |
147 | printk(KERN_INFO "atomic64 test passed for %s+ platform %s CX8 and %s SSE\n", | 147 | printk(KERN_INFO "atomic64 test passed for %s platform %s CX8 and %s SSE\n", |
148 | #ifdef CONFIG_X86_CMPXCHG64 | 148 | #ifdef CONFIG_X86_64 |
149 | "586", | 149 | "x86-64", |
150 | #elif defined(CONFIG_X86_CMPXCHG64) | ||
151 | "i586+", | ||
150 | #else | 152 | #else |
151 | "386", | 153 | "i386+", |
152 | #endif | 154 | #endif |
153 | boot_cpu_has(X86_FEATURE_CX8) ? "with" : "without", | 155 | boot_cpu_has(X86_FEATURE_CX8) ? "with" : "without", |
154 | boot_cpu_has(X86_FEATURE_XMM) ? "with" : "without"); | 156 | boot_cpu_has(X86_FEATURE_XMM) ? "with" : "without"); |
155 | #else | 157 | #else |
156 | printk(KERN_INFO "atomic64 test passed\n"); | 158 | printk(KERN_INFO "atomic64 test passed\n"); |
157 | #endif | 159 | #endif |