diff options
author | Linus Torvalds | 2021-08-30 13:23:17 -0700 |
---|---|---|
committer | Linus Torvalds | 2021-08-30 13:23:17 -0700 |
commit | 8f645b420822f2061a41d022e8bd9a02fae5ba28 (patch) | |
tree | bf60f945b05476f724a5b0cd372263c9ab45502f /arch/x86/include | |
parent | 05b5fdb2a8f7f981b9b1aa77a6c4b810e19f01ab (diff) | |
parent | 3bff147b187d5dfccfca1ee231b0761a89f1eff5 (diff) |
Merge tag 'ras_core_for_v5.15' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip
Pull RAS update from Borislav Petkov:
"A single RAS change for 5.15:
- Do not start processing MCEs logged early because the decoding
chain is not up yet - delay that processing until everything is
ready"
* tag 'ras_core_for_v5.15' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip:
x86/mce: Defer processing of early errors
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 0607ec4f5091..da9321548f6f 100644 --- a/arch/x86/include/asm/mce.h +++ b/arch/x86/include/asm/mce.h @@ -265,6 +265,7 @@ enum mcp_flags { MCP_TIMESTAMP = BIT(0), /* log time stamp */ MCP_UC = BIT(1), /* log uncorrected errors */ MCP_DONTLOG = BIT(2), /* only clear, don't log */ + MCP_QUEUE_LOG = BIT(3), /* only queue to genpool */ }; bool machine_check_poll(enum mcp_flags flags, mce_banks_t *b); |