浏览代码

EDAC: i7core, sb_edac: Don't return NOTIFY_BAD from mce_decoder callback

Both of these drivers can return NOTIFY_BAD, but this terminates
processing other callbacks that were registered later on the chain.
Since the driver did nothing to log the error it seems wrong to prevent
other interested parties from seeing it. E.g. neither of them had even
bothered to check the type of the error to see if it was a memory error
before the return NOTIFY_BAD.

Signed-off-by: Tony Luck <tony.luck@intel.com>
Acked-by: Aristeu Rozanski <aris@redhat.com>
Acked-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Cc: linux-edac <linux-edac@vger.kernel.org>
Cc: <stable@vger.kernel.org>
Link: http://lkml.kernel.org/r/72937355dd92318d2630979666063f8a2853495b.1461864507.git.tony.luck@intel.com
Signed-off-by: Borislav Petkov <bp@suse.de>
Tony Luck 9 年之前
父节点
当前提交
c4fc1956fa
共有 2 个文件被更改,包括 2 次插入2 次删除
  1. 1 1
      drivers/edac/i7core_edac.c
  2. 1 1
      drivers/edac/sb_edac.c

+ 1 - 1
drivers/edac/i7core_edac.c

@@ -1866,7 +1866,7 @@ static int i7core_mce_check_error(struct notifier_block *nb, unsigned long val,
 
 
 	i7_dev = get_i7core_dev(mce->socketid);
 	i7_dev = get_i7core_dev(mce->socketid);
 	if (!i7_dev)
 	if (!i7_dev)
-		return NOTIFY_BAD;
+		return NOTIFY_DONE;
 
 
 	mci = i7_dev->mci;
 	mci = i7_dev->mci;
 	pvt = mci->pvt_info;
 	pvt = mci->pvt_info;

+ 1 - 1
drivers/edac/sb_edac.c

@@ -3168,7 +3168,7 @@ static int sbridge_mce_check_error(struct notifier_block *nb, unsigned long val,
 
 
 	mci = get_mci_for_node_id(mce->socketid);
 	mci = get_mci_for_node_id(mce->socketid);
 	if (!mci)
 	if (!mci)
-		return NOTIFY_BAD;
+		return NOTIFY_DONE;
 	pvt = mci->pvt_info;
 	pvt = mci->pvt_info;
 
 
 	/*
 	/*