x86, MCE, AMD: Drop software-defined bank in error thresholding
authorBorislav Petkov <bp@suse.de>
Tue, 21 Oct 2014 20:19:59 +0000 (22:19 +0200)
committerBorislav Petkov <bp@suse.de>
Tue, 21 Oct 2014 20:28:48 +0000 (22:28 +0200)
Aravind had the good question about why we're assigning a
software-defined bank when reporting error thresholding errors instead
of simply using the bank which reports the last error causing the
overflow.

Digging through git history, it pointed to

95268664390b ("[PATCH] x86_64: mce_amd support for family 0x10 processors")

which added that functionality. The problem with this, however, is that
tools don't know about software-defined banks and get puzzled. So drop
that K8_MCE_THRESHOLD_BASE and simply use the hw bank reporting the
thresholding interrupt.

Save us a couple of MSR reads while at it.

Reported-by: Aravind Gopalakrishnan <aravind.gopalakrishnan@amd.com>
Link: https://lkml.kernel.org/r/5435B206.60402@amd.com
Signed-off-by: Borislav Petkov <bp@suse.de>
arch/x86/include/asm/mce.h
arch/x86/kernel/cpu/mcheck/mce_amd.c

index 958b90f761e5eb75c3953ff30d443318456b19a7..276392f121fb98f95dd88cce1730006d77e101f3 100644 (file)
@@ -78,7 +78,6 @@
 /* Software defined banks */
 #define MCE_EXTENDED_BANK      128
 #define MCE_THERMAL_BANK       (MCE_EXTENDED_BANK + 0)
-#define K8_MCE_THRESHOLD_BASE   (MCE_EXTENDED_BANK + 1)
 
 #define MCE_LOG_LEN 32
 #define MCE_LOG_SIGNATURE      "MACHINECHECK"
index 9af7bd74828b746b40d33ff7cafc71bf3e91b98e..6606523ff1c143ee3fd2726a505a63061b14eb65 100644 (file)
@@ -318,10 +318,9 @@ static void amd_threshold_interrupt(void)
 
 log:
        mce_setup(&m);
-       rdmsrl(MSR_IA32_MCG_STATUS, m.mcgstatus);
-       rdmsrl(address, m.misc);
        rdmsrl(MSR_IA32_MCx_STATUS(bank), m.status);
-       m.bank = K8_MCE_THRESHOLD_BASE + bank * NR_BLOCKS + block;
+       m.misc = ((u64)high << 32) | low;
+       m.bank = bank;
        mce_log(&m);
 
        wrmsrl(MSR_IA32_MCx_STATUS(bank), 0);
This page took 0.037947 seconds and 5 git commands to generate.