[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <20180402150656.101022-2-Yazen.Ghannam@amd.com>
Date: Mon, 2 Apr 2018 10:06:49 -0500
From: Yazen Ghannam <Yazen.Ghannam@....com>
To: linux-efi@...r.kernel.org
Cc: Yazen Ghannam <Yazen.Ghannam@....com>,
linux-kernel@...r.kernel.org, ard.biesheuvel@...aro.org,
bp@...e.de, x86@...nel.org, tony.luck@...el.com
Subject: [PATCH v4 1/8] efi: Fix IA32/X64 Processor Error Record definition
From: Yazen Ghannam <yazen.ghannam@....com>
Based on UEFI 2.7 Table 255. Processor Error Record, the "Local APIC_ID"
field is 8 bytes but Linux defines this field as 1 byte.
Fix this in the struct cper_sec_proc_ia definition.
Signed-off-by: Yazen Ghannam <yazen.ghannam@....com>
---
Link:
https://lkml.kernel.org/r/20180324184940.19762-2-Yazen.Ghannam@amd.com
v3->v4:
* No changes.
v2->v3:
* Fix table number in commit message.
v1->v2:
* No changes
include/linux/cper.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/include/linux/cper.h b/include/linux/cper.h
index d14ef4e77c8a..4b5f8459b403 100644
--- a/include/linux/cper.h
+++ b/include/linux/cper.h
@@ -381,7 +381,7 @@ struct cper_sec_proc_generic {
/* IA32/X64 Processor Error Section */
struct cper_sec_proc_ia {
__u64 validation_bits;
- __u8 lapic_id;
+ __u64 lapic_id;
__u8 cpuid[48];
};
--
2.14.1
Powered by blists - more mailing lists