WARNING - OLD ARCHIVES

This is an archived copy of the Xen.org mailing list, which we have preserved to ensure that existing links to archives are not broken. The live archive, which contains the latest emails, can be found at http://lists.xen.org/
   
 
 
Xen 
 
Home Products Support Community News
 
   
 

xen-devel

Re: [Xen-devel] [PATCH] libxl: create pci backend only when there are pc

To: Roger Pau Monne <roger.pau@xxxxxxxxxxxxx>
Subject: Re: [Xen-devel] [PATCH] libxl: create pci backend only when there are pci devices
From: Ian Campbell <Ian.Campbell@xxxxxxxxxx>
Date: Wed, 14 Sep 2011 14:31:14 +0200
Cc: "xen-devel@xxxxxxxxxxxxxxxxxxx" <xen-devel@xxxxxxxxxxxxxxxxxxx>
Delivery-date: Wed, 14 Sep 2011 05:35:30 -0700
Envelope-to: www-data@xxxxxxxxxxxxxxxxxxx
In-reply-to: <63e254468d6e8d81baea.1316002763@loki>
List-help: <mailto:xen-devel-request@lists.xensource.com?subject=help>
List-id: Xen developer discussion <xen-devel.lists.xensource.com>
List-post: <mailto:xen-devel@lists.xensource.com>
List-subscribe: <http://lists.xensource.com/mailman/listinfo/xen-devel>, <mailto:xen-devel-request@lists.xensource.com?subject=subscribe>
List-unsubscribe: <http://lists.xensource.com/mailman/listinfo/xen-devel>, <mailto:xen-devel-request@lists.xensource.com?subject=unsubscribe>
Organization: Citrix Systems, Inc.
References: <63e254468d6e8d81baea.1316002763@loki>
Sender: xen-devel-bounces@xxxxxxxxxxxxxxxxxxx
On Wed, 2011-09-14 at 08:19 -0400, Roger Pau Monne wrote:
> # HG changeset patch
> # User Roger Pau Monne <roger.pau@xxxxxxxxxxxxx>
> # Date 1316002720 -7200
> # Node ID 63e254468d6e8d81baeafaed68f05791dc21eb4e
> # Parent  ac33d68e89767d49113824e5661c49a5465a18e7
> libxl: create pci backend only when there are pci devices.

I think I recall discussing this a way back but I don't recall the
specific rationale, can you add something to the commit message please?

Also does this continue to allow a subsequent pci hotplug to work? I
expect it does but it would be useful to check.

Ian.

> 
> Signed-off-by: Roger Pau Monne <roger.pau@xxxxxxxxxxxxx>
> 
> diff -r ac33d68e8976 -r 63e254468d6e tools/libxl/libxl_create.c
> --- a/tools/libxl/libxl_create.c      Thu Sep 08 15:13:06 2011 +0100
> +++ b/tools/libxl/libxl_create.c      Wed Sep 14 14:18:40 2011 +0200
> @@ -584,12 +584,14 @@ static int do_domain_create(libxl__gc *g
>      for (i = 0; i < d_config->num_pcidevs; i++)
>          libxl__device_pci_add(gc, domid, &d_config->pcidevs[i], 1);
>  
> -    ret = libxl__create_pci_backend(gc, domid, d_config->pcidevs,
> -                                    d_config->num_pcidevs);
> -    if (ret < 0) {
> -        LIBXL__LOG(ctx, LIBXL__LOG_ERROR,
> -                   "libxl_create_pci_backend failed: %d", ret);
> -        goto error_out;
> +    if (d_config->num_pcidevs > 0) {
> +        ret = libxl__create_pci_backend(gc, domid, d_config->pcidevs,
> +                                        d_config->num_pcidevs);
> +        if (ret < 0) {
> +            LIBXL__LOG(ctx, LIBXL__LOG_ERROR,
> +                "libxl_create_pci_backend failed: %d", ret);
> +            goto error_out;
> +        }
>      }
>  
>      if (d_config->c_info.type == LIBXL_DOMAIN_TYPE_PV &&
> 
> _______________________________________________
> 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