diff options
author | Tony Luck <tony.luck@intel.com> | 2020-04-15 21:58:26 +0200 |
---|---|---|
committer | Borislav Petkov <bp@suse.de> | 2020-04-17 11:12:21 +0200 |
commit | f82cdff1aa7f6dcf6625c7219342a6e5c977098d (patch) | |
tree | 544f7893d348f3bfb5ae3cf27abc89f3cea75f68 | |
parent | x86/mce: Fixup exception only for the correct MCEs (diff) | |
download | linux-f82cdff1aa7f6dcf6625c7219342a6e5c977098d.tar.xz linux-f82cdff1aa7f6dcf6625c7219342a6e5c977098d.zip |
x86/mce: Drop bogus comment about mce.kflags
The bit definitions for kflags are for internal use only. A
late edit moved them from uapi/asm/mce.h to the internal
x86 <asm/mce.h>, but the comment saying "See below" was
accidentally left here.
Delete "See below". Just labelling this field as internal
kernel use is sufficient.
Fixes: 1de08dccd383 ("x86/mce: Add a struct mce.kflags field")
Signed-off-by: Tony Luck <tony.luck@intel.com>
Signed-off-by: Borislav Petkov <bp@suse.de>
Link: https://lkml.kernel.org/r/20200415195826.GA13681@agluck-desk2.amr.corp.intel.com
-rw-r--r-- | arch/x86/include/uapi/asm/mce.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/include/uapi/asm/mce.h b/arch/x86/include/uapi/asm/mce.h index 5b59d80f1d4e..db9adc081c5a 100644 --- a/arch/x86/include/uapi/asm/mce.h +++ b/arch/x86/include/uapi/asm/mce.h @@ -35,7 +35,7 @@ struct mce { __u64 ipid; /* MCA_IPID MSR: only valid on SMCA systems */ __u64 ppin; /* Protected Processor Inventory Number */ __u32 microcode; /* Microcode revision */ - __u64 kflags; /* Internal kernel use. See below */ + __u64 kflags; /* Internal kernel use */ }; #define MCE_GET_RECORD_LEN _IOR('M', 1, int) |