Skip to content

Commit f4cd18c

Browse files
snitsardbiesheuvel
authored andcommitted
efi/tpm: Pass correct address to memblock_reserve
memblock_reserve() expects a physical address, but the address being passed for the TPM final events log is what was returned from early_memremap(). This results in something like the following: [ 0.000000] memblock_reserve: [0xffffffffff2c0000-0xffffffffff2c00e4] efi_tpm_eventlog_init+0x324/0x370 Pass the address from efi like what is done for the TPM events log. Fixes: c46f340 ("tpm: Reserve the TPM final events table") Cc: Matthew Garrett <mjg59@google.com> Cc: Jarkko Sakkinen <jarkko@kernel.org> Cc: Bartosz Szczepanek <bsz@semihalf.com> Cc: Ard Biesheuvel <ardb@kernel.org> Signed-off-by: Jerry Snitselaar <jsnitsel@redhat.com> Acked-by: Jarkko Sakkinen <jarkko@kernel.org> Signed-off-by: Ard Biesheuvel <ardb@kernel.org>
1 parent 37926f9 commit f4cd18c

File tree

1 file changed

+1
-1
lines changed
  • drivers/firmware/efi

1 file changed

+1
-1
lines changed

drivers/firmware/efi/tpm.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ int __init efi_tpm_eventlog_init(void)
9797
goto out_calc;
9898
}
9999

100-
memblock_reserve((unsigned long)final_tbl,
100+
memblock_reserve(efi.tpm_final_log,
101101
tbl_size + sizeof(*final_tbl));
102102
efi_tpm_final_log_size = tbl_size;
103103

0 commit comments

Comments
 (0)