[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-changelog] [xen master] x86/tboot: simplify DMAR table copying
commit acd60189e5401572d0a741ef104f3d55302ce7b5 Author: Jan Beulich <jbeulich@xxxxxxxx> AuthorDate: Thu Mar 5 13:38:25 2015 +0100 Commit: Jan Beulich <jbeulich@xxxxxxxx> CommitDate: Thu Mar 5 13:38:25 2015 +0100 x86/tboot: simplify DMAR table copying There's no need for more than one variable, no need for casts, and no point in using the type-safe xmalloc_array() here. Signed-off-by: Jan Beulich <jbeulich@xxxxxxxx> Reviewed-by: Andrew Cooper <andrew.cooper3@xxxxxxxxxx> Acked-by: "Wei, Gang" <gang.wei@xxxxxxxxx> --- xen/arch/x86/tboot.c | 10 ++++------ 1 files changed, 4 insertions(+), 6 deletions(-) diff --git a/xen/arch/x86/tboot.c b/xen/arch/x86/tboot.c index ea1eea0..7b95ad3 100644 --- a/xen/arch/x86/tboot.c +++ b/xen/arch/x86/tboot.c @@ -435,13 +435,12 @@ int __init tboot_protect_mem_regions(void) int __init tboot_parse_dmar_table(acpi_table_handler dmar_handler) { - struct acpi_table_header *dmar_table; int rc; uint64_t size; uint32_t dmar_table_length; unsigned long pa; sinit_mle_data_t sinit_mle_data; - unsigned char *dmar_table_raw; + void *dmar_table; if ( !tboot_in_measured_env() ) return acpi_table_parse(ACPI_SIG_DMAR, dmar_handler); @@ -474,13 +473,12 @@ int __init tboot_parse_dmar_table(acpi_table_handler dmar_handler) tboot_copy_memory((unsigned char *)&dmar_table_length, sizeof(dmar_table_length), pa + sizeof(char) * ACPI_NAME_SIZE); - dmar_table_raw = xmalloc_array(unsigned char, dmar_table_length); - tboot_copy_memory(dmar_table_raw, dmar_table_length, pa); - dmar_table = (struct acpi_table_header *)dmar_table_raw; + dmar_table = xmalloc_bytes(dmar_table_length); + tboot_copy_memory(dmar_table, dmar_table_length, pa); clear_fixmap(FIX_TBOOT_MAP_ADDRESS); rc = dmar_handler(dmar_table); - xfree(dmar_table_raw); + xfree(dmar_table); /* acpi_parse_dmar() zaps APCI DMAR signature in TXT heap table */ /* but dom0 will read real table, so must zap it there too */ -- generated by git-patchbot for /home/xen/git/xen.git#master _______________________________________________ Xen-changelog mailing list Xen-changelog@xxxxxxxxxxxxx http://lists.xensource.com/xen-changelog
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |