diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2009-05-02 23:38:30 (GMT) |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2009-05-02 23:38:30 (GMT) |
commit | bb402c4fb5bba4edf5b8c72b3db8760e60df4876 (patch) | |
tree | bdc2c2b41806cbab4717e9e1f372ae3d2d1f8cd1 /arch/x86/include | |
parent | 61bd1e858db743af64f6e363c526f7e433d12e0c (diff) | |
parent | 5679af4c1625a1534a4321e1ecc3c48a1cf65eb8 (diff) | |
download | linux-bb402c4fb5bba4edf5b8c72b3db8760e60df4876.tar.xz |
Merge branch 'x86-mce-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/x86/linux-2.6-tip
* 'x86-mce-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/x86/linux-2.6-tip:
x86, mce: fix boot logging logic
x86, mce: make polling timer interval per CPU
Diffstat (limited to 'arch/x86/include')
-rw-r--r-- | arch/x86/include/asm/mce.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/x86/include/asm/mce.h b/arch/x86/include/asm/mce.h index 563933e..4f8c199 100644 --- a/arch/x86/include/asm/mce.h +++ b/arch/x86/include/asm/mce.h @@ -137,6 +137,7 @@ DECLARE_PER_CPU(mce_banks_t, mce_poll_banks); enum mcp_flags { MCP_TIMESTAMP = (1 << 0), /* log time stamp */ MCP_UC = (1 << 1), /* log uncorrected errors */ + MCP_DONTLOG = (1 << 2), /* only clear, don't log */ }; extern void machine_check_poll(enum mcp_flags flags, mce_banks_t *b); |