diff mbox

[RFC,2/6] vfio: Setup IGD quirks earlier

Message ID 1496079043-26694-3-git-send-email-zhi.a.wang@intel.com
State New
Headers show

Commit Message

Wang, Zhi A May 29, 2017, 5:30 p.m. UTC
Initialize IGD quirks a bit earlier since we're going to support IGD
stolen memory under both primary mode (legacy mode) and secondary mode
and we need one extra memory region from IGD quirks.

Suggested-by: Xiong Zhang <xiong.y.zhang@intel.com>
Signed-off-by: Zhi Wang <zhi.a.wang@intel.com>
---
 hw/vfio/pci-quirks.c | 30 +++++++++++++++++-------------
 1 file changed, 17 insertions(+), 13 deletions(-)

Comments

Alex Williamson June 1, 2017, 8:34 p.m. UTC | #1
On Tue, 30 May 2017 01:30:32 +0800
Zhi Wang <zhi.a.wang@intel.com> wrote:

> Initialize IGD quirks a bit earlier since we're going to support IGD
> stolen memory under both primary mode (legacy mode) and secondary mode
> and we need one extra memory region from IGD quirks.
> 
> Suggested-by: Xiong Zhang <xiong.y.zhang@intel.com>
> Signed-off-by: Zhi Wang <zhi.a.wang@intel.com>
> ---
>  hw/vfio/pci-quirks.c | 30 +++++++++++++++++-------------
>  1 file changed, 17 insertions(+), 13 deletions(-)
> 
> diff --git a/hw/vfio/pci-quirks.c b/hw/vfio/pci-quirks.c
> index 71360ef..e0a0c13 100644
> --- a/hw/vfio/pci-quirks.c
> +++ b/hw/vfio/pci-quirks.c
> @@ -1395,6 +1395,14 @@ static void vfio_probe_igd_bar4_quirk(VFIOPCIDevice *vdev, int nr)
>  
>      gen = info->gen;
>  
> +    /* Setup our quirk to munge GTT addresses to the VM allocated buffer */
> +    quirk = g_malloc0(sizeof(*quirk));
> +    igd = quirk->data = g_malloc0(sizeof(*igd));
> +    igd->vdev = vdev;
> +    igd->index = ~0;
> +    igd->bdsm = vfio_pci_read_config(&vdev->pdev, IGD_BDSM, 4);
> +    igd->bdsm &= ~((1 << 20) - 1); /* 1MB aligned */
> +

This patch does not stand on its own, we alloc memory and setup a few
things earlier, but there are numerous returns before we get to the
next chunk below.  So the most obvious result of this patch alone is
that it introduces a memory leak.  Thanks,

Alex

>      /*
>       * We need to create an LPC/ISA bridge at PCI bus address 00:1f.0 that we
>       * can stuff host values into, so if there's already one there and it's not
> @@ -1502,23 +1510,19 @@ static void vfio_probe_igd_bar4_quirk(VFIOPCIDevice *vdev, int nr)
>          goto out;
>      }
>  
> -    /* Setup our quirk to munge GTT addresses to the VM allocated buffer */
> -    quirk = g_malloc0(sizeof(*quirk));
> -    quirk->mem = g_new0(MemoryRegion, 2);
> -    quirk->nr_mem = 2;
> -    igd = quirk->data = g_malloc0(sizeof(*igd));
> -    igd->vdev = vdev;
> -    igd->index = ~0;
> -    igd->bdsm = vfio_pci_read_config(&vdev->pdev, IGD_BDSM, 4);
> -    igd->bdsm &= ~((1 << 20) - 1); /* 1MB aligned */
> +    quirk->mem = g_renew(MemoryRegion, quirk->mem, 2);
> +
> +    memory_region_init_io(&quirk->mem[quirk->nr_mem++], OBJECT(vdev),
> +                          &vfio_igd_index_quirk, igd, "vfio-igd-index-quirk",
> +                          4);
>  
> -    memory_region_init_io(&quirk->mem[0], OBJECT(vdev), &vfio_igd_index_quirk,
> -                          igd, "vfio-igd-index-quirk", 4);
>      memory_region_add_subregion_overlap(vdev->bars[nr].region.mem,
>                                          0, &quirk->mem[0], 1);
>  
> -    memory_region_init_io(&quirk->mem[1], OBJECT(vdev), &vfio_igd_data_quirk,
> -                          igd, "vfio-igd-data-quirk", 4);
> +    memory_region_init_io(&quirk->mem[quirk->nr_mem++], OBJECT(vdev),
> +                          &vfio_igd_data_quirk, igd, "vfio-igd-data-quirk",
> +                          4);
> +
>      memory_region_add_subregion_overlap(vdev->bars[nr].region.mem,
>                                          4, &quirk->mem[1], 1);
>
diff mbox

Patch

diff --git a/hw/vfio/pci-quirks.c b/hw/vfio/pci-quirks.c
index 71360ef..e0a0c13 100644
--- a/hw/vfio/pci-quirks.c
+++ b/hw/vfio/pci-quirks.c
@@ -1395,6 +1395,14 @@  static void vfio_probe_igd_bar4_quirk(VFIOPCIDevice *vdev, int nr)
 
     gen = info->gen;
 
+    /* Setup our quirk to munge GTT addresses to the VM allocated buffer */
+    quirk = g_malloc0(sizeof(*quirk));
+    igd = quirk->data = g_malloc0(sizeof(*igd));
+    igd->vdev = vdev;
+    igd->index = ~0;
+    igd->bdsm = vfio_pci_read_config(&vdev->pdev, IGD_BDSM, 4);
+    igd->bdsm &= ~((1 << 20) - 1); /* 1MB aligned */
+
     /*
      * We need to create an LPC/ISA bridge at PCI bus address 00:1f.0 that we
      * can stuff host values into, so if there's already one there and it's not
@@ -1502,23 +1510,19 @@  static void vfio_probe_igd_bar4_quirk(VFIOPCIDevice *vdev, int nr)
         goto out;
     }
 
-    /* Setup our quirk to munge GTT addresses to the VM allocated buffer */
-    quirk = g_malloc0(sizeof(*quirk));
-    quirk->mem = g_new0(MemoryRegion, 2);
-    quirk->nr_mem = 2;
-    igd = quirk->data = g_malloc0(sizeof(*igd));
-    igd->vdev = vdev;
-    igd->index = ~0;
-    igd->bdsm = vfio_pci_read_config(&vdev->pdev, IGD_BDSM, 4);
-    igd->bdsm &= ~((1 << 20) - 1); /* 1MB aligned */
+    quirk->mem = g_renew(MemoryRegion, quirk->mem, 2);
+
+    memory_region_init_io(&quirk->mem[quirk->nr_mem++], OBJECT(vdev),
+                          &vfio_igd_index_quirk, igd, "vfio-igd-index-quirk",
+                          4);
 
-    memory_region_init_io(&quirk->mem[0], OBJECT(vdev), &vfio_igd_index_quirk,
-                          igd, "vfio-igd-index-quirk", 4);
     memory_region_add_subregion_overlap(vdev->bars[nr].region.mem,
                                         0, &quirk->mem[0], 1);
 
-    memory_region_init_io(&quirk->mem[1], OBJECT(vdev), &vfio_igd_data_quirk,
-                          igd, "vfio-igd-data-quirk", 4);
+    memory_region_init_io(&quirk->mem[quirk->nr_mem++], OBJECT(vdev),
+                          &vfio_igd_data_quirk, igd, "vfio-igd-data-quirk",
+                          4);
+
     memory_region_add_subregion_overlap(vdev->bars[nr].region.mem,
                                         4, &quirk->mem[1], 1);