diff options
author | Borislav Petkov <bp@suse.de> | 2017-03-27 12:33:01 +0300 |
---|---|---|
committer | Ingo Molnar <mingo@kernel.org> | 2017-03-28 09:54:42 +0300 |
commit | e64edfcce9c738300b4102d0739577d6ecc96d4a (patch) | |
tree | b574e1be54d21a233cf65a17d4d44cea7d391ffc /arch/x86/include/asm/mce.h | |
parent | fe3ed20fddfd8c6a4dcfb8e43de80f269d1f3f2a (diff) | |
download | linux-e64edfcce9c738300b4102d0739577d6ecc96d4a.tar.xz |
x86/mce: Rename mce_log to mce_log_buffer
It is confusing when staring at "struct mce_log mcelog" and then there's
also a function called mce_log(). So call the buffer what it is.
No functionality change.
Signed-off-by: Borislav Petkov <bp@suse.de>
Cc: Linus Torvalds <torvalds@linux-foundation.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: linux-edac <linux-edac@vger.kernel.org>
Link: http://lkml.kernel.org/r/20170327093304.10683-4-bp@alien8.de
Signed-off-by: Ingo Molnar <mingo@kernel.org>
Diffstat (limited to 'arch/x86/include/asm/mce.h')
-rw-r--r-- | arch/x86/include/asm/mce.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/include/asm/mce.h b/arch/x86/include/asm/mce.h index e63873683d4a..0512dcc11750 100644 --- a/arch/x86/include/asm/mce.h +++ b/arch/x86/include/asm/mce.h @@ -128,7 +128,7 @@ * debugging tools. Each entry is only valid when its finished flag * is set. */ -struct mce_log { +struct mce_log_buffer { char signature[12]; /* "MACHINECHECK" */ unsigned len; /* = MCE_LOG_LEN */ unsigned next; |