Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 200053
b: refs/heads/master
c: 6c6aa3a
h: refs/heads/master
i:
  200051: 1ca90bf
v: v3
  • Loading branch information
Mauro Carvalho Chehab committed May 10, 2010
1 parent b8ed3d0 commit 5a2ecfe
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: f47429494fd50c0b7396fe3f8a26ea638b47c5ba
refs/heads/master: 6c6aa3afdba2460cb668d4cb65c74dfa8eb43449
7 changes: 6 additions & 1 deletion trunk/drivers/edac/i7core_edac.c
Original file line number Diff line number Diff line change
Expand Up @@ -1681,8 +1681,13 @@ static int i7core_mce_check_error(void *priv, struct mce *mce)
return 0;

/* Only handle if it is the right mc controller */
if (cpu_data(mce->cpu).phys_proc_id != pvt->i7core_dev->socket)
if (cpu_data(mce->cpu).phys_proc_id != pvt->i7core_dev->socket) {
debugf0("mc%d: ignoring mce log for socket %d. "
"Another mc should get it.\n",
pvt->i7core_dev->socket,
cpu_data(mce->cpu).phys_proc_id);
return 0;
}

spin_lock_irqsave(&pvt->mce_lock, flags);
if (pvt->mce_count < MCE_LOG_LEN) {
Expand Down

0 comments on commit 5a2ecfe

Please sign in to comment.