summaryrefslogtreecommitdiff
path: root/xen-hvm.c
diff options
context:
space:
mode:
authorJuergen Gross <jgross@suse.com>2016-08-02 08:32:32 +0200
committerGerd Hoffmann <kraxel@redhat.com>2016-08-03 14:52:11 +0200
commit0e39bb022b5fa8c11964968885f3263c02ce42b0 (patch)
tree535f76c81af91d39a619afee1e3044c7dcdbcad8 /xen-hvm.c
parent80440ea033b02d9c7330d507daf41d4bf8a8c058 (diff)
downloadqemu-0e39bb022b5fa8c11964968885f3263c02ce42b0.tar.gz
xen: use a common function for pv and hvm guest backend register calls
Instead of calling xen_be_register() for each supported backend type for hvm and pv guests in their machine init functions use a common function in order not to have to add new backends twice. This at once fixes the error that hvm domains couldn't use the qusb backend. Signed-off-by: Juergen Gross <jgross@suse.com> Acked-by: Anthony PERARD <anthony.perard@citrix.com> Message-id: 1470119552-16170-1-git-send-email-jgross@suse.com Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
Diffstat (limited to 'xen-hvm.c')
-rw-r--r--xen-hvm.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/xen-hvm.c b/xen-hvm.c
index eb577926a1..3b0343a8e6 100644
--- a/xen-hvm.c
+++ b/xen-hvm.c
@@ -1318,9 +1318,7 @@ void xen_hvm_init(PCMachineState *pcms, MemoryRegion **ram_memory)
error_report("xen backend core setup failed");
goto err;
}
- xen_be_register("console", &xen_console_ops);
- xen_be_register("vkbd", &xen_kbdmouse_ops);
- xen_be_register("qdisk", &xen_blkdev_ops);
+ xen_be_register_common();
xen_read_physmap(state);
return;