mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-07 11:33:58 -04:00
tpm: do not ignore memblock_reserve return value
tpm code currently ignores a relevant failure case silently. Add an error to make this failure non-silent. Signed-off-by: Gregory Price <gourry@gourry.net> Signed-off-by: Ard Biesheuvel <ardb@kernel.org>
This commit is contained in:
committed by
Ard Biesheuvel
parent
e6d654e9f5
commit
c33c28f9f6
@@ -61,7 +61,12 @@ int __init efi_tpm_eventlog_init(void)
|
||||
}
|
||||
|
||||
tbl_size = sizeof(*log_tbl) + log_tbl->size;
|
||||
memblock_reserve(efi.tpm_log, tbl_size);
|
||||
if (memblock_reserve(efi.tpm_log, tbl_size)) {
|
||||
pr_err("TPM Event Log memblock reserve fails (0x%lx, 0x%x)\n",
|
||||
efi.tpm_log, tbl_size);
|
||||
ret = -ENOMEM;
|
||||
goto out;
|
||||
}
|
||||
|
||||
if (efi.tpm_final_log == EFI_INVALID_TABLE_ADDR) {
|
||||
pr_info("TPM Final Events table not present\n");
|
||||
|
||||
Reference in New Issue
Block a user