diff options
author | Dominik Brodowski <linux@dominikbrodowski.net> | 2019-11-06 08:06:13 +0100 |
---|---|---|
committer | Ard Biesheuvel <ardb@kernel.org> | 2019-11-07 10:18:45 +0100 |
commit | 0d95981438c3bdb53cc99b0fb656d24d7a80e1f3 (patch) | |
tree | 7c3dd2d573b2d2210eb4c87b5a62d705bf2da312 /drivers/firmware/efi/libstub/efistub.h | |
parent | efi/random: use arch-independent efi_call_proto() (diff) | |
download | linux-0d95981438c3bdb53cc99b0fb656d24d7a80e1f3.tar.xz linux-0d95981438c3bdb53cc99b0fb656d24d7a80e1f3.zip |
x86: efi/random: Invoke EFI_RNG_PROTOCOL to seed the UEFI RNG table
Invoke the EFI_RNG_PROTOCOL protocol in the context of the x86 EFI stub,
same as is done on arm/arm64 since commit 568bc4e87033 ("efi/arm*/libstub:
Invoke EFI_RNG_PROTOCOL to seed the UEFI RNG table"). Within the stub,
a Linux-specific RNG seed UEFI config table will be seeded. The EFI routines
in the core kernel will pick that up later, yet still early during boot,
to seed the kernel entropy pool. If CONFIG_RANDOM_TRUST_BOOTLOADER, entropy
is credited for this seed.
Signed-off-by: Dominik Brodowski <linux@dominikbrodowski.net>
Signed-off-by: Ard Biesheuvel <ardb@kernel.org>
Diffstat (limited to 'drivers/firmware/efi/libstub/efistub.h')
-rw-r--r-- | drivers/firmware/efi/libstub/efistub.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/drivers/firmware/efi/libstub/efistub.h b/drivers/firmware/efi/libstub/efistub.h index 7f1556fd867d..05739ae013c8 100644 --- a/drivers/firmware/efi/libstub/efistub.h +++ b/drivers/firmware/efi/libstub/efistub.h @@ -63,8 +63,6 @@ efi_status_t efi_random_alloc(efi_system_table_t *sys_table_arg, efi_status_t check_platform_features(efi_system_table_t *sys_table_arg); -efi_status_t efi_random_get_seed(efi_system_table_t *sys_table_arg); - void *get_efi_config_table(efi_system_table_t *sys_table, efi_guid_t guid); /* Helper macros for the usual case of using simple C variables: */ |