diff mbox

[v2,1/2] tools/libxl/libxl_pci.c: Extract sysfs_dev_get_class from libxl__grant_vga_iomem_permission

Message ID 1499023553-30703-1-git-send-email-xiong.y.zhang@intel.com (mailing list archive)
State New, archived
Headers show

Commit Message

Zhang, Xiong Y July 2, 2017, 7:25 p.m. UTC
No functional change. Just extract this function for next patch and avoid
code repetition.

Signed-off-by: Xiong Zhang <xiong.y.zhang@intel.com>
---
    Changes in v2:
        -Add No functional change in commit message
        -Use 'goto out' style error handling
---
 tools/libxl/libxl_pci.c | 47 +++++++++++++++++++++++++++++------------------
 1 file changed, 29 insertions(+), 18 deletions(-)

Comments

Wei Liu July 4, 2017, 11:07 a.m. UTC | #1
On Mon, Jul 03, 2017 at 03:25:52AM +0800, Xiong Zhang wrote:
> No functional change. Just extract this function for next patch and avoid
> code repetition.
> 
> Signed-off-by: Xiong Zhang <xiong.y.zhang@intel.com>

Acked-by: Wei Liu <wei.liu2@citrix.com>

Note to self: maybe add some blank lines while committing.

> ---
>     Changes in v2:
>         -Add No functional change in commit message
>         -Use 'goto out' style error handling
> ---
>  tools/libxl/libxl_pci.c | 47 +++++++++++++++++++++++++++++------------------
>  1 file changed, 29 insertions(+), 18 deletions(-)
> 
> diff --git a/tools/libxl/libxl_pci.c b/tools/libxl/libxl_pci.c
> index b14df16..d109930 100644
> --- a/tools/libxl/libxl_pci.c
> +++ b/tools/libxl/libxl_pci.c
> @@ -531,6 +531,34 @@ static uint16_t sysfs_dev_get_device(libxl__gc *gc, libxl_device_pci *pcidev)
>      return pci_device_device;
>  }
>  
> +static int sysfs_dev_get_class(libxl__gc *gc, libxl_device_pci *pcidev,
> +                               unsigned long *class)
> +{
> +    char *pci_device_class_path = GCSPRINTF(SYSFS_PCI_DEV"/"PCI_BDF"/class",
> +                     pcidev->domain, pcidev->bus, pcidev->dev, pcidev->func);
> +    int read_items, ret = 0;
> +
> +    FILE *f = fopen(pci_device_class_path, "r");
> +    if (!f) {
> +        LOGE(ERROR,
> +             "pci device "PCI_BDF" does not have class attribute",
> +             pcidev->domain, pcidev->bus, pcidev->dev, pcidev->func);
> +        ret = ERROR_FAIL;
> +        goto out;
> +    }

Here.

> +    read_items = fscanf(f, "0x%lx\n", class);

Here.

> +    fclose(f);

Here.

> +    if (read_items != 1) {
> +        LOGE(ERROR,
> +             "cannot read class of pci device "PCI_BDF,
> +             pcidev->domain, pcidev->bus, pcidev->dev, pcidev->func);
> +        ret = ERROR_FAIL;
> +    }
> +
> +out:
> +    return ret;
> +}
> +
Roger Pau Monné July 4, 2017, 11:30 a.m. UTC | #2
On Tue, Jul 04, 2017 at 12:07:30PM +0100, Wei Liu wrote:
> On Mon, Jul 03, 2017 at 03:25:52AM +0800, Xiong Zhang wrote:
> > No functional change. Just extract this function for next patch and avoid
> > code repetition.
> > 
> > Signed-off-by: Xiong Zhang <xiong.y.zhang@intel.com>
> 
> Acked-by: Wei Liu <wei.liu2@citrix.com>
> 
> Note to self: maybe add some blank lines while committing.

Not that I intend this patch to fix this, but poking ad sysfs nodes
should be done in libxl_linux.c.

