Stefano Stabellini
2010-Aug-13 18:53 UTC
[Xen-devel] [PATCH 3 of 4] libxl: Support pv qemu without any vfbs
Support pv qemu without any vfbs. Pv qemu provides backends for vfbs and consoles; even if no vfbs are given can still be useful for the console backends. Signed-off-by: Stefano Stabellini <stefano.stabellini@eu.citrix.com> diff -r ebe8af690d43 tools/libxl/libxl.c --- a/tools/libxl/libxl.c Fri Aug 13 19:29:45 2010 +0100 +++ b/tools/libxl/libxl.c Fri Aug 13 19:30:59 2010 +0100 @@ -2591,17 +2591,20 @@ static int libxl_build_xenpv_qemu_args(l libxl_ctx *ctx = libxl_gc_owner(gc); memset(info, 0x00, sizeof(libxl_device_model_info)); - info->vnc = vfb->vnc; - if (vfb->vnclisten) - info->vnclisten = libxl_strdup(gc, vfb->vnclisten); - info->vncdisplay = vfb->vncdisplay; - info->vncunused = vfb->vncunused; - if (vfb->vncpasswd) - info->vncpasswd = vfb->vncpasswd; - if (vfb->keymap) - info->keymap = libxl_strdup(gc, vfb->keymap); - info->sdl = vfb->sdl; - info->opengl = vfb->opengl; + if (vfb != NULL) { + info->vnc = vfb->vnc; + if (vfb->vnclisten) + info->vnclisten = libxl_strdup(gc, vfb->vnclisten); + info->vncdisplay = vfb->vncdisplay; + info->vncunused = vfb->vncunused; + if (vfb->vncpasswd) + info->vncpasswd = vfb->vncpasswd; + if (vfb->keymap) + info->keymap = libxl_strdup(gc, vfb->keymap); + info->sdl = vfb->sdl; + info->opengl = vfb->opengl; + } else + info->nographic = 1; info->domid = domid; info->dom_name = libxl_domid_to_name(ctx, domid); info->device_model = libxl_abs_path(gc, "qemu-dm", libxl_libexec_path()); _______________________________________________ Xen-devel mailing list Xen-devel@lists.xensource.com http://lists.xensource.com/xen-devel