mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-04 00:03:54 -06:00
Introduce Xen PCI Passthrough, qdevice
A more complete history can be found here: git://xenbits.xensource.com/qemu-xen-unstable.git Signed-off-by: Allen Kay <allen.m.kay@intel.com> Signed-off-by: Guy Zana <guy@neocleus.com> Signed-off-by: Anthony PERARD <anthony.perard@citrix.com> Acked-by: Stefano Stabellini <stefano.stabellini@eu.citrix.com>
This commit is contained in:
parent
679042f0e1
commit
eaab4d60d3
6 changed files with 1087 additions and 0 deletions
12
xen-all.c
12
xen-all.c
|
@ -1191,3 +1191,15 @@ void xen_register_framebuffer(MemoryRegion *mr)
|
|||
{
|
||||
framebuffer = mr;
|
||||
}
|
||||
|
||||
void xen_shutdown_fatal_error(const char *fmt, ...)
|
||||
{
|
||||
va_list ap;
|
||||
|
||||
va_start(ap, fmt);
|
||||
vfprintf(stderr, fmt, ap);
|
||||
va_end(ap);
|
||||
fprintf(stderr, "Will destroy the domain.\n");
|
||||
/* destroy the domain */
|
||||
qemu_system_shutdown_request();
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue