efi_loader: struct efi_configuration_table
authorHeinrich Schuchardt <xypron.glpk@gmx.de>
Mon, 17 Dec 2018 23:06:05 +0000 (00:06 +0100)
committerAlexander Graf <agraf@suse.de>
Wed, 13 Feb 2019 08:40:05 +0000 (09:40 +0100)
Commit 393fccdf6c73 ("efi_loader: efi_guid_t must be 64-bit aligned")
has changed the alignment of efi_guid_t. This changed the size of
struct efi_configuration_table on 32-bit systems form 20 to 24 bytes. As
an array of this type is pointed to by the system table this breaks
compatibility with existing versions of GRUB and Linux. Let's get back the
original size by using the attribute __packed.

Fixes: 393fccdf6c73 ("efi_loader: efi_guid_t must be 64-bit aligned")
Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
Signed-off-by: Alexander Graf <agraf@suse.de>
include/efi_api.h

index aef77b6319de5a68073f4bc16b8e6efdb3de34d8..0e5c6e92d0de749fdbe40c5e90775a2d43b0b5ec 100644 (file)
@@ -299,7 +299,7 @@ struct efi_runtime_services {
 struct efi_configuration_table {
        efi_guid_t guid;
        void *table;
-};
+} __packed;
 
 #define EFI_SYSTEM_TABLE_SIGNATURE ((u64)0x5453595320494249ULL)