|
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] Re: [Xen-devel] [PATCH] libxl: new parameters for upstream qemu's vga interfaces
On Thu, 2013-10-10 at 11:26 +0200, Fabio Fantoni wrote:
> Il 30/09/2013 12:12, Fabio Fantoni ha scritto:
> > Change the qemu parameters for upstream qemu vgas to the
> > new ones (-device), introduced some years ago.
>
> Ping
Please CC the qemu maintainers (Stefano & Anthony), although these
patches touch the toolstack they are logically qemu patches and need
their ack.
>
> >
> > Signed-off-by: Fabio Fantoni <fabio.fantoni@xxxxxxx>
> > ---
> > tools/libxl/libxl_dm.c | 12 +++++-------
> > 1 file changed, 5 insertions(+), 7 deletions(-)
> >
> > diff --git a/tools/libxl/libxl_dm.c b/tools/libxl/libxl_dm.c
> > index 43c3bec..2c6f5d9 100644
> > --- a/tools/libxl/libxl_dm.c
> > +++ b/tools/libxl/libxl_dm.c
> > @@ -486,15 +486,13 @@ static char **
> > libxl__build_device_model_args_new(libxl__gc *gc,
> >
> > switch (b_info->u.hvm.vga.kind) {
> > case LIBXL_VGA_INTERFACE_TYPE_STD:
> > - flexarray_vappend(dm_args, "-vga", "std", NULL);
> > + flexarray_append_pair(dm_args, "-device", "VGA");
> > break;
> > case LIBXL_VGA_INTERFACE_TYPE_CIRRUS:
> > - flexarray_vappend(dm_args, "-vga", "cirrus", NULL);
> > - if (b_info->video_memkb) {
> > - flexarray_vappend(dm_args, "-global",
> > - GCSPRINTF("vga.vram_size_mb=%d",
> > - libxl__sizekb_to_mb(b_info->video_memkb)), NULL);
> > - }
> > + flexarray_append_pair(dm_args, "-device", "cirrus-vga");
> > + flexarray_append_pair(dm_args, "-global",
> > + GCSPRINTF("vga.vram_size_mb=%d",
> > + libxl__sizekb_to_mb(b_info->video_memkb)));
> > break;
> > }
> >
>
_______________________________________________
Xen-devel mailing list
Xen-devel@xxxxxxxxxxxxx
http://lists.xen.org/xen-devel
|
![]() |
Lists.xenproject.org is hosted with RackSpace, monitoring our |