diff options
author | David Hildenbrand <david@redhat.com> | 2018-10-05 11:20:22 +0200 |
---|---|---|
committer | Eduardo Habkost <ehabkost@redhat.com> | 2018-10-24 06:44:59 -0300 |
commit | 55d67a04923488cb27f470b37896dde7a8dc0366 (patch) | |
tree | 7aff2f663697dd174ba4c26561e21c68636e52f9 /include | |
parent | 6ef2c0f2c162c3cae30f235c8d27ee7b0c37a1ab (diff) | |
download | qemu-55d67a04923488cb27f470b37896dde7a8dc0366.zip qemu-55d67a04923488cb27f470b37896dde7a8dc0366.tar.gz qemu-55d67a04923488cb27f470b37896dde7a8dc0366.tar.bz2 |
memory-device: complete factoring out plug handling
With the new memory device functions in place, we can factor out
plugging of memory devices completely.
Reviewed-by: David Gibson <david@gibson.dropbear.id.au>
Reviewed-by: Igor Mammedov <imammedo@redhat.com>
Reviewed-by: Eric Auger <eric.auger@redhat.com>
Signed-off-by: David Hildenbrand <david@redhat.com>
Message-Id: <20181005092024.14344-15-david@redhat.com>
Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/hw/mem/memory-device.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/include/hw/mem/memory-device.h b/include/hw/mem/memory-device.h index d92acd2..53d89da 100644 --- a/include/hw/mem/memory-device.h +++ b/include/hw/mem/memory-device.h @@ -101,8 +101,7 @@ MemoryDeviceInfoList *qmp_memory_device_list(void); uint64_t get_plugged_memory_size(void); void memory_device_pre_plug(MemoryDeviceState *md, MachineState *ms, const uint64_t *legacy_align, Error **errp); -void memory_device_plug_region(MachineState *ms, MemoryRegion *mr, - uint64_t addr); +void memory_device_plug(MemoryDeviceState *md, MachineState *ms); void memory_device_unplug_region(MachineState *ms, MemoryRegion *mr); uint64_t memory_device_get_region_size(const MemoryDeviceState *md, Error **errp); |