[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Qemu-devel] [for 4.5] missing chunk in 11dffa2359e8a2629490c14c029c
From: |
Chun Yan Liu |
Subject: |
Re: [Qemu-devel] [for 4.5] missing chunk in 11dffa2359e8a2629490c14c029c7c7c777b3e47 |
Date: |
Thu, 27 Nov 2014 23:03:42 -0700 |
>>> On 11/28/2014 at 02:14 AM, in message
<address@hidden>, Stefano
Stabellini <address@hidden> wrote:
> On Mon, 7 Jul 2014, Chunyan Liu wrote:
> > diff --git a/tools/libxl/libxl_dm.c b/tools/libxl/libxl_dm.c
> > index addacdb..4f1cbd2 100644
> > --- a/tools/libxl/libxl_dm.c
> > +++ b/tools/libxl/libxl_dm.c
> > @@ -479,6 +485,15 @@ static char **
> libxl__build_device_model_args_new(libxl__gc *gc,
> > if (b_info->type == LIBXL_DOMAIN_TYPE_HVM) {
> > int ioemu_nics = 0;
> >
> > + if (b_info->kernel)
> > + flexarray_vappend(dm_args, "-kernel", b_info->kernel, NULL);
> > +
> > + if (b_info->ramdisk)
> > + flexarray_vappend(dm_args, "-initrd", b_info->ramdisk, NULL);
> > +
> > + if (b_info->cmdline)
> > + flexarray_vappend(dm_args, "-append", b_info->cmdline, NULL);
> > +
> > if (b_info->u.hvm.serial) {
> > flexarray_vappend(dm_args, "-serial", b_info->u.hvm.serial,
> NULL);
> > }
>
> This chunk of the patch was never applied to xen-unstable (commit
> 11dffa2359e8a2629490c14c029c7c7c777b3e47), see
> http://marc.info/?l=qemu-devel&m=140471493425353&w=2.
> The feature is broken at the moment.
>
Thanks very much. Didn't notice that. Resend the missing part of patch.
>