diff options
author | Michael S. Tsirkin <mst@redhat.com> | 2015-10-28 18:55:06 +0200 |
---|---|---|
committer | Michael S. Tsirkin <mst@redhat.com> | 2015-10-29 11:11:07 +0200 |
commit | d6a9b0b89d27e0a688f37c1732d4dec40613669e (patch) | |
tree | 431d8afd748924061d4dd68c0c804b290095368b /include | |
parent | 340065e5a11a515382c8b1112424c97e86ad2a3f (diff) | |
download | qemu-d6a9b0b89d27e0a688f37c1732d4dec40613669e.tar.gz qemu-d6a9b0b89d27e0a688f37c1732d4dec40613669e.tar.bz2 qemu-d6a9b0b89d27e0a688f37c1732d4dec40613669e.zip |
Revert "memhp: extend address auto assignment to support gaps"
This reverts commit df0acded19ec4b826aa095cfc19d341bd66fafd3.
There's no point to it now that the only user has been reverted.
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/hw/mem/pc-dimm.h | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/include/hw/mem/pc-dimm.h b/include/hw/mem/pc-dimm.h index c1ee7b0408..d83bf30ea9 100644 --- a/include/hw/mem/pc-dimm.h +++ b/include/hw/mem/pc-dimm.h @@ -83,16 +83,15 @@ typedef struct MemoryHotplugState { uint64_t pc_dimm_get_free_addr(uint64_t address_space_start, uint64_t address_space_size, - uint64_t *hint, uint64_t align, bool gap, - uint64_t size, Error **errp); + uint64_t *hint, uint64_t align, uint64_t size, + Error **errp); int pc_dimm_get_free_slot(const int *hint, int max_slots, Error **errp); int qmp_pc_dimm_device_list(Object *obj, void *opaque); uint64_t pc_existing_dimms_capacity(Error **errp); void pc_dimm_memory_plug(DeviceState *dev, MemoryHotplugState *hpms, - MemoryRegion *mr, uint64_t align, bool gap, - Error **errp); + MemoryRegion *mr, uint64_t align, Error **errp); void pc_dimm_memory_unplug(DeviceState *dev, MemoryHotplugState *hpms, MemoryRegion *mr); #endif |