Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 99480
b: refs/heads/master
c: 2d144e6
h: refs/heads/master
v: v3
  • Loading branch information
Venki Pallipadi authored and Ingo Molnar committed Jul 3, 2008
1 parent 0c4f9f2 commit c3b8a98
Show file tree
Hide file tree
Showing 2 changed files with 6 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: a8cac817764a494705aebd99fd51bdf6cdc28ec9
refs/heads/master: 2d144e63098be47c21ad59d68a4fd17bd73a3aaf
6 changes: 5 additions & 1 deletion trunk/arch/x86/kernel/cpu/mcheck/mce_64.c
Original file line number Diff line number Diff line change
Expand Up @@ -463,7 +463,11 @@ static void mce_init(void *dummy)
wrmsr(MSR_IA32_MCG_CTL, 0xffffffff, 0xffffffff);

for (i = 0; i < banks; i++) {
wrmsrl(MSR_IA32_MC0_CTL+4*i, ~0UL);
if (i < NR_SYSFS_BANKS)
wrmsrl(MSR_IA32_MC0_CTL+4*i, bank[i]);
else
wrmsrl(MSR_IA32_MC0_CTL+4*i, ~0UL);

wrmsrl(MSR_IA32_MC0_STATUS+4*i, 0);
}
}
Expand Down

0 comments on commit c3b8a98

Please sign in to comment.