Skip to content

Commit 65c4cbe

Browse files
committed
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 parents b49a519 + c4fc195 commit 65c4cbe

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

drivers/edac/i7core_edac.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1866,7 +1866,7 @@ static int i7core_mce_check_error(struct notifier_block *nb, unsigned long val,
18661866

18671867
i7_dev = get_i7core_dev(mce->socketid);
18681868
if (!i7_dev)
1869-
return NOTIFY_BAD;
1869+
return NOTIFY_DONE;
18701870

18711871
mci = i7_dev->mci;
18721872
pvt = mci->pvt_info;

drivers/edac/sb_edac.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3168,7 +3168,7 @@ static int sbridge_mce_check_error(struct notifier_block *nb, unsigned long val,
31683168

31693169
mci = get_mci_for_node_id(mce->socketid);
31703170
if (!mci)
3171-
return NOTIFY_BAD;
3171+
return NOTIFY_DONE;
31723172
pvt = mci->pvt_info;
31733173

31743174
/*

0 commit comments

Comments
 (0)