mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-02 23:33:54 -06:00
xen: enable console and disk backend in HVM mode
Initialize the Xen console backend and the Xen disk backend even when running in HVM mode so that PV on HVM drivers can connect to them. Signed-off-by: Stefano Stabellini <stefano.stabellini@eu.citrix.com> Signed-off-by: Alexander Graf <agraf@suse.de>
This commit is contained in:
parent
868bb33faa
commit
ad35a7da1a
1 changed files with 8 additions and 0 deletions
|
@ -862,6 +862,14 @@ int xen_hvm_init(void)
|
|||
cpu_register_phys_memory_client(&state->client);
|
||||
state->log_for_dirtybit = NULL;
|
||||
|
||||
/* Initialize backend core & drivers */
|
||||
if (xen_be_init() != 0) {
|
||||
fprintf(stderr, "%s: xen backend core setup failed\n", __FUNCTION__);
|
||||
exit(1);
|
||||
}
|
||||
xen_be_register("console", &xen_console_ops);
|
||||
xen_be_register("qdisk", &xen_blkdev_ops);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue