diff options
| author | Eduardo Habkost | 2015-12-11 19:42:23 +0100 |
|---|---|---|
| committer | Michael S. Tsirkin | 2016-02-06 19:44:09 +0100 |
| commit | 9ebeed0c1efe4994c7c129e8469a797bcde9f81a (patch) | |
| tree | cc4f7074944af5c590f36120bd64d230167cd5ba /include | |
| parent | pc: Move PcGuestInfo declaration to top of file (diff) | |
| download | qemu-9ebeed0c1efe4994c7c129e8469a797bcde9f81a.tar.gz qemu-9ebeed0c1efe4994c7c129e8469a797bcde9f81a.tar.xz qemu-9ebeed0c1efe4994c7c129e8469a797bcde9f81a.zip | |
pc: Eliminate struct PcGuestInfoState
Instead of allocating a new struct just for PcGuestInfo and the
mchine_done Notifier, place them inside PCMachineState.
Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
Reviewed-by: Michael S. Tsirkin <mst@redhat.com>
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Reviewed-by: Marcel Apfelbaum <marcel@redhat.com>
Diffstat (limited to 'include')
| -rw-r--r-- | include/hw/i386/pc.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/hw/i386/pc.h b/include/hw/i386/pc.h index 212eb7dcfa..9d0b004d74 100644 --- a/include/hw/i386/pc.h +++ b/include/hw/i386/pc.h @@ -61,6 +61,8 @@ struct PCMachineState { /* State for other subsystems/APIs: */ MemoryHotplugState hotplug_memory; + PcGuestInfo acpi_guest_info; + Notifier machine_done; /* Pointers to devices and objects: */ HotplugHandler *acpi_dev; |
