|
@@ -859,14 +859,13 @@ void virt_acpi_setup(VirtMachineState *vms)
|
|
|
/* Now expose it all to Guest */
|
|
|
build_state->table_mr = acpi_add_rom_blob(virt_acpi_build_update,
|
|
|
build_state, tables.table_data,
|
|
|
- ACPI_BUILD_TABLE_FILE,
|
|
|
- ACPI_BUILD_TABLE_MAX_SIZE);
|
|
|
+ ACPI_BUILD_TABLE_FILE);
|
|
|
assert(build_state->table_mr != NULL);
|
|
|
|
|
|
- build_state->linker_mr =
|
|
|
- acpi_add_rom_blob(virt_acpi_build_update, build_state,
|
|
|
- tables.linker->cmd_blob, ACPI_BUILD_LOADER_FILE,
|
|
|
- ACPI_BUILD_LOADER_MAX_SIZE);
|
|
|
+ build_state->linker_mr = acpi_add_rom_blob(virt_acpi_build_update,
|
|
|
+ build_state,
|
|
|
+ tables.linker->cmd_blob,
|
|
|
+ ACPI_BUILD_LOADER_FILE);
|
|
|
|
|
|
fw_cfg_add_file(vms->fw_cfg, ACPI_BUILD_TPMLOG_FILE, tables.tcpalog->data,
|
|
|
acpi_data_len(tables.tcpalog));
|
|
@@ -880,7 +879,7 @@ void virt_acpi_setup(VirtMachineState *vms)
|
|
|
|
|
|
build_state->rsdp_mr = acpi_add_rom_blob(virt_acpi_build_update,
|
|
|
build_state, tables.rsdp,
|
|
|
- ACPI_BUILD_RSDP_FILE, 0);
|
|
|
+ ACPI_BUILD_RSDP_FILE);
|
|
|
|
|
|
qemu_register_reset(virt_acpi_build_reset, build_state);
|
|
|
virt_acpi_build_reset(build_state);
|