|
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] Re: [Xen-devel] [PATCH] libxl: fix bootloader args setting
On Fri, 2012-02-03 at 13:39 -0500, Zhigang Wang wrote:
> # HG changeset patch
> # User Zhigang Wang <zhigang.x.wang@xxxxxxxxxx>
> # Date 1328294351 18000
> # Node ID 9ae3b2b7b494ab8fbc54aa923101dc48132c6c6e
> # Parent e2722b24dc0962de37215320b05d1bb7c4c42864
> libxl: fix bootloader args setting
This looks correct but please could you expand your commit message to
explain what the actual issue you are fixing is e.g. such that someone
reading through the logs in the future can tell that this is a fix they
might want for the issue they are seeing
Ian.
>
> Signed-off-by: Zhigang Wang <zhigang.x.wang@xxxxxxxxxx>
>
> diff -r e2722b24dc09 -r 9ae3b2b7b494 tools/libxl/libxl_bootloader.c
> --- a/tools/libxl/libxl_bootloader.c Thu Jan 26 17:43:31 2012 +0000
> +++ b/tools/libxl/libxl_bootloader.c Fri Feb 03 13:39:11 2012 -0500
> @@ -49,9 +49,11 @@ static char **make_bootloader_args(libxl
> flexarray_set(args, nr++, libxl__sprintf(gc, "--output-directory=%s",
> "/var/run/libxl/"));
>
> if (info->u.pv.bootloader_args) {
> - char *p = info->u.pv.bootloader_args[0];
> - while (*(p++))
> - flexarray_set(args, nr++, p);
> + char **p = info->u.pv.bootloader_args;
> + while (*p) {
> + flexarray_set(args, nr++, *p);
> + p++;
> + }
> }
>
> flexarray_set(args, nr++, disk);
>
> _______________________________________________
> Xen-devel mailing list
> Xen-devel@xxxxxxxxxxxxxxxxxxx
> http://lists.xensource.com/xen-devel
_______________________________________________
Xen-devel mailing list
Xen-devel@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-devel
|
![]() |
Lists.xenproject.org is hosted with RackSpace, monitoring our |