]> bbs.cooldavid.org Git - net-next-2.6.git/commitdiff
x86, cpu: Use AMD errata checking framework for erratum 383
authorHans Rosenfeld <hans.rosenfeld@amd.com>
Wed, 28 Jul 2010 17:09:32 +0000 (19:09 +0200)
committerH. Peter Anvin <hpa@linux.intel.com>
Wed, 28 Jul 2010 20:12:31 +0000 (13:12 -0700)
Use the AMD errata checking framework instead of open-coding the test.

Signed-off-by: Hans Rosenfeld <hans.rosenfeld@amd.com>
LKML-Reference: <1280336972-865982-3-git-send-email-hans.rosenfeld@amd.com>
Signed-off-by: H. Peter Anvin <hpa@linux.intel.com>
arch/x86/include/asm/processor.h
arch/x86/kernel/cpu/amd.c
arch/x86/kvm/svm.c

index eebdc1fde3d128b3200a091fcb495704dbc39edb..d85637bb950525738cdad3c7e06d1e5f4eca4269 100644 (file)
@@ -1029,6 +1029,7 @@ unsigned long calc_aperfmperf_ratio(struct aperfmperf *old,
  * AMD errata checking
  */
 #ifdef CONFIG_CPU_SUP_AMD
+extern const int amd_erratum_383[];
 extern const int amd_erratum_400[];
 extern bool cpu_has_amd_erratum(const int *);
 
index a62a4ae7a11ae532c524e0ad459920ce8d625ebd..30f30dcbdb82f41cb3c16ef1aaffb8b04d06b226 100644 (file)
@@ -632,6 +632,8 @@ const int amd_erratum_400[] =
        AMD_OSVW_ERRATUM(1, AMD_MODEL_RANGE(0xf, 0x41, 0x2, 0xff, 0xf),
                            AMD_MODEL_RANGE(0x10, 0x2, 0x1, 0xff, 0xf));
 
+const int amd_erratum_383[] =
+       AMD_OSVW_ERRATUM(3, AMD_MODEL_RANGE(0x10, 0, 0, 0xff, 0xf));
 
 bool cpu_has_amd_erratum(const int *erratum)
 {
index ce438e0fdd268f394995d604070b8b2aad783e4d..03b534b34ee9ec9c66173ac7208213d73d5a37d1 100644 (file)
@@ -383,8 +383,7 @@ static void svm_init_erratum_383(void)
        int err;
        u64 val;
 
-       /* Only Fam10h is affected */
-       if (boot_cpu_data.x86 != 0x10)
+       if (!cpu_has_amd_erratum(amd_erratum_383))
                return;
 
        /* Use _safe variants to not break nested virtualization */