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

Configure Feed

Select the types of activity you want to include in your feed.

Merge tag 'edac_fix_for_4.6' of git://git.kernel.org/pub/scm/linux/kernel/git/bp/bp

Pull EDAC fix from Borislav Petkov:
"Make sure sb_edac and i7core_edac do not terminate MCE processing on
the decoding callchain prematurely"

* tag 'edac_fix_for_4.6' of git://git.kernel.org/pub/scm/linux/kernel/git/bp/bp:
EDAC: i7core, sb_edac: Don't return NOTIFY_BAD from mce_decoder callback

+2 -2
+1 -1
drivers/edac/i7core_edac.c
··· 1866 1866 1867 1867 i7_dev = get_i7core_dev(mce->socketid); 1868 1868 if (!i7_dev) 1869 - return NOTIFY_BAD; 1869 + return NOTIFY_DONE; 1870 1870 1871 1871 mci = i7_dev->mci; 1872 1872 pvt = mci->pvt_info;
+1 -1
drivers/edac/sb_edac.c
··· 3168 3168 3169 3169 mci = get_mci_for_node_id(mce->socketid); 3170 3170 if (!mci) 3171 - return NOTIFY_BAD; 3171 + return NOTIFY_DONE; 3172 3172 pvt = mci->pvt_info; 3173 3173 3174 3174 /*