diff options
| author | Eduardo Habkost <ehabkost@redhat.com> | 2015-08-07 16:55:51 -0300 |
|---|---|---|
| committer | Michael S. Tsirkin <mst@redhat.com> | 2015-08-13 14:08:28 +0300 |
| commit | c0aa4e1ecbcad29bb9f1d654f930300b975c3ba8 (patch) | |
| tree | 5a5a80b5c57742efdfbab6fcf73fe4008a3e1c76 /include | |
| parent | 62b160c02ca46f0b5a06cc4416c47708c7ffd76b (diff) | |
| download | focaccia-qemu-c0aa4e1ecbcad29bb9f1d654f930300b975c3ba8.tar.gz focaccia-qemu-c0aa4e1ecbcad29bb9f1d654f930300b975c3ba8.zip | |
pc: Move {above,below}_4g_mem_size variables to PCMachineState
This will make the info readily available for the other initialization functions, and will allow us to simplify their argument list. 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>
Diffstat (limited to 'include')
| -rw-r--r-- | include/hw/i386/pc.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/hw/i386/pc.h b/include/hw/i386/pc.h index 4fa2b3fb22..e1d20ade03 100644 --- a/include/hw/i386/pc.h +++ b/include/hw/i386/pc.h @@ -40,6 +40,7 @@ struct PCMachineState { OnOffAuto vmport; OnOffAuto smm; bool enforce_aligned_dimm; + ram_addr_t below_4g_mem_size, above_4g_mem_size; }; #define PC_MACHINE_ACPI_DEVICE_PROP "acpi-device" |