search for: qmp_send_prepare

Displaying 8 results from an estimated 8 matches for "qmp_send_prepare".

2015 Feb 01
4
Bug#776742: xen-utils-common: no support for VGA Passthrough
Package: xen-utils-common Version: 4.4.1-6 Severity: normal Dear Maintainer, (There appear to be several reports on the BTS with concerns relating to this report. Some unarchiving/merging may be necessary. Reassignment may be needed as well since I'm not sure which package this problem would fall under. Ultimately decided to file with xen-utils-common with 'xl' being the frontend
2012 Nov 09
1
OVMF Bios Option
...um=3 libxl: debug: libxl_event.c:561:libxl__ev_xswatch_deregister: watch w=0x9cdd78: deregister unregistered libxl: debug: libxl_qmp.c:646:libxl__qmp_initialize: connected to /var/run/xen/qmp-libxl-10 libxl: debug: libxl_qmp.c:298:qmp_handle_response: message type: qmp libxl: debug: libxl_qmp.c:555:qmp_send_prepare: next qmp command: ''{"execute":"qmp_capabilities","id":1}'' libxl: debug: libxl_qmp.c:298:qmp_handle_response: message type: return libxl: debug: libxl_qmp.c:555:qmp_send_prepare: next qmp command: ''{"execute":"query-chardev&quo...
2012 Jun 08
3
cannot boot guest VM
...bxl_dm.c:998:libxl__create_device_model: -m libxl: debug: libxl_dm.c:998:libxl__create_device_model: 257 libxl: debug: libxl_qmp.c:692:libxl__qmp_initialize: connected to /var/run/xen/qmp-libxl-24 libxl: debug: libxl_qmp.c:298:qmp_handle_response: message type: qmp libxl: debug: libxl_qmp.c:555:qmp_send_prepare: next qmp command: ''{"execute":"qmp_capabilities","id":1}'' libxl: debug: libxl_qmp.c:298:qmp_handle_response: message type: return libxl: debug: libxl_qmp.c:555:qmp_send_prepare: next qmp command: ''{"execute":"query-chardev&quo...
2013 Oct 08
10
xl console regression on xen-unstable
I''m unable to start xl console on latest xen-unstable (build with commit 8e0da8c07f4f80e14314977a11f738bd74a5b62b). > xl -vvv console sid > xenconsole: Could not read tty from store: No such file or directory I also tried "xl create -c", and it shows console from pygrub but when the "xl create" reaches the end I got the same error: > xenconsole: Could not
2013 Sep 24
7
Qxl problem with xen domU, is xen spice and/or qemu bugs?
...=3 libxl: debug: libxl_event.c:608:libxl__ev_xswatch_deregister: watch w=0x193bbd0: deregister unregistered libxl: debug: libxl_qmp.c:707:libxl__qmp_initialize: connected to /var/run/xen/qmp-libxl-6 libxl: debug: libxl_qmp.c:299:qmp_handle_response: message type: qmp libxl: debug: libxl_qmp.c:555:qmp_send_prepare: next qmp command: ''{ "execute": "qmp_capabilities", "id": 1 } '' libxl: debug: libxl_qmp.c:299:qmp_handle_response: message type: return libxl: debug: libxl_qmp.c:555:qmp_send_prepare: next qmp command: ''{ "execute":...
2012 Jan 15
2
[PATCH v3] libxl: add support for yajl 2.x
...rn yajl_gen_alloc(&conf, allocFuncs); +} +#endif + #endif /* LIBXL_JSON_H */ diff -r cd47dde439e6 -r a1986ef30b7d tools/libxl/libxl_qmp.c --- a/tools/libxl/libxl_qmp.c Sat Jan 14 19:04:48 2012 +0100 +++ b/tools/libxl/libxl_qmp.c Sun Jan 15 06:56:00 2012 +0100 @@ -453,15 +453,15 @@ static char *qmp_send_prepare(libxl__gc qmp_callback_t callback, void *opaque, qmp_request_context *context) { - yajl_gen_config conf = { 0, NULL }; const unsigned char *buf = NULL; char *ret = NULL; - unsigned int len = 0; + libxl_yajl_length le...
2013 Sep 17
10
RESEND [Xen-unstable][Qemu-xen] HVM Guest reading of Expansion ROM from passthroughed PCI device returns data from emulated VGA rom
*RESEND* due to exceeding the mailinglists limit for attachment size. Hi, I''m trying to get secondary vga-passthrough on a HVM guest to work with a AMD HD6570 and the native kernel radeon driver and kernel modesetting. So the guest still gets the emulated stdvga or cirrus device(used in my case here) as primary/boot vga adapter. - When i don''t passthrough the radeon card, the
2011 Dec 20
26
[PATCH v2] libxl: add support for yajl 2.x
...YAJL_MAJOR > 1) +# define HAVE_YAJL_V2 1 +#endif + #endif /* LIBXL_JSON_H */ diff -r f72b99fccfca -r 716d6d48e647 tools/libxl/libxl_qmp.c --- a/tools/libxl/libxl_qmp.c Tue Dec 20 08:31:40 2011 +0100 +++ b/tools/libxl/libxl_qmp.c Tue Dec 20 13:52:55 2011 +0100 @@ -453,15 +453,26 @@ static char *qmp_send_prepare(libxl__gc qmp_callback_t callback, void *opaque, qmp_request_context *context) { +#ifndef HAVE_YAJL_V2 yajl_gen_config conf = { 0, NULL }; +#endif const unsigned char *buf = NULL; char *ret = NULL; +#ifdef HAVE_YAJL_V2 +...