summaryrefslogtreecommitdiffstats
path: root/numa.c
diff options
context:
space:
mode:
authorDavid Hildenbrand2018-06-19 15:41:36 +0200
committerPaolo Bonzini2018-06-28 19:05:33 +0200
commit7943e97b858e64eddf0f3395427e58c5cc00a7d9 (patch)
treea8c0bb09d92d171049379dc115fe811de6b30405 /numa.c
parentnvdimm: no need to overwrite get_vmstate_memory_region() (diff)
downloadqemu-7943e97b858e64eddf0f3395427e58c5cc00a7d9.tar.gz
qemu-7943e97b858e64eddf0f3395427e58c5cc00a7d9.tar.xz
qemu-7943e97b858e64eddf0f3395427e58c5cc00a7d9.zip
hostmem: drop error variable from host_memory_backend_get_memory()
Unused, so let's remove it. Reviewed-by: David Gibson <david@gibson.dropbear.id.au> Reviewed-by: Igor Mammedov <imammedo@redhat.com> Signed-off-by: David Hildenbrand <david@redhat.com> Message-Id: <20180619134141.29478-8-david@redhat.com> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'numa.c')
-rw-r--r--numa.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/numa.c b/numa.c
index 33572bfa74..94f758c757 100644
--- a/numa.c
+++ b/numa.c
@@ -523,8 +523,7 @@ void memory_region_allocate_system_memory(MemoryRegion *mr, Object *owner,
if (!backend) {
continue;
}
- MemoryRegion *seg = host_memory_backend_get_memory(backend,
- &error_fatal);
+ MemoryRegion *seg = host_memory_backend_get_memory(backend);
if (memory_region_is_mapped(seg)) {
char *path = object_get_canonical_path_component(OBJECT(backend));