Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

Merge tag 'edac_for_3.16' of git://git.kernel.org/pub/scm/linux/kernel/git/bp/bp into next

Pull EDAC changes from Borislav Petkov:
"Just two small fixlets.

We have more in the pipe but we didn't get ready in time so more stuff
next time"

* tag 'edac_for_3.16' of git://git.kernel.org/pub/scm/linux/kernel/git/bp/bp:
EDAC: Fix MC scrub mode comparsion bug for correctable errors
EDAC, MCE, AMD: Remove leftover unused mask

+1 -3
+1 -1
drivers/edac/edac_mc.c
··· 1018 1018 } 1019 1019 edac_inc_ce_error(mci, enable_per_layer_report, pos, error_count); 1020 1020 1021 - if (mci->scrub_mode & SCRUB_SW_SRC) { 1021 + if (mci->scrub_mode == SCRUB_SW_SRC) { 1022 1022 /* 1023 1023 * Some memory controllers (called MCs below) can remap 1024 1024 * memory so that it is still available at a different
-2
drivers/edac/mce_amd.c
··· 6 6 static struct amd_decoder_ops *fam_ops; 7 7 8 8 static u8 xec_mask = 0xf; 9 - static u8 nb_err_cpumask = 0xf; 10 9 11 10 static bool report_gart_errors; 12 11 static void (*nb_bus_decoder)(int node_id, struct mce *m); ··· 851 852 break; 852 853 853 854 case 0x14: 854 - nb_err_cpumask = 0x3; 855 855 fam_ops->mc0_mce = cat_mc0_mce; 856 856 fam_ops->mc1_mce = cat_mc1_mce; 857 857 fam_ops->mc2_mce = k8_mc2_mce;