diff options
author | Len Brown <len.brown@intel.com> | 2011-04-01 16:59:53 -0400 |
---|---|---|
committer | Len Brown <len.brown@intel.com> | 2011-05-29 03:38:57 -0400 |
commit | 02c68a02018669d1817c43c42de800975cbec467 (patch) | |
tree | 9e02b7913f650492fcdbb78cd6e8d3ff3160e43c /arch/x86/kernel/cpu | |
parent | 333c5ae9948194428fe6c5ef5c088304fc98263b (diff) | |
download | blackbird-op-linux-02c68a02018669d1817c43c42de800975cbec467.tar.gz blackbird-op-linux-02c68a02018669d1817c43c42de800975cbec467.zip |
x86 idle: clarify AMD erratum 400 workaround
The workaround for AMD erratum 400 uses the term "c1e" falsely suggesting:
1. Intel C1E is somehow involved
2. All AMD processors with C1E are involved
Use the string "amd_c1e" instead of simply "c1e" to clarify that
this workaround is specific to AMD's version of C1E.
Use the string "e400" to clarify that the workaround is specific
to AMD processors with Erratum 400.
This patch is text-substitution only, with no functional change.
cc: x86@kernel.org
Acked-by: Borislav Petkov <borislav.petkov@amd.com>
Signed-off-by: Len Brown <len.brown@intel.com>
Diffstat (limited to 'arch/x86/kernel/cpu')
-rw-r--r-- | arch/x86/kernel/cpu/common.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/kernel/cpu/common.c b/arch/x86/kernel/cpu/common.c index 1d59834396bd..745a602f204f 100644 --- a/arch/x86/kernel/cpu/common.c +++ b/arch/x86/kernel/cpu/common.c @@ -887,7 +887,7 @@ static void vgetcpu_set_mode(void) void __init identify_boot_cpu(void) { identify_cpu(&boot_cpu_data); - init_c1e_mask(); + init_amd_e400_c1e_mask(); #ifdef CONFIG_X86_32 sysenter_setup(); enable_sep_cpu(); |