]> git.karo-electronics.de Git - linux-beck.git/commit
EDAC, sb_edac: Fix TAD presence check for sbridge_mci_bind_devs()
authorSeth Jennings <sjenning@redhat.com>
Wed, 5 Aug 2015 18:16:01 +0000 (13:16 -0500)
committerBorislav Petkov <bp@suse.de>
Thu, 24 Sep 2015 18:40:50 +0000 (20:40 +0200)
commit2900ea609616c2651dec65312beeb2a6e536bc50
treecc58a98f96e9ac9ea302b91e4313de0a1c8ff378
parent58a9c251c9a1a2f2154e40a9fe7bb81857761b24
EDAC, sb_edac: Fix TAD presence check for sbridge_mci_bind_devs()

In commit

  7d375bffa524 ("sb_edac: Fix support for systems with two home agents per socket")

NUM_CHANNELS was changed to 8 and the channel space was renumerated to
handle EN, EP, and EX configurations.

The *_mci_bind_devs() functions - except for sbridge_mci_bind_devs() -
got a new device presence check in the form of saw_chan_mask. However,
sbridge_mci_bind_devs() still uses the NUM_CHANNELS for loop.

With the increase in NUM_CHANNELS, this loop fails at index 4 since
SB only has 4 TADs.  This results in the following error on SB machines:

  EDAC sbridge: Some needed devices are missing
  EDAC sbridge: Couldn't find mci handler
  EDAC sbridge: Couldn't find mci handle

This patch adapts the saw_chan_mask logic for sbridge_mci_bind_devs() as
well.

After this patch:

  EDAC MC0: Giving out device to module sbridge_edac.c controller Sandy Bridge Socket#0: DEV 0000:3f:0e.0 (POLLED)
  EDAC MC1: Giving out device to module sbridge_edac.c controller Sandy Bridge Socket#1: DEV 0000:7f:0e.0 (POLLED)

Signed-off-by: Seth Jennings <sjenning@redhat.com>
Acked-by: Aristeu Rozanski <aris@redhat.com>
Acked-by: Tony Luck <tony.luck@intel.com>
Tested-by: Borislav Petkov <bp@suse.de>
Cc: <stable@vger.kernel.org> # v4.2
Cc: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Cc: linux-edac <linux-edac@vger.kernel.org>
Link: http://lkml.kernel.org/r/1438798561-10180-1-git-send-email-sjenning@redhat.com
Signed-off-by: Borislav Petkov <bp@suse.de>
drivers/edac/sb_edac.c