Roger.
Wei Liu July 4, 2017, 11:34 a.m. UTC | #3
On Tue, Jul 04, 2017 at 12:30:58PM +0100, Roger Pau Monné wrote:
> On Tue, Jul 04, 2017 at 12:07:30PM +0100, Wei Liu wrote:
> > On Mon, Jul 03, 2017 at 03:25:52AM +0800, Xiong Zhang wrote:
> > > No functional change. Just extract this function for next patch and avoid
> > > code repetition.
> > > 
> > > Signed-off-by: Xiong Zhang <xiong.y.zhang@intel.com>
> > 
> > Acked-by: Wei Liu <wei.liu2@citrix.com>
> > 
> > Note to self: maybe add some blank lines while committing.
> 
> Not that I intend this patch to fix this, but poking ad sysfs nodes
> should be done in libxl_linux.c.

Indeed. Patches welcome...

> 
> Roger.
diff mbox

Patch

diff --git a/tools/libxl/libxl_pci.c b/tools/libxl/libxl_pci.c
index b14df16..d109930 100644
--- a/tools/libxl/libxl_pci.c
+++ b/tools/libxl/libxl_pci.c
@@ -531,6 +531,34 @@  static uint16_t sysfs_dev_get_device(libxl__gc *gc, libxl_device_pci *pcidev)
     return pci_device_device;
 }
 
+static int sysfs_dev_get_class(libxl__gc *gc, libxl_device_pci *pcidev,
+                               unsigned long *class)
+{
+    char *pci_device_class_path = GCSPRINTF(SYSFS_PCI_DEV"/"PCI_BDF"/class",
+                     pcidev->domain, pcidev->bus, pcidev->dev, pcidev->func);
+    int read_items, ret = 0;
+
+    FILE *f = fopen(pci_device_class_path, "r");
+    if (!f) {
+        LOGE(ERROR,
+             "pci device "PCI_BDF" does not have class attribute",
+             pcidev->domain, pcidev->bus, pcidev->dev, pcidev->func);
+        ret = ERROR_FAIL;
+        goto out;
+    }
+    read_items = fscanf(f, "0x%lx\n", class);
+    fclose(f);
+    if (read_items != 1) {
+        LOGE(ERROR,
+             "cannot read class of pci device "PCI_BDF,
+             pcidev->domain, pcidev->bus, pcidev->dev, pcidev->func);
+        ret = ERROR_FAIL;
+    }
+
+out:
+    return ret;
+}
+
 typedef struct {
     uint16_t vendor;
     uint16_t device;
@@ -1652,27 +1680,10 @@  int libxl__grant_vga_iomem_permission(libxl__gc *gc, const uint32_t domid,
         uint64_t vga_iomem_start = 0xa0000 >> XC_PAGE_SHIFT;
         uint32_t stubdom_domid;
         libxl_device_pci *pcidev = &d_config->pcidevs[i];
-        char *pci_device_class_path =
-            GCSPRINTF(SYSFS_PCI_DEV"/"PCI_BDF"/class",
-                      pcidev->domain, pcidev->bus, pcidev->dev, pcidev->func);
-        int read_items;
         unsigned long pci_device_class;
 
-        FILE *f = fopen(pci_device_class_path, "r");
-        if (!f) {
-            LOGED(ERROR, domid,
-                  "pci device "PCI_BDF" does not have class attribute",
-                  pcidev->domain, pcidev->bus, pcidev->dev, pcidev->func);
+        if (sysfs_dev_get_class(gc, pcidev, &pci_device_class))
             continue;
-        }
-        read_items = fscanf(f, "0x%lx\n", &pci_device_class);
-        fclose(f);
-        if (read_items != 1) {
-            LOGED(ERROR, domid,
-                  "cannot read class of pci device "PCI_BDF,
-                  pcidev->domain, pcidev->bus, pcidev->dev, pcidev->func);
-            continue;
-        }
         if (pci_device_class != 0x030000) /* VGA class */
             continue;