mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-05 00:33:55 -06:00
memory-device: forward errors in get_region_size()/get_plugged_size()
Let's properly forward the errors, so errors from get_region_size() / get_plugged_size() can be handled. Users right now call both functions after the device has been realized, which is will never fail, so it is fine to continue using error_abort. While at it, remove a leftover error check (suggested by Igor). 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-8-david@redhat.com> Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
This commit is contained in:
parent
15cea5ae81
commit
e40c5b6b3f
3 changed files with 8 additions and 10 deletions
|
@ -60,7 +60,7 @@ static int memory_device_used_region_size(Object *obj, void *opaque)
|
|||
const MemoryDeviceClass *mdc = MEMORY_DEVICE_GET_CLASS(obj);
|
||||
|
||||
if (dev->realized) {
|
||||
*size += mdc->get_region_size(md);
|
||||
*size += mdc->get_region_size(md, &error_abort);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -167,10 +167,7 @@ uint64_t memory_device_get_free_addr(MachineState *ms, const uint64_t *hint,
|
|||
uint64_t md_size, md_addr;
|
||||
|
||||
md_addr = mdc->get_addr(md);
|
||||
md_size = mdc->get_region_size(md);
|
||||
if (*errp) {
|
||||
goto out;
|
||||
}
|
||||
md_size = mdc->get_region_size(md, &error_abort);
|
||||
|
||||
if (ranges_overlap(md_addr, md_size, new_addr, size)) {
|
||||
if (hint) {
|
||||
|
@ -234,7 +231,7 @@ static int memory_device_plugged_size(Object *obj, void *opaque)
|
|||
const MemoryDeviceClass *mdc = MEMORY_DEVICE_GET_CLASS(obj);
|
||||
|
||||
if (dev->realized) {
|
||||
*size += mdc->get_plugged_size(md);
|
||||
*size += mdc->get_plugged_size(md, &error_abort);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue