Skip to content

Commit

Permalink
Merge branch 'x86/mce' into x86/urgent
Browse files Browse the repository at this point in the history
Merge in these fixlets.

Signed-off-by: Ingo Molnar <mingo@kernel.org>
  • Loading branch information
Ingo Molnar committed May 30, 2012
2 parents fa83523 + 80f0336 commit 403e1c5
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 2 additions & 0 deletions arch/x86/include/asm/bitops.h
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@
#include <linux/compiler.h>
#include <asm/alternative.h>

#define BIT_64(n) (U64_C(1) << (n))

/*
* These have to be done with inline assembly: that way the bit-setting
* is guaranteed to be atomic. All bit operations return 0 if the bit
Expand Down
6 changes: 3 additions & 3 deletions arch/x86/kernel/cpu/mcheck/mce.c
Original file line number Diff line number Diff line change
Expand Up @@ -1458,9 +1458,9 @@ static int __cpuinit __mcheck_cpu_apply_quirks(struct cpuinfo_x86 *c)
rdmsrl(msrs[i], val);

/* CntP bit set? */
if (val & BIT(62)) {
val &= ~BIT(62);
wrmsrl(msrs[i], val);
if (val & BIT_64(62)) {
val &= ~BIT_64(62);
wrmsrl(msrs[i], val);
}
}

Expand Down
2 changes: 0 additions & 2 deletions drivers/edac/mce_amd.h
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,6 @@

#include <asm/mce.h>

#define BIT_64(n) (U64_C(1) << (n))

#define EC(x) ((x) & 0xffff)
#define XEC(x, mask) (((x) >> 16) & mask)

Expand Down

0 comments on commit 403e1c5

Please sign in to comment.