All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH V3] Rename use_acpi_pci_hotplug to more appropriate use_acpi_hotplug_bridge
@ 2020-06-16 12:31 Ani Sinha
  2020-06-16 13:17 ` Igor Mammedov
  2020-06-16 17:14 ` no-reply
  0 siblings, 2 replies; 7+ messages in thread
From: Ani Sinha @ 2020-06-16 12:31 UTC (permalink / raw)
  To: qemu-devel
  Cc: Ani Sinha, Michael S. Tsirkin, Aleksandar Markovic, ani,
	Igor Mammedov, Philippe Mathieu-Daudé,
	Aurelien Jarno

Currently, the option use_acpi_pci_hotplug is being used to control device
hotplug capability using ACPI for slots of cold plugged bridges. Hence, we
are renaming this option to better reflect what it actually does.

Signed-off-by: Ani Sinha <ani.sinha@nutanix.com>
---
 hw/acpi/piix4.c | 21 +++++++++++----------
 1 file changed, 11 insertions(+), 10 deletions(-)

diff --git a/hw/acpi/piix4.c b/hw/acpi/piix4.c
index 85c199b..7de44bc 100644
--- a/hw/acpi/piix4.c
+++ b/hw/acpi/piix4.c
@@ -77,7 +77,7 @@ typedef struct PIIX4PMState {
     Notifier powerdown_notifier;
 
     AcpiPciHpState acpi_pci_hotplug;
-    bool use_acpi_pci_hotplug;
+    bool use_acpi_hotplug_bridge;
 
     uint8_t disable_s3;
     uint8_t disable_s4;
@@ -204,16 +204,17 @@ static const VMStateDescription vmstate_pci_status = {
     }
 };
 
-static bool vmstate_test_use_acpi_pci_hotplug(void *opaque, int version_id)
+static bool vmstate_test_use_acpi_hotplug_bridge(void *opaque, int version_id)
 {
     PIIX4PMState *s = opaque;
-    return s->use_acpi_pci_hotplug;
+    return s->use_acpi_hotplug_bridge;
 }
 
-static bool vmstate_test_no_use_acpi_pci_hotplug(void *opaque, int version_id)
+static bool vmstate_test_no_use_acpi_hotplug_bridge(void *opaque,
+                                                    int version_id)
 {
     PIIX4PMState *s = opaque;
-    return !s->use_acpi_pci_hotplug;
+    return !s->use_acpi_hotplug_bridge;
 }
 
 static bool vmstate_test_use_memhp(void *opaque)
@@ -290,11 +291,11 @@ static const VMStateDescription vmstate_acpi = {
         VMSTATE_STRUCT_TEST(
             acpi_pci_hotplug.acpi_pcihp_pci_status[ACPI_PCIHP_BSEL_DEFAULT],
             PIIX4PMState,
-            vmstate_test_no_use_acpi_pci_hotplug,
+            vmstate_test_no_use_acpi_hotplug_bridge,
             2, vmstate_pci_status,
             struct AcpiPciHpPciStatus),
         VMSTATE_PCI_HOTPLUG(acpi_pci_hotplug, PIIX4PMState,
-                            vmstate_test_use_acpi_pci_hotplug),
+                            vmstate_test_use_acpi_hotplug_bridge),
         VMSTATE_END_OF_LIST()
     },
     .subsections = (const VMStateDescription*[]) {
@@ -528,7 +529,7 @@ I2CBus *piix4_pm_init(PCIBus *bus, int devfn, uint32_t smb_io_base,
     s->smi_irq = smi_irq;
     s->smm_enabled = smm_enabled;
     if (xen_enabled()) {
-        s->use_acpi_pci_hotplug = false;
+        s->use_acpi_hotplug_bridge = false;
     }
 
     qdev_init_nofail(dev);
@@ -593,7 +594,7 @@ static void piix4_acpi_system_hot_add_init(MemoryRegion *parent,
     memory_region_add_subregion(parent, GPE_BASE, &s->io_gpe);
 
     acpi_pcihp_init(OBJECT(s), &s->acpi_pci_hotplug, bus, parent,
-                    s->use_acpi_pci_hotplug);
+                    s->use_acpi_hotplug_bridge);
 
     s->cpu_hotplug_legacy = true;
     object_property_add_bool(OBJECT(s), "cpu-hotplug-legacy",
@@ -631,7 +632,7 @@ static Property piix4_pm_properties[] = {
     DEFINE_PROP_UINT8(ACPI_PM_PROP_S4_DISABLED, PIIX4PMState, disable_s4, 0),
     DEFINE_PROP_UINT8(ACPI_PM_PROP_S4_VAL, PIIX4PMState, s4_val, 2),
     DEFINE_PROP_BOOL("acpi-pci-hotplug-with-bridge-support", PIIX4PMState,
-                     use_acpi_pci_hotplug, true),
+                     use_acpi_hotplug_bridge, true),
     DEFINE_PROP_BOOL("memory-hotplug-support", PIIX4PMState,
                      acpi_memory_hotplug.is_enabled, true),
     DEFINE_PROP_END_OF_LIST(),
-- 
1.9.4



^ permalink raw reply related	[flat|nested] 7+ messages in thread

* Re: [PATCH V3] Rename use_acpi_pci_hotplug to more appropriate use_acpi_hotplug_bridge
  2020-06-16 12:31 [PATCH V3] Rename use_acpi_pci_hotplug to more appropriate use_acpi_hotplug_bridge Ani Sinha
@ 2020-06-16 13:17 ` Igor Mammedov
  2020-06-16 13:20   ` Ani Sinha
  2020-06-16 17:14 ` no-reply
  1 sibling, 1 reply; 7+ messages in thread
From: Igor Mammedov @ 2020-06-16 13:17 UTC (permalink / raw)
  To: Ani Sinha
  Cc: Michael S. Tsirkin, qemu-devel, Aleksandar Markovic, ani,
	Philippe Mathieu-Daudé,
	Aurelien Jarno

On Tue, 16 Jun 2020 12:31:39 +0000
Ani Sinha <ani.sinha@nutanix.com> wrote:

> Currently, the option use_acpi_pci_hotplug is being used to control device
> hotplug capability using ACPI for slots of cold plugged bridges. Hence, we
> are renaming this option to better reflect what it actually does.
> 
> Signed-off-by: Ani Sinha <ani.sinha@nutanix.com>
> ---

what was wrong with v2?
Also for the future,
can you add under --- line change log please?

>  hw/acpi/piix4.c | 21 +++++++++++----------
>  1 file changed, 11 insertions(+), 10 deletions(-)
> 
> diff --git a/hw/acpi/piix4.c b/hw/acpi/piix4.c
> index 85c199b..7de44bc 100644
> --- a/hw/acpi/piix4.c
> +++ b/hw/acpi/piix4.c
> @@ -77,7 +77,7 @@ typedef struct PIIX4PMState {
>      Notifier powerdown_notifier;
>  
>      AcpiPciHpState acpi_pci_hotplug;
> -    bool use_acpi_pci_hotplug;
> +    bool use_acpi_hotplug_bridge;
>  
>      uint8_t disable_s3;
>      uint8_t disable_s4;
> @@ -204,16 +204,17 @@ static const VMStateDescription vmstate_pci_status = {
>      }
>  };
>  
> -static bool vmstate_test_use_acpi_pci_hotplug(void *opaque, int version_id)
> +static bool vmstate_test_use_acpi_hotplug_bridge(void *opaque, int version_id)
>  {
>      PIIX4PMState *s = opaque;
> -    return s->use_acpi_pci_hotplug;
> +    return s->use_acpi_hotplug_bridge;
>  }
>  
> -static bool vmstate_test_no_use_acpi_pci_hotplug(void *opaque, int version_id)
> +static bool vmstate_test_no_use_acpi_hotplug_bridge(void *opaque,
> +                                                    int version_id)
>  {
>      PIIX4PMState *s = opaque;
> -    return !s->use_acpi_pci_hotplug;
> +    return !s->use_acpi_hotplug_bridge;
>  }
>  
>  static bool vmstate_test_use_memhp(void *opaque)
> @@ -290,11 +291,11 @@ static const VMStateDescription vmstate_acpi = {
>          VMSTATE_STRUCT_TEST(
>              acpi_pci_hotplug.acpi_pcihp_pci_status[ACPI_PCIHP_BSEL_DEFAULT],
>              PIIX4PMState,
> -            vmstate_test_no_use_acpi_pci_hotplug,
> +            vmstate_test_no_use_acpi_hotplug_bridge,
>              2, vmstate_pci_status,
>              struct AcpiPciHpPciStatus),
>          VMSTATE_PCI_HOTPLUG(acpi_pci_hotplug, PIIX4PMState,
> -                            vmstate_test_use_acpi_pci_hotplug),
> +                            vmstate_test_use_acpi_hotplug_bridge),
>          VMSTATE_END_OF_LIST()
>      },
>      .subsections = (const VMStateDescription*[]) {
> @@ -528,7 +529,7 @@ I2CBus *piix4_pm_init(PCIBus *bus, int devfn, uint32_t smb_io_base,
>      s->smi_irq = smi_irq;
>      s->smm_enabled = smm_enabled;
>      if (xen_enabled()) {
> -        s->use_acpi_pci_hotplug = false;
> +        s->use_acpi_hotplug_bridge = false;
>      }
>  
>      qdev_init_nofail(dev);
> @@ -593,7 +594,7 @@ static void piix4_acpi_system_hot_add_init(MemoryRegion *parent,
>      memory_region_add_subregion(parent, GPE_BASE, &s->io_gpe);
>  
>      acpi_pcihp_init(OBJECT(s), &s->acpi_pci_hotplug, bus, parent,
> -                    s->use_acpi_pci_hotplug);
> +                    s->use_acpi_hotplug_bridge);
>  
>      s->cpu_hotplug_legacy = true;
>      object_property_add_bool(OBJECT(s), "cpu-hotplug-legacy",
> @@ -631,7 +632,7 @@ static Property piix4_pm_properties[] = {
>      DEFINE_PROP_UINT8(ACPI_PM_PROP_S4_DISABLED, PIIX4PMState, disable_s4, 0),
>      DEFINE_PROP_UINT8(ACPI_PM_PROP_S4_VAL, PIIX4PMState, s4_val, 2),
>      DEFINE_PROP_BOOL("acpi-pci-hotplug-with-bridge-support", PIIX4PMState,
> -                     use_acpi_pci_hotplug, true),
> +                     use_acpi_hotplug_bridge, true),
>      DEFINE_PROP_BOOL("memory-hotplug-support", PIIX4PMState,
>                       acpi_memory_hotplug.is_enabled, true),
>      DEFINE_PROP_END_OF_LIST(),



^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PATCH V3] Rename use_acpi_pci_hotplug to more appropriate use_acpi_hotplug_bridge
  2020-06-16 13:17 ` Igor Mammedov
@ 2020-06-16 13:20   ` Ani Sinha
  2020-06-16 13:39     ` Igor Mammedov
  0 siblings, 1 reply; 7+ messages in thread
From: Ani Sinha @ 2020-06-16 13:20 UTC (permalink / raw)
  To: Igor Mammedov
  Cc: Ani Sinha, Michael S. Tsirkin, qemu-devel, Aleksandar Markovic,
	Philippe Mathieu-Daudé,
	Aurelien Jarno

[-- Attachment #1: Type: text/plain, Size: 4063 bytes --]

On Tue, Jun 16, 2020 at 6:47 PM Igor Mammedov <imammedo@redhat.com> wrote:

> On Tue, 16 Jun 2020 12:31:39 +0000
> Ani Sinha <ani.sinha@nutanix.com> wrote:
>
> > Currently, the option use_acpi_pci_hotplug is being used to control
> device
> > hotplug capability using ACPI for slots of cold plugged bridges. Hence,
> we
> > are renaming this option to better reflect what it actually does.
> >
> > Signed-off-by: Ani Sinha <ani.sinha@nutanix.com>
> > ---
>
> what was wrong with v2?


i removed the change-id string.


> Also for the future,
> can you add under --- line change log please?
>
> >  hw/acpi/piix4.c | 21 +++++++++++----------
> >  1 file changed, 11 insertions(+), 10 deletions(-)


It's already here.


> >
> > diff --git a/hw/acpi/piix4.c b/hw/acpi/piix4.c
> > index 85c199b..7de44bc 100644
> > --- a/hw/acpi/piix4.c
> > +++ b/hw/acpi/piix4.c
> > @@ -77,7 +77,7 @@ typedef struct PIIX4PMState {
> >      Notifier powerdown_notifier;
> >
> >      AcpiPciHpState acpi_pci_hotplug;
> > -    bool use_acpi_pci_hotplug;
> > +    bool use_acpi_hotplug_bridge;
> >
> >      uint8_t disable_s3;
> >      uint8_t disable_s4;
> > @@ -204,16 +204,17 @@ static const VMStateDescription vmstate_pci_status
> = {
> >      }
> >  };
> >
> > -static bool vmstate_test_use_acpi_pci_hotplug(void *opaque, int
> version_id)
> > +static bool vmstate_test_use_acpi_hotplug_bridge(void *opaque, int
> version_id)
> >  {
> >      PIIX4PMState *s = opaque;
> > -    return s->use_acpi_pci_hotplug;
> > +    return s->use_acpi_hotplug_bridge;
> >  }
> >
> > -static bool vmstate_test_no_use_acpi_pci_hotplug(void *opaque, int
> version_id)
> > +static bool vmstate_test_no_use_acpi_hotplug_bridge(void *opaque,
> > +                                                    int version_id)
> >  {
> >      PIIX4PMState *s = opaque;
> > -    return !s->use_acpi_pci_hotplug;
> > +    return !s->use_acpi_hotplug_bridge;
> >  }
> >
> >  static bool vmstate_test_use_memhp(void *opaque)
> > @@ -290,11 +291,11 @@ static const VMStateDescription vmstate_acpi = {
> >          VMSTATE_STRUCT_TEST(
> >
> acpi_pci_hotplug.acpi_pcihp_pci_status[ACPI_PCIHP_BSEL_DEFAULT],
> >              PIIX4PMState,
> > -            vmstate_test_no_use_acpi_pci_hotplug,
> > +            vmstate_test_no_use_acpi_hotplug_bridge,
> >              2, vmstate_pci_status,
> >              struct AcpiPciHpPciStatus),
> >          VMSTATE_PCI_HOTPLUG(acpi_pci_hotplug, PIIX4PMState,
> > -                            vmstate_test_use_acpi_pci_hotplug),
> > +                            vmstate_test_use_acpi_hotplug_bridge),
> >          VMSTATE_END_OF_LIST()
> >      },
> >      .subsections = (const VMStateDescription*[]) {
> > @@ -528,7 +529,7 @@ I2CBus *piix4_pm_init(PCIBus *bus, int devfn,
> uint32_t smb_io_base,
> >      s->smi_irq = smi_irq;
> >      s->smm_enabled = smm_enabled;
> >      if (xen_enabled()) {
> > -        s->use_acpi_pci_hotplug = false;
> > +        s->use_acpi_hotplug_bridge = false;
> >      }
> >
> >      qdev_init_nofail(dev);
> > @@ -593,7 +594,7 @@ static void
> piix4_acpi_system_hot_add_init(MemoryRegion *parent,
> >      memory_region_add_subregion(parent, GPE_BASE, &s->io_gpe);
> >
> >      acpi_pcihp_init(OBJECT(s), &s->acpi_pci_hotplug, bus, parent,
> > -                    s->use_acpi_pci_hotplug);
> > +                    s->use_acpi_hotplug_bridge);
> >
> >      s->cpu_hotplug_legacy = true;
> >      object_property_add_bool(OBJECT(s), "cpu-hotplug-legacy",
> > @@ -631,7 +632,7 @@ static Property piix4_pm_properties[] = {
> >      DEFINE_PROP_UINT8(ACPI_PM_PROP_S4_DISABLED, PIIX4PMState,
> disable_s4, 0),
> >      DEFINE_PROP_UINT8(ACPI_PM_PROP_S4_VAL, PIIX4PMState, s4_val, 2),
> >      DEFINE_PROP_BOOL("acpi-pci-hotplug-with-bridge-support",
> PIIX4PMState,
> > -                     use_acpi_pci_hotplug, true),
> > +                     use_acpi_hotplug_bridge, true),
> >      DEFINE_PROP_BOOL("memory-hotplug-support", PIIX4PMState,
> >                       acpi_memory_hotplug.is_enabled, true),
> >      DEFINE_PROP_END_OF_LIST(),
>
>

[-- Attachment #2: Type: text/html, Size: 6084 bytes --]

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PATCH V3] Rename use_acpi_pci_hotplug to more appropriate use_acpi_hotplug_bridge
  2020-06-16 13:20   ` Ani Sinha
@ 2020-06-16 13:39     ` Igor Mammedov
  2020-06-16 13:47       ` Ani Sinha
  0 siblings, 1 reply; 7+ messages in thread
From: Igor Mammedov @ 2020-06-16 13:39 UTC (permalink / raw)
  To: Ani Sinha
  Cc: Ani Sinha, Michael S. Tsirkin, qemu-devel, Aleksandar Markovic,
	Philippe Mathieu-Daudé,
	Aurelien Jarno

On Tue, 16 Jun 2020 18:50:13 +0530
Ani Sinha <ani@anisinha.ca> wrote:

> On Tue, Jun 16, 2020 at 6:47 PM Igor Mammedov <imammedo@redhat.com> wrote:
> 
> > On Tue, 16 Jun 2020 12:31:39 +0000
> > Ani Sinha <ani.sinha@nutanix.com> wrote:
> >  
> > > Currently, the option use_acpi_pci_hotplug is being used to control  
> > device  
> > > hotplug capability using ACPI for slots of cold plugged bridges. Hence,  
> > we  
> > > are renaming this option to better reflect what it actually does.
> > >
> > > Signed-off-by: Ani Sinha <ani.sinha@nutanix.com>
> > > ---  
> >
> > what was wrong with v2?  
> 
> 
> i removed the change-id string.
ok, usually we cary on ACK on resping if changes were trivial
and drop them if there was a non trivial change so it could be reviewed again.
Anyways, patch looks good so:

Reviewed-by: Igor Mammedov <imammedo@redhat.com>


> 
> 
> > Also for the future,
> > can you add under --- line change log please?
> >  
> > >  hw/acpi/piix4.c | 21 +++++++++++----------
> > >  1 file changed, 11 insertions(+), 10 deletions(-)  
> 
> 
> It's already here.

I've meant something like:

Signed-off-by: Ani Sinha <ani.sinha@nutanix.com>
---
 vX: - I might be blind and don't see changelog ...

> 
> 
> > >
> > > diff --git a/hw/acpi/piix4.c b/hw/acpi/piix4.c
> > > index 85c199b..7de44bc 100644
> > > --- a/hw/acpi/piix4.c
> > > +++ b/hw/acpi/piix4.c
> > > @@ -77,7 +77,7 @@ typedef struct PIIX4PMState {
> > >      Notifier powerdown_notifier;
> > >
> > >      AcpiPciHpState acpi_pci_hotplug;
> > > -    bool use_acpi_pci_hotplug;
> > > +    bool use_acpi_hotplug_bridge;
> > >
> > >      uint8_t disable_s3;
> > >      uint8_t disable_s4;
> > > @@ -204,16 +204,17 @@ static const VMStateDescription vmstate_pci_status  
> > = {  
> > >      }
> > >  };
> > >
> > > -static bool vmstate_test_use_acpi_pci_hotplug(void *opaque, int  
> > version_id)  
> > > +static bool vmstate_test_use_acpi_hotplug_bridge(void *opaque, int  
> > version_id)  
> > >  {
> > >      PIIX4PMState *s = opaque;
> > > -    return s->use_acpi_pci_hotplug;
> > > +    return s->use_acpi_hotplug_bridge;
> > >  }
> > >
> > > -static bool vmstate_test_no_use_acpi_pci_hotplug(void *opaque, int  
> > version_id)  
> > > +static bool vmstate_test_no_use_acpi_hotplug_bridge(void *opaque,
> > > +                                                    int version_id)
> > >  {
> > >      PIIX4PMState *s = opaque;
> > > -    return !s->use_acpi_pci_hotplug;
> > > +    return !s->use_acpi_hotplug_bridge;
> > >  }
> > >
> > >  static bool vmstate_test_use_memhp(void *opaque)
> > > @@ -290,11 +291,11 @@ static const VMStateDescription vmstate_acpi = {
> > >          VMSTATE_STRUCT_TEST(
> > >  
> > acpi_pci_hotplug.acpi_pcihp_pci_status[ACPI_PCIHP_BSEL_DEFAULT],  
> > >              PIIX4PMState,
> > > -            vmstate_test_no_use_acpi_pci_hotplug,
> > > +            vmstate_test_no_use_acpi_hotplug_bridge,
> > >              2, vmstate_pci_status,
> > >              struct AcpiPciHpPciStatus),
> > >          VMSTATE_PCI_HOTPLUG(acpi_pci_hotplug, PIIX4PMState,
> > > -                            vmstate_test_use_acpi_pci_hotplug),
> > > +                            vmstate_test_use_acpi_hotplug_bridge),
> > >          VMSTATE_END_OF_LIST()
> > >      },
> > >      .subsections = (const VMStateDescription*[]) {
> > > @@ -528,7 +529,7 @@ I2CBus *piix4_pm_init(PCIBus *bus, int devfn,  
> > uint32_t smb_io_base,  
> > >      s->smi_irq = smi_irq;
> > >      s->smm_enabled = smm_enabled;
> > >      if (xen_enabled()) {
> > > -        s->use_acpi_pci_hotplug = false;
> > > +        s->use_acpi_hotplug_bridge = false;
> > >      }
> > >
> > >      qdev_init_nofail(dev);
> > > @@ -593,7 +594,7 @@ static void  
> > piix4_acpi_system_hot_add_init(MemoryRegion *parent,  
> > >      memory_region_add_subregion(parent, GPE_BASE, &s->io_gpe);
> > >
> > >      acpi_pcihp_init(OBJECT(s), &s->acpi_pci_hotplug, bus, parent,
> > > -                    s->use_acpi_pci_hotplug);
> > > +                    s->use_acpi_hotplug_bridge);
> > >
> > >      s->cpu_hotplug_legacy = true;
> > >      object_property_add_bool(OBJECT(s), "cpu-hotplug-legacy",
> > > @@ -631,7 +632,7 @@ static Property piix4_pm_properties[] = {
> > >      DEFINE_PROP_UINT8(ACPI_PM_PROP_S4_DISABLED, PIIX4PMState,  
> > disable_s4, 0),  
> > >      DEFINE_PROP_UINT8(ACPI_PM_PROP_S4_VAL, PIIX4PMState, s4_val, 2),
> > >      DEFINE_PROP_BOOL("acpi-pci-hotplug-with-bridge-support",  
> > PIIX4PMState,  
> > > -                     use_acpi_pci_hotplug, true),
> > > +                     use_acpi_hotplug_bridge, true),
> > >      DEFINE_PROP_BOOL("memory-hotplug-support", PIIX4PMState,
> > >                       acpi_memory_hotplug.is_enabled, true),
> > >      DEFINE_PROP_END_OF_LIST(),  
> >
> >  



^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PATCH V3] Rename use_acpi_pci_hotplug to more appropriate use_acpi_hotplug_bridge
  2020-06-16 13:39     ` Igor Mammedov
@ 2020-06-16 13:47       ` Ani Sinha
  0 siblings, 0 replies; 7+ messages in thread
From: Ani Sinha @ 2020-06-16 13:47 UTC (permalink / raw)
  To: Igor Mammedov
  Cc: Michael S. Tsirkin, qemu-devel, Aleksandar Markovic, Ani Sinha,
	Philippe Mathieu-Daudé,
	Aurelien Jarno



> On Jun 16, 2020, at 7:09 PM, Igor Mammedov <imammedo@redhat.com> wrote:
> 
> I've meant something like:
> 
> Signed-off-by: Ani Sinha <ani.sinha@nutanix.com>
> ---
> vX: - I might be blind and don't see changelog .

Ah right. I was thinking you were referring to diff stat.

I will add changeling next time.

ani



^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PATCH V3] Rename use_acpi_pci_hotplug to more appropriate use_acpi_hotplug_bridge
  2020-06-16 12:31 [PATCH V3] Rename use_acpi_pci_hotplug to more appropriate use_acpi_hotplug_bridge Ani Sinha
  2020-06-16 13:17 ` Igor Mammedov
@ 2020-06-16 17:14 ` no-reply
  2020-06-20  7:50   ` Ani Sinha
  1 sibling, 1 reply; 7+ messages in thread
From: no-reply @ 2020-06-16 17:14 UTC (permalink / raw)
  To: ani.sinha
  Cc: ani.sinha, mst, qemu-devel, aleksandar.qemu.devel, ani, imammedo,
	philmd, aurelien

Patchew URL: https://patchew.org/QEMU/1592310699-58916-1-git-send-email-ani.sinha@nutanix.com/



Hi,

This series failed the asan build test. Please find the testing commands and
their output below. If you have Docker installed, you can probably reproduce it
locally.

=== TEST SCRIPT BEGIN ===
#!/bin/bash
export ARCH=x86_64
make docker-image-fedora V=1 NETWORK=1
time make docker-test-debug@fedora TARGET_LIST=x86_64-softmmu J=14 NETWORK=1
=== TEST SCRIPT END ===

PASS 32 test-opts-visitor /visitor/opts/range/beyond
PASS 33 test-opts-visitor /visitor/opts/dict/unvisited
MALLOC_PERTURB_=${MALLOC_PERTURB_:-$(( ${RANDOM:-0} % 255 + 1))}  tests/test-coroutine -m=quick -k --tap < /dev/null | ./scripts/tap-driver.pl --test-name="test-coroutine" 
==6255==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
==6255==WARNING: ASan is ignoring requested __asan_handle_no_return: stack top: 0x7ffcb8986000; bottom 0x7f7dfe920000; size: 0x007eba066000 (544286859264)
False positive error reports may follow
For details see https://github.com/google/sanitizers/issues/189
PASS 1 test-coroutine /basic/no-dangling-access
---
PASS 1 fdc-test /x86_64/fdc/cmos
PASS 2 fdc-test /x86_64/fdc/no_media_on_start
PASS 3 fdc-test /x86_64/fdc/read_without_media
==6280==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
PASS 4 fdc-test /x86_64/fdc/media_change
PASS 5 fdc-test /x86_64/fdc/sense_interrupt
PASS 6 fdc-test /x86_64/fdc/relative_seek
---
PASS 11 test-aio /aio/event/wait
PASS 12 test-aio /aio/event/flush
PASS 13 test-aio /aio/event/wait/no-flush-cb
==6290==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
PASS 14 test-aio /aio/timer/schedule
PASS 15 test-aio /aio/coroutine/queue-chaining
PASS 16 test-aio /aio-gsource/flush
---
PASS 28 test-aio /aio-gsource/timer/schedule
MALLOC_PERTURB_=${MALLOC_PERTURB_:-$(( ${RANDOM:-0} % 255 + 1))}  tests/test-aio-multithread -m=quick -k --tap < /dev/null | ./scripts/tap-driver.pl --test-name="test-aio-multithread" 
PASS 1 test-aio-multithread /aio/multi/lifecycle
==6295==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
PASS 2 test-aio-multithread /aio/multi/schedule
PASS 3 test-aio-multithread /aio/multi/mutex/contended
PASS 12 fdc-test /x86_64/fdc/read_no_dma_19
PASS 13 fdc-test /x86_64/fdc/fuzz-registers
MALLOC_PERTURB_=${MALLOC_PERTURB_:-$(( ${RANDOM:-0} % 255 + 1))}  QTEST_QEMU_BINARY=x86_64-softmmu/qemu-system-x86_64 QTEST_QEMU_IMG=qemu-img tests/qtest/ide-test -m=quick -k --tap < /dev/null | ./scripts/tap-driver.pl --test-name="ide-test" 
==6322==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
PASS 1 ide-test /x86_64/ide/identify
==6328==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
PASS 4 test-aio-multithread /aio/multi/mutex/handoff
PASS 2 ide-test /x86_64/ide/flush
==6339==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
PASS 3 ide-test /x86_64/ide/bmdma/simple_rw
**
ERROR:/tmp/qemu-test/src/tests/test-aio-multithread.c:365:test_multi_fair_mutex: assertion failed (counter == atomic_counter): (90146 == 90147)
ERROR - Bail out! ERROR:/tmp/qemu-test/src/tests/test-aio-multithread.c:365:test_multi_fair_mutex: assertion failed (counter == atomic_counter): (90146 == 90147)
make: *** [/tmp/qemu-test/src/tests/Makefile.include:648: check-unit] Error 1
make: *** Waiting for unfinished jobs....
==6345==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
PASS 4 ide-test /x86_64/ide/bmdma/trim
==6351==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
==6357==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
==6363==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
==6369==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
==6375==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
==6381==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
==6387==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
==6393==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
==6399==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
PASS 5 ide-test /x86_64/ide/bmdma/various_prdts
==6405==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
==6405==WARNING: ASan is ignoring requested __asan_handle_no_return: stack top: 0x7ffd1bfdc000; bottom 0x7f811fddc000; size: 0x007bfc200000 (532510932992)
False positive error reports may follow
For details see https://github.com/google/sanitizers/issues/189
PASS 6 ide-test /x86_64/ide/bmdma/no_busmaster
PASS 7 ide-test /x86_64/ide/flush/nodev
==6416==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
PASS 8 ide-test /x86_64/ide/flush/empty_drive
==6421==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
PASS 9 ide-test /x86_64/ide/flush/retry_pci
==6427==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
PASS 10 ide-test /x86_64/ide/flush/retry_isa
==6433==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
PASS 11 ide-test /x86_64/ide/cdrom/pio
==6439==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
PASS 12 ide-test /x86_64/ide/cdrom/pio_large
==6445==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
PASS 13 ide-test /x86_64/ide/cdrom/dma
MALLOC_PERTURB_=${MALLOC_PERTURB_:-$(( ${RANDOM:-0} % 255 + 1))}  QTEST_QEMU_BINARY=x86_64-softmmu/qemu-system-x86_64 QTEST_QEMU_IMG=qemu-img tests/qtest/ahci-test -m=quick -k --tap < /dev/null | ./scripts/tap-driver.pl --test-name="ahci-test" 
==6459==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
PASS 1 ahci-test /x86_64/ahci/sanity
==6465==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
PASS 2 ahci-test /x86_64/ahci/pci_spec
==6471==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
PASS 3 ahci-test /x86_64/ahci/pci_enable
==6477==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
PASS 4 ahci-test /x86_64/ahci/hba_spec
==6483==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
PASS 5 ahci-test /x86_64/ahci/hba_enable
==6489==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
PASS 6 ahci-test /x86_64/ahci/identify
==6495==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
PASS 7 ahci-test /x86_64/ahci/max
==6501==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
PASS 8 ahci-test /x86_64/ahci/reset
==6507==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
==6507==WARNING: ASan is ignoring requested __asan_handle_no_return: stack top: 0x7ffce6f97000; bottom 0x7f1aa27aa000; size: 0x00e2447ed000 (971811770368)
False positive error reports may follow
For details see https://github.com/google/sanitizers/issues/189
PASS 9 ahci-test /x86_64/ahci/io/pio/lba28/simple/zero
==6513==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
==6513==WARNING: ASan is ignoring requested __asan_handle_no_return: stack top: 0x7ffd21206000; bottom 0x7f39807fe000; size: 0x00c3a0a08000 (840213495808)
False positive error reports may follow
For details see https://github.com/google/sanitizers/issues/189
PASS 10 ahci-test /x86_64/ahci/io/pio/lba28/simple/low
==6519==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
==6519==WARNING: ASan is ignoring requested __asan_handle_no_return: stack top: 0x7fff6cbeb000; bottom 0x7f2c023f9000; size: 0x00d36a7f2000 (908024815616)
False positive error reports may follow
For details see https://github.com/google/sanitizers/issues/189
PASS 11 ahci-test /x86_64/ahci/io/pio/lba28/simple/high
==6525==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
==6525==WARNING: ASan is ignoring requested __asan_handle_no_return: stack top: 0x7ffc13fcf000; bottom 0x7f8e559f9000; size: 0x006dbe5d6000 (471345225728)
False positive error reports may follow
For details see https://github.com/google/sanitizers/issues/189
PASS 12 ahci-test /x86_64/ahci/io/pio/lba28/double/zero
==6531==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
==6531==WARNING: ASan is ignoring requested __asan_handle_no_return: stack top: 0x7ffdbc4f1000; bottom 0x7ffa1d3f9000; size: 0x00039f0f8000 (15553495040)
False positive error reports may follow
For details see https://github.com/google/sanitizers/issues/189
PASS 13 ahci-test /x86_64/ahci/io/pio/lba28/double/low
==6537==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
==6537==WARNING: ASan is ignoring requested __asan_handle_no_return: stack top: 0x7fff49ff9000; bottom 0x7f8232df9000; size: 0x007d17200000 (537258885120)
False positive error reports may follow
For details see https://github.com/google/sanitizers/issues/189
PASS 14 ahci-test /x86_64/ahci/io/pio/lba28/double/high
==6543==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
==6543==WARNING: ASan is ignoring requested __asan_handle_no_return: stack top: 0x7ffd10b42000; bottom 0x7f6ef29f9000; size: 0x008e1e149000 (610390020096)
False positive error reports may follow
For details see https://github.com/google/sanitizers/issues/189
PASS 15 ahci-test /x86_64/ahci/io/pio/lba28/long/zero
==6549==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
==6549==WARNING: ASan is ignoring requested __asan_handle_no_return: stack top: 0x7ffea5219000; bottom 0x7f1031bfe000; size: 0x00ee7361b000 (1024137998336)
False positive error reports may follow
For details see https://github.com/google/sanitizers/issues/189
PASS 16 ahci-test /x86_64/ahci/io/pio/lba28/long/low
==6555==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
==6555==WARNING: ASan is ignoring requested __asan_handle_no_return: stack top: 0x7ffedf363000; bottom 0x7f43faba1000; size: 0x00bae47c2000 (802697256960)
False positive error reports may follow
For details see https://github.com/google/sanitizers/issues/189
PASS 17 ahci-test /x86_64/ahci/io/pio/lba28/long/high
==6561==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
PASS 18 ahci-test /x86_64/ahci/io/pio/lba28/short/zero
==6567==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
PASS 19 ahci-test /x86_64/ahci/io/pio/lba28/short/low
==6573==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
PASS 20 ahci-test /x86_64/ahci/io/pio/lba28/short/high
==6579==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
==6579==WARNING: ASan is ignoring requested __asan_handle_no_return: stack top: 0x7ffda3846000; bottom 0x7f1d5a7aa000; size: 0x00e04909c000 (963298050048)
False positive error reports may follow
For details see https://github.com/google/sanitizers/issues/189
PASS 21 ahci-test /x86_64/ahci/io/pio/lba48/simple/zero
==6585==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
==6585==WARNING: ASan is ignoring requested __asan_handle_no_return: stack top: 0x7ffe2f2ba000; bottom 0x7f0dd35f9000; size: 0x00f05bcc1000 (1032332251136)
False positive error reports may follow
For details see https://github.com/google/sanitizers/issues/189
PASS 22 ahci-test /x86_64/ahci/io/pio/lba48/simple/low
==6591==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
==6591==WARNING: ASan is ignoring requested __asan_handle_no_return: stack top: 0x7fff1cfb1000; bottom 0x7f96b65fe000; size: 0x0068669b3000 (448398045184)
False positive error reports may follow
For details see https://github.com/google/sanitizers/issues/189
PASS 23 ahci-test /x86_64/ahci/io/pio/lba48/simple/high
==6597==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
==6597==WARNING: ASan is ignoring requested __asan_handle_no_return: stack top: 0x7ffe17936000; bottom 0x7f57beff9000; size: 0x00a65893d000 (714450653184)
False positive error reports may follow
For details see https://github.com/google/sanitizers/issues/189
PASS 24 ahci-test /x86_64/ahci/io/pio/lba48/double/zero
==6603==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
==6603==WARNING: ASan is ignoring requested __asan_handle_no_return: stack top: 0x7ffcaa231000; bottom 0x7f3f65bba000; size: 0x00bd44677000 (812896448512)
False positive error reports may follow
For details see https://github.com/google/sanitizers/issues/189
PASS 25 ahci-test /x86_64/ahci/io/pio/lba48/double/low
==6609==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
==6609==WARNING: ASan is ignoring requested __asan_handle_no_return: stack top: 0x7ffd81483000; bottom 0x7f050959a000; size: 0x00f877ee9000 (1067164012544)
False positive error reports may follow
For details see https://github.com/google/sanitizers/issues/189
PASS 26 ahci-test /x86_64/ahci/io/pio/lba48/double/high
==6615==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
==6615==WARNING: ASan is ignoring requested __asan_handle_no_return: stack top: 0x7ffc35356000; bottom 0x7f8d18ff9000; size: 0x006f1c35d000 (477214658560)
False positive error reports may follow
For details see https://github.com/google/sanitizers/issues/189
PASS 27 ahci-test /x86_64/ahci/io/pio/lba48/long/zero
==6621==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
==6621==WARNING: ASan is ignoring requested __asan_handle_no_return: stack top: 0x7ffc9f37f000; bottom 0x7f728d5fe000; size: 0x008a11d81000 (593004859392)
False positive error reports may follow
For details see https://github.com/google/sanitizers/issues/189
PASS 28 ahci-test /x86_64/ahci/io/pio/lba48/long/low
==6627==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
==6627==WARNING: ASan is ignoring requested __asan_handle_no_return: stack top: 0x7fffcb2a3000; bottom 0x7ffa3eff9000; size: 0x00058c2aa000 (23826440192)
False positive error reports may follow
For details see https://github.com/google/sanitizers/issues/189
PASS 29 ahci-test /x86_64/ahci/io/pio/lba48/long/high
==6633==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
PASS 30 ahci-test /x86_64/ahci/io/pio/lba48/short/zero
==6639==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
PASS 31 ahci-test /x86_64/ahci/io/pio/lba48/short/low
==6645==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
PASS 32 ahci-test /x86_64/ahci/io/pio/lba48/short/high
==6651==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
PASS 33 ahci-test /x86_64/ahci/io/dma/lba28/fragmented
==6657==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
PASS 34 ahci-test /x86_64/ahci/io/dma/lba28/retry
==6663==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
PASS 35 ahci-test /x86_64/ahci/io/dma/lba28/simple/zero
==6669==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
PASS 36 ahci-test /x86_64/ahci/io/dma/lba28/simple/low
==6675==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
PASS 37 ahci-test /x86_64/ahci/io/dma/lba28/simple/high
==6681==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
PASS 38 ahci-test /x86_64/ahci/io/dma/lba28/double/zero
==6687==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
PASS 39 ahci-test /x86_64/ahci/io/dma/lba28/double/low
==6693==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
PASS 40 ahci-test /x86_64/ahci/io/dma/lba28/double/high
==6699==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
==6699==WARNING: ASan is ignoring requested __asan_handle_no_return: stack top: 0x7ffe36248000; bottom 0x7f83347fd000; size: 0x007b01a4b000 (528308547584)
False positive error reports may follow
For details see https://github.com/google/sanitizers/issues/189
PASS 41 ahci-test /x86_64/ahci/io/dma/lba28/long/zero
==6706==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
==6706==WARNING: ASan is ignoring requested __asan_handle_no_return: stack top: 0x7ffc92855000; bottom 0x7f9cdbbfd000; size: 0x005fb6c58000 (411088289792)
False positive error reports may follow
For details see https://github.com/google/sanitizers/issues/189
PASS 42 ahci-test /x86_64/ahci/io/dma/lba28/long/low
==6713==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
==6713==WARNING: ASan is ignoring requested __asan_handle_no_return: stack top: 0x7ffc90f81000; bottom 0x7f523d576000; size: 0x00aa53a0b000 (731547480064)
False positive error reports may follow
For details see https://github.com/google/sanitizers/issues/189
PASS 43 ahci-test /x86_64/ahci/io/dma/lba28/long/high
==6720==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
PASS 44 ahci-test /x86_64/ahci/io/dma/lba28/short/zero
==6726==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
PASS 45 ahci-test /x86_64/ahci/io/dma/lba28/short/low
==6732==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
PASS 46 ahci-test /x86_64/ahci/io/dma/lba28/short/high
==6738==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
PASS 47 ahci-test /x86_64/ahci/io/dma/lba48/simple/zero
==6744==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
PASS 48 ahci-test /x86_64/ahci/io/dma/lba48/simple/low
==6750==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
PASS 49 ahci-test /x86_64/ahci/io/dma/lba48/simple/high
==6756==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
PASS 50 ahci-test /x86_64/ahci/io/dma/lba48/double/zero
==6762==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
PASS 51 ahci-test /x86_64/ahci/io/dma/lba48/double/low
==6768==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
PASS 52 ahci-test /x86_64/ahci/io/dma/lba48/double/high
==6774==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
==6774==WARNING: ASan is ignoring requested __asan_handle_no_return: stack top: 0x7ffc95b38000; bottom 0x7f367ad76000; size: 0x00c61adc2000 (850854158336)
False positive error reports may follow
For details see https://github.com/google/sanitizers/issues/189
PASS 53 ahci-test /x86_64/ahci/io/dma/lba48/long/zero
==6781==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
==6781==WARNING: ASan is ignoring requested __asan_handle_no_return: stack top: 0x7fff9e8b6000; bottom 0x7f88d81fd000; size: 0x0076c66b9000 (510135078912)
False positive error reports may follow
For details see https://github.com/google/sanitizers/issues/189
PASS 54 ahci-test /x86_64/ahci/io/dma/lba48/long/low
==6788==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
==6788==WARNING: ASan is ignoring requested __asan_handle_no_return: stack top: 0x7ffedce8e000; bottom 0x7fec6fbfd000; size: 0x00126d291000 (79140818944)
False positive error reports may follow
For details see https://github.com/google/sanitizers/issues/189
PASS 55 ahci-test /x86_64/ahci/io/dma/lba48/long/high
==6795==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
PASS 56 ahci-test /x86_64/ahci/io/dma/lba48/short/zero
==6801==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
PASS 57 ahci-test /x86_64/ahci/io/dma/lba48/short/low
==6807==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
PASS 58 ahci-test /x86_64/ahci/io/dma/lba48/short/high
==6813==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
PASS 59 ahci-test /x86_64/ahci/io/ncq/simple
==6819==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
PASS 60 ahci-test /x86_64/ahci/io/ncq/retry
==6825==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
PASS 61 ahci-test /x86_64/ahci/flush/simple
==6831==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
PASS 62 ahci-test /x86_64/ahci/flush/retry
==6837==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
==6843==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
PASS 63 ahci-test /x86_64/ahci/flush/migrate
==6851==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
==6857==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
PASS 64 ahci-test /x86_64/ahci/migrate/sanity
==6865==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
==6871==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
PASS 65 ahci-test /x86_64/ahci/migrate/dma/simple
==6879==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
==6885==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
PASS 66 ahci-test /x86_64/ahci/migrate/dma/halted
==6893==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
==6899==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
PASS 67 ahci-test /x86_64/ahci/migrate/ncq/simple
==6907==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
==6913==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
PASS 68 ahci-test /x86_64/ahci/migrate/ncq/halted
==6921==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
PASS 69 ahci-test /x86_64/ahci/cdrom/eject
==6926==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
PASS 70 ahci-test /x86_64/ahci/cdrom/dma/single
==6932==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
PASS 71 ahci-test /x86_64/ahci/cdrom/dma/multi
==6938==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
PASS 72 ahci-test /x86_64/ahci/cdrom/pio/single
==6944==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
==6944==WARNING: ASan is ignoring requested __asan_handle_no_return: stack top: 0x7ffd0ae20000; bottom 0x7fa7e19fe000; size: 0x005529422000 (365764419584)
False positive error reports may follow
For details see https://github.com/google/sanitizers/issues/189
PASS 73 ahci-test /x86_64/ahci/cdrom/pio/multi
==6950==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
PASS 74 ahci-test /x86_64/ahci/cdrom/pio/bcl
MALLOC_PERTURB_=${MALLOC_PERTURB_:-$(( ${RANDOM:-0} % 255 + 1))}  QTEST_QEMU_BINARY=x86_64-softmmu/qemu-system-x86_64 QTEST_QEMU_IMG=qemu-img tests/qtest/hd-geo-test -m=quick -k --tap < /dev/null | ./scripts/tap-driver.pl --test-name="hd-geo-test" 
PASS 1 hd-geo-test /x86_64/hd-geo/ide/none
==6964==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
PASS 2 hd-geo-test /x86_64/hd-geo/ide/drive/cd_0
==6970==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
PASS 3 hd-geo-test /x86_64/hd-geo/ide/drive/mbr/blank
==6976==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
PASS 4 hd-geo-test /x86_64/hd-geo/ide/drive/mbr/lba
==6982==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
PASS 5 hd-geo-test /x86_64/hd-geo/ide/drive/mbr/chs
==6988==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
PASS 6 hd-geo-test /x86_64/hd-geo/ide/device/mbr/blank
==6994==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
PASS 7 hd-geo-test /x86_64/hd-geo/ide/device/mbr/lba
==7000==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
PASS 8 hd-geo-test /x86_64/hd-geo/ide/device/mbr/chs
==7006==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
PASS 9 hd-geo-test /x86_64/hd-geo/ide/device/user/chs
==7011==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
PASS 10 hd-geo-test /x86_64/hd-geo/ide/device/user/chst
==7017==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
==7021==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
==7025==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
==7029==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
==7033==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
==7037==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
==7041==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
==7045==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
==7048==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
PASS 11 hd-geo-test /x86_64/hd-geo/override/ide
==7055==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
==7059==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
==7063==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
==7067==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
==7071==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
==7075==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
==7079==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
==7083==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
==7086==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
PASS 12 hd-geo-test /x86_64/hd-geo/override/scsi
==7093==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
==7097==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
==7101==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
==7105==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
==7109==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
==7113==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
==7117==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
==7121==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
==7124==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
PASS 13 hd-geo-test /x86_64/hd-geo/override/scsi_2_controllers
==7131==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
==7135==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
==7139==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
==7143==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
==7146==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
PASS 14 hd-geo-test /x86_64/hd-geo/override/virtio_blk
==7153==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
==7157==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
==7160==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
PASS 15 hd-geo-test /x86_64/hd-geo/override/zero_chs
==7167==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
==7171==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
==7175==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
==7179==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
==7182==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
PASS 16 hd-geo-test /x86_64/hd-geo/override/scsi_hot_unplug
==7189==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
==7193==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
==7197==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
==7201==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
==7204==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
PASS 17 hd-geo-test /x86_64/hd-geo/override/virtio_hot_unplug
MALLOC_PERTURB_=${MALLOC_PERTURB_:-$(( ${RANDOM:-0} % 255 + 1))}  QTEST_QEMU_BINARY=x86_64-softmmu/qemu-system-x86_64 QTEST_QEMU_IMG=qemu-img tests/qtest/boot-order-test -m=quick -k --tap < /dev/null | ./scripts/tap-driver.pl --test-name="boot-order-test" 
PASS 1 boot-order-test /x86_64/boot-order/pc
---
Could not access KVM kernel module: No such file or directory
qemu-system-x86_64: -accel kvm: failed to initialize kvm: No such file or directory
qemu-system-x86_64: falling back to tcg
==7273==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!

Looking for expected file 'tests/data/acpi/pc/FACP'
Using expected file 'tests/data/acpi/pc/FACP'
---
Could not access KVM kernel module: No such file or directory
qemu-system-x86_64: -accel kvm: failed to initialize kvm: No such file or directory
qemu-system-x86_64: falling back to tcg
==7279==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!

Looking for expected file 'tests/data/acpi/q35/FACP'
Using expected file 'tests/data/acpi/q35/FACP'
---
Could not access KVM kernel module: No such file or directory
qemu-system-x86_64: -accel kvm: failed to initialize kvm: No such file or directory
qemu-system-x86_64: falling back to tcg
==7286==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!

Looking for expected file 'tests/data/acpi/q35/FACP.tis'
Looking for expected file 'tests/data/acpi/q35/FACP'
---
Could not access KVM kernel module: No such file or directory
qemu-system-x86_64: -accel kvm: failed to initialize kvm: No such file or directory
qemu-system-x86_64: falling back to tcg
==7293==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!

Looking for expected file 'tests/data/acpi/q35/FACP.bridge'
Looking for expected file 'tests/data/acpi/q35/FACP'
---
Could not access KVM kernel module: No such file or directory
qemu-system-x86_64: -accel kvm: failed to initialize kvm: No such file or directory
qemu-system-x86_64: falling back to tcg
==7299==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!

Looking for expected file 'tests/data/acpi/q35/FACP.mmio64'
Looking for expected file 'tests/data/acpi/q35/FACP'
---
Could not access KVM kernel module: No such file or directory
qemu-system-x86_64: -accel kvm: failed to initialize kvm: No such file or directory
qemu-system-x86_64: falling back to tcg
==7305==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!

Looking for expected file 'tests/data/acpi/q35/FACP.ipmibt'
Looking for expected file 'tests/data/acpi/q35/FACP'
---
Could not access KVM kernel module: No such file or directory
qemu-system-x86_64: -accel kvm: failed to initialize kvm: No such file or directory
qemu-system-x86_64: falling back to tcg
==7311==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!

Looking for expected file 'tests/data/acpi/q35/FACP.cphp'
Looking for expected file 'tests/data/acpi/q35/FACP'
---
Could not access KVM kernel module: No such file or directory
qemu-system-x86_64: -accel kvm: failed to initialize kvm: No such file or directory
qemu-system-x86_64: falling back to tcg
==7318==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!

Looking for expected file 'tests/data/acpi/q35/FACP.memhp'
Looking for expected file 'tests/data/acpi/q35/FACP'
---
Could not access KVM kernel module: No such file or directory
qemu-system-x86_64: -accel kvm: failed to initialize kvm: No such file or directory
qemu-system-x86_64: falling back to tcg
==7324==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!

Looking for expected file 'tests/data/acpi/q35/FACP.numamem'
Looking for expected file 'tests/data/acpi/q35/FACP'
---
Could not access KVM kernel module: No such file or directory
qemu-system-x86_64: -accel kvm: failed to initialize kvm: No such file or directory
qemu-system-x86_64: falling back to tcg
==7330==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!

Looking for expected file 'tests/data/acpi/q35/FACP.dimmpxm'
Looking for expected file 'tests/data/acpi/q35/FACP'
---
Could not access KVM kernel module: No such file or directory
qemu-system-x86_64: -accel kvm: failed to initialize kvm: No such file or directory
qemu-system-x86_64: falling back to tcg
==7339==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!

Looking for expected file 'tests/data/acpi/q35/FACP.acpihmat'
Looking for expected file 'tests/data/acpi/q35/FACP'
---
Could not access KVM kernel module: No such file or directory
qemu-system-x86_64: -accel kvm: failed to initialize kvm: No such file or directory
qemu-system-x86_64: falling back to tcg
==7346==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!

Looking for expected file 'tests/data/acpi/pc/FACP.bridge'
Looking for expected file 'tests/data/acpi/pc/FACP'
---
Could not access KVM kernel module: No such file or directory
qemu-system-x86_64: -accel kvm: failed to initialize kvm: No such file or directory
qemu-system-x86_64: falling back to tcg
==7352==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!

Looking for expected file 'tests/data/acpi/pc/FACP.ipmikcs'
Looking for expected file 'tests/data/acpi/pc/FACP'
---
Could not access KVM kernel module: No such file or directory
qemu-system-x86_64: -accel kvm: failed to initialize kvm: No such file or directory
qemu-system-x86_64: falling back to tcg
==7358==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!

Looking for expected file 'tests/data/acpi/pc/FACP.cphp'
Looking for expected file 'tests/data/acpi/pc/FACP'
---
Could not access KVM kernel module: No such file or directory
qemu-system-x86_64: -accel kvm: failed to initialize kvm: No such file or directory
qemu-system-x86_64: falling back to tcg
==7365==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!

Looking for expected file 'tests/data/acpi/pc/FACP.memhp'
Looking for expected file 'tests/data/acpi/pc/FACP'
---
Could not access KVM kernel module: No such file or directory
qemu-system-x86_64: -accel kvm: failed to initialize kvm: No such file or directory
qemu-system-x86_64: falling back to tcg
==7371==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!

Looking for expected file 'tests/data/acpi/pc/FACP.numamem'
Looking for expected file 'tests/data/acpi/pc/FACP'
---
Could not access KVM kernel module: No such file or directory
qemu-system-x86_64: -accel kvm: failed to initialize kvm: No such file or directory
qemu-system-x86_64: falling back to tcg
==7377==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!

Looking for expected file 'tests/data/acpi/pc/FACP.dimmpxm'
Looking for expected file 'tests/data/acpi/pc/FACP'
---
Could not access KVM kernel module: No such file or directory
qemu-system-x86_64: -accel kvm: failed to initialize kvm: No such file or directory
qemu-system-x86_64: falling back to tcg
==7386==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!

Looking for expected file 'tests/data/acpi/pc/FACP.acpihmat'
Looking for expected file 'tests/data/acpi/pc/FACP'
---
PASS 1 i440fx-test /x86_64/i440fx/defaults
PASS 2 i440fx-test /x86_64/i440fx/pam
PASS 3 i440fx-test /x86_64/i440fx/firmware/bios
==7478==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
PASS 4 i440fx-test /x86_64/i440fx/firmware/pflash
MALLOC_PERTURB_=${MALLOC_PERTURB_:-$(( ${RANDOM:-0} % 255 + 1))}  QTEST_QEMU_BINARY=x86_64-softmmu/qemu-system-x86_64 QTEST_QEMU_IMG=qemu-img tests/qtest/fw_cfg-test -m=quick -k --tap < /dev/null | ./scripts/tap-driver.pl --test-name="fw_cfg-test" 
PASS 1 fw_cfg-test /x86_64/fw_cfg/signature
---
MALLOC_PERTURB_=${MALLOC_PERTURB_:-$(( ${RANDOM:-0} % 255 + 1))}  QTEST_QEMU_BINARY=x86_64-softmmu/qemu-system-x86_64 QTEST_QEMU_IMG=qemu-img tests/qtest/drive_del-test -m=quick -k --tap < /dev/null | ./scripts/tap-driver.pl --test-name="drive_del-test" 
PASS 1 drive_del-test /x86_64/drive_del/without-dev
PASS 2 drive_del-test /x86_64/drive_del/after_failed_device_add
==7571==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
PASS 3 drive_del-test /x86_64/blockdev/drive_del_device_del
MALLOC_PERTURB_=${MALLOC_PERTURB_:-$(( ${RANDOM:-0} % 255 + 1))}  QTEST_QEMU_BINARY=x86_64-softmmu/qemu-system-x86_64 QTEST_QEMU_IMG=qemu-img tests/qtest/wdt_ib700-test -m=quick -k --tap < /dev/null | ./scripts/tap-driver.pl --test-name="wdt_ib700-test" 
PASS 1 wdt_ib700-test /x86_64/wdt_ib700/pause
---
PASS 1 usb-hcd-uhci-test /x86_64/uhci/pci/init
PASS 2 usb-hcd-uhci-test /x86_64/uhci/pci/port1
PASS 3 usb-hcd-uhci-test /x86_64/uhci/pci/hotplug
==7766==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
PASS 4 usb-hcd-uhci-test /x86_64/uhci/pci/hotplug/usb-storage
MALLOC_PERTURB_=${MALLOC_PERTURB_:-$(( ${RANDOM:-0} % 255 + 1))}  QTEST_QEMU_BINARY=x86_64-softmmu/qemu-system-x86_64 QTEST_QEMU_IMG=qemu-img tests/qtest/usb-hcd-ehci-test -m=quick -k --tap < /dev/null | ./scripts/tap-driver.pl --test-name="usb-hcd-ehci-test" 
PASS 1 usb-hcd-ehci-test /x86_64/ehci/pci/uhci-port-1
---
MALLOC_PERTURB_=${MALLOC_PERTURB_:-$(( ${RANDOM:-0} % 255 + 1))}  QTEST_QEMU_BINARY=x86_64-softmmu/qemu-system-x86_64 QTEST_QEMU_IMG=qemu-img tests/qtest/usb-hcd-xhci-test -m=quick -k --tap < /dev/null | ./scripts/tap-driver.pl --test-name="usb-hcd-xhci-test" 
PASS 1 usb-hcd-xhci-test /x86_64/xhci/pci/init
PASS 2 usb-hcd-xhci-test /x86_64/xhci/pci/hotplug
==7784==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
PASS 3 usb-hcd-xhci-test /x86_64/xhci/pci/hotplug/usb-uas
PASS 4 usb-hcd-xhci-test /x86_64/xhci/pci/hotplug/usb-ccid
MALLOC_PERTURB_=${MALLOC_PERTURB_:-$(( ${RANDOM:-0} % 255 + 1))}  QTEST_QEMU_BINARY=x86_64-softmmu/qemu-system-x86_64 QTEST_QEMU_IMG=qemu-img tests/qtest/cpu-plug-test -m=quick -k --tap < /dev/null | ./scripts/tap-driver.pl --test-name="cpu-plug-test" 
---
Could not access KVM kernel module: No such file or directory
qemu-system-x86_64: -accel kvm: failed to initialize kvm: No such file or directory
qemu-system-x86_64: falling back to tcg
==7920==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
PASS 1 vmgenid-test /x86_64/vmgenid/vmgenid/set-guid
Could not access KVM kernel module: No such file or directory
qemu-system-x86_64: -accel kvm: failed to initialize kvm: No such file or directory
qemu-system-x86_64: falling back to tcg
==7926==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
PASS 2 vmgenid-test /x86_64/vmgenid/vmgenid/set-guid-auto
Could not access KVM kernel module: No such file or directory
qemu-system-x86_64: -accel kvm: failed to initialize kvm: No such file or directory
qemu-system-x86_64: falling back to tcg
==7932==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
PASS 3 vmgenid-test /x86_64/vmgenid/vmgenid/query-monitor
MALLOC_PERTURB_=${MALLOC_PERTURB_:-$(( ${RANDOM:-0} % 255 + 1))}  QTEST_QEMU_BINARY=x86_64-softmmu/qemu-system-x86_64 QTEST_QEMU_IMG=qemu-img tests/qtest/tpm-crb-swtpm-test -m=quick -k --tap < /dev/null | ./scripts/tap-driver.pl --test-name="tpm-crb-swtpm-test" 
SKIP 1 tpm-crb-swtpm-test /x86_64/tpm/crb-swtpm/test # SKIP swtpm not in PATH or missing --tpm2 support
---
Could not access KVM kernel module: No such file or directory
qemu-system-x86_64: -accel kvm: failed to initialize kvm: No such file or directory
qemu-system-x86_64: falling back to tcg
==8031==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
Could not access KVM kernel module: No such file or directory
qemu-system-x86_64: -accel kvm: failed to initialize kvm: No such file or directory
qemu-system-x86_64: falling back to tcg
==8037==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
PASS 3 migration-test /x86_64/migration/fd_proto
Could not access KVM kernel module: No such file or directory
qemu-system-x86_64: -accel kvm: failed to initialize kvm: No such file or directory
qemu-system-x86_64: falling back to tcg
==8044==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
Could not access KVM kernel module: No such file or directory
qemu-system-x86_64: -accel kvm: failed to initialize kvm: No such file or directory
qemu-system-x86_64: falling back to tcg
==8050==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
PASS 4 migration-test /x86_64/migration/validate_uuid
PASS 5 migration-test /x86_64/migration/validate_uuid_error
PASS 6 migration-test /x86_64/migration/validate_uuid_src_not_set
---
Could not access KVM kernel module: No such file or directory
qemu-system-x86_64: -accel kvm: failed to initialize kvm: No such file or directory
qemu-system-x86_64: falling back to tcg
==8100==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
Could not access KVM kernel module: No such file or directory
qemu-system-x86_64: -accel kvm: failed to initialize kvm: No such file or directory
qemu-system-x86_64: falling back to tcg
==8106==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
PASS 8 migration-test /x86_64/migration/auto_converge
Could not access KVM kernel module: No such file or directory
qemu-system-x86_64: -accel kvm: failed to initialize kvm: No such file or directory
qemu-system-x86_64: falling back to tcg
==8114==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
Could not access KVM kernel module: No such file or directory
qemu-system-x86_64: -accel kvm: failed to initialize kvm: No such file or directory
qemu-system-x86_64: falling back to tcg
==8120==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
PASS 9 migration-test /x86_64/migration/postcopy/unix
PASS 10 migration-test /x86_64/migration/postcopy/recovery
Could not access KVM kernel module: No such file or directory
qemu-system-x86_64: -accel kvm: failed to initialize kvm: No such file or directory
qemu-system-x86_64: falling back to tcg
==8149==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
Could not access KVM kernel module: No such file or directory
qemu-system-x86_64: -accel kvm: failed to initialize kvm: No such file or directory
qemu-system-x86_64: falling back to tcg
==8155==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
PASS 11 migration-test /x86_64/migration/precopy/unix
Could not access KVM kernel module: No such file or directory
qemu-system-x86_64: -accel kvm: failed to initialize kvm: No such file or directory
qemu-system-x86_64: falling back to tcg
==8163==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
Could not access KVM kernel module: No such file or directory
qemu-system-x86_64: -accel kvm: failed to initialize kvm: No such file or directory
qemu-system-x86_64: falling back to tcg
==8169==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
PASS 12 migration-test /x86_64/migration/precopy/tcp
Could not access KVM kernel module: No such file or directory
qemu-system-x86_64: -accel kvm: failed to initialize kvm: No such file or directory
qemu-system-x86_64: falling back to tcg
==8177==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
Could not access KVM kernel module: No such file or directory
qemu-system-x86_64: -accel kvm: failed to initialize kvm: No such file or directory
qemu-system-x86_64: falling back to tcg
==8183==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
PASS 13 migration-test /x86_64/migration/xbzrle/unix
Could not access KVM kernel module: No such file or directory
qemu-system-x86_64: -accel kvm: failed to initialize kvm: No such file or directory
qemu-system-x86_64: falling back to tcg
==8191==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
Could not access KVM kernel module: No such file or directory
qemu-system-x86_64: -accel kvm: failed to initialize kvm: No such file or directory
qemu-system-x86_64: falling back to tcg
==8197==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
PASS 14 migration-test /x86_64/migration/multifd/tcp/none
Could not access KVM kernel module: No such file or directory
qemu-system-x86_64: -accel kvm: failed to initialize kvm: No such file or directory
qemu-system-x86_64: falling back to tcg
==8315==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
PASS 15 migration-test /x86_64/migration/multifd/tcp/cancel
Could not access KVM kernel module: No such file or directory
qemu-system-x86_64: -accel kvm: failed to initialize kvm: No such file or directory
qemu-system-x86_64: falling back to tcg
==8371==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
Could not access KVM kernel module: No such file or directory
qemu-system-x86_64: -accel kvm: failed to initialize kvm: No such file or directory
qemu-system-x86_64: falling back to tcg
==8377==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
PASS 16 migration-test /x86_64/migration/multifd/tcp/zlib
Could not access KVM kernel module: No such file or directory
qemu-system-x86_64: -accel kvm: failed to initialize kvm: No such file or directory
qemu-system-x86_64: falling back to tcg
==8433==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
Could not access KVM kernel module: No such file or directory
qemu-system-x86_64: -accel kvm: failed to initialize kvm: No such file or directory
qemu-system-x86_64: falling back to tcg
==8439==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
PASS 17 migration-test /x86_64/migration/multifd/tcp/zstd
MALLOC_PERTURB_=${MALLOC_PERTURB_:-$(( ${RANDOM:-0} % 255 + 1))}  QTEST_QEMU_BINARY=x86_64-softmmu/qemu-system-x86_64 QTEST_QEMU_IMG=qemu-img tests/qtest/test-x86-cpuid-compat -m=quick -k --tap < /dev/null | ./scripts/tap-driver.pl --test-name="test-x86-cpuid-compat" 
PASS 1 test-x86-cpuid-compat /x86/cpuid/parsing-plus-minus
---
PASS 1 machine-none-test /x86_64/machine/none/cpu_option
MALLOC_PERTURB_=${MALLOC_PERTURB_:-$(( ${RANDOM:-0} % 255 + 1))}  QTEST_QEMU_BINARY=x86_64-softmmu/qemu-system-x86_64 QTEST_QEMU_IMG=qemu-img tests/qtest/qmp-test -m=quick -k --tap < /dev/null | ./scripts/tap-driver.pl --test-name="qmp-test" 
PASS 1 qmp-test /x86_64/qmp/protocol
==8878==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
PASS 2 qmp-test /x86_64/qmp/oob
PASS 3 qmp-test /x86_64/qmp/preconfig
PASS 4 qmp-test /x86_64/qmp/missing-any-arg
---
PASS 16 qos-test /x86_64/pc/i440FX-pcihost/pci-bus-pc/pci-bus/i82562/pci-device/pci-device-tests/nop
PASS 17 qos-test /x86_64/pc/i440FX-pcihost/pci-bus-pc/pci-bus/i82801/pci-device/pci-device-tests/nop
PASS 18 qos-test /x86_64/pc/i440FX-pcihost/pci-bus-pc/pci-bus/ES1370/pci-device/pci-device-tests/nop
==9296==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
PASS 19 qos-test /x86_64/pc/i440FX-pcihost/pci-bus-pc/pci-bus/megasas/pci-device/pci-device-tests/nop
PASS 20 qos-test /x86_64/pc/i440FX-pcihost/pci-bus-pc/pci-bus/megasas/megasas-tests/dcmd/pd-get-info/fuzz
PASS 21 qos-test /x86_64/pc/i440FX-pcihost/pci-bus-pc/pci-bus/ne2k_pci/pci-device/pci-device-tests/nop
PASS 22 qos-test /x86_64/pc/i440FX-pcihost/pci-bus-pc/pci-bus/tulip/pci-device/pci-device-tests/nop
PASS 23 qos-test /x86_64/pc/i440FX-pcihost/pci-bus-pc/pci-bus/tulip/tulip-tests/tulip_large_tx
PASS 24 qos-test /x86_64/pc/i440FX-pcihost/pci-bus-pc/pci-bus/nvme/pci-device/pci-device-tests/nop
==9311==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
PASS 25 qos-test /x86_64/pc/i440FX-pcihost/pci-bus-pc/pci-bus/nvme/nvme-tests/oob-cmb-access
==9316==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
PASS 26 qos-test /x86_64/pc/i440FX-pcihost/pci-bus-pc/pci-bus/pcnet/pci-device/pci-device-tests/nop
PASS 27 qos-test /x86_64/pc/i440FX-pcihost/pci-bus-pc/pci-bus/pci-ohci/pci-device/pci-device-tests/nop
PASS 28 qos-test /x86_64/pc/i440FX-pcihost/pci-bus-pc/pci-bus/pci-ohci/pci-ohci-tests/ohci_pci-test-hotplug
---
PASS 35 qos-test /x86_64/pc/i440FX-pcihost/pci-bus-pc/pci-bus/sdhci-pci/sdhci/sdhci-tests/registers
PASS 36 qos-test /x86_64/pc/i440FX-pcihost/pci-bus-pc/pci-bus/tpci200/ipack/ipoctal232/ipoctal232-tests/nop
PASS 37 qos-test /x86_64/pc/i440FX-pcihost/pci-bus-pc/pci-bus/tpci200/pci-device/pci-device-tests/nop
==9376==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
PASS 38 qos-test /x86_64/pc/i440FX-pcihost/pci-bus-pc/pci-bus/virtio-9p-pci/pci-device/pci-device-tests/nop
PASS 39 qos-test /x86_64/pc/i440FX-pcihost/pci-bus-pc/pci-bus/virtio-9p-pci/virtio/virtio-tests/nop
PASS 40 qos-test /x86_64/pc/i440FX-pcihost/pci-bus-pc/pci-bus/virtio-9p-pci/virtio-9p/virtio-9p-tests/config
---
PASS 50 qos-test /x86_64/pc/i440FX-pcihost/pci-bus-pc/pci-bus/virtio-9p-pci/virtio-9p/virtio-9p-tests/fs/readdir/basic
PASS 51 qos-test /x86_64/pc/i440FX-pcihost/pci-bus-pc/pci-bus/virtio-balloon-pci/pci-device/pci-device-tests/nop
PASS 52 qos-test /x86_64/pc/i440FX-pcihost/pci-bus-pc/pci-bus/virtio-balloon-pci/virtio/virtio-tests/nop
==9387==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
PASS 53 qos-test /x86_64/pc/i440FX-pcihost/pci-bus-pc/pci-bus/virtio-blk-pci/virtio-blk-pci-tests/msix
==9393==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
PASS 54 qos-test /x86_64/pc/i440FX-pcihost/pci-bus-pc/pci-bus/virtio-blk-pci/virtio-blk-pci-tests/idx
==9399==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
PASS 55 qos-test /x86_64/pc/i440FX-pcihost/pci-bus-pc/pci-bus/virtio-blk-pci/virtio-blk-pci-tests/nxvirtq
==9405==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
PASS 56 qos-test /x86_64/pc/i440FX-pcihost/pci-bus-pc/pci-bus/virtio-blk-pci/virtio-blk-pci-tests/hotplug
==9411==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
PASS 57 qos-test /x86_64/pc/i440FX-pcihost/pci-bus-pc/pci-bus/virtio-blk-pci/virtio-blk/virtio-blk-tests/indirect
==9417==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
PASS 58 qos-test /x86_64/pc/i440FX-pcihost/pci-bus-pc/pci-bus/virtio-blk-pci/virtio-blk/virtio-blk-tests/config
==9423==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
PASS 59 qos-test /x86_64/pc/i440FX-pcihost/pci-bus-pc/pci-bus/virtio-blk-pci/virtio-blk/virtio-blk-tests/basic
==9429==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
PASS 60 qos-test /x86_64/pc/i440FX-pcihost/pci-bus-pc/pci-bus/virtio-blk-pci/virtio-blk/virtio-blk-tests/resize
PASS 61 qos-test /x86_64/pc/i440FX-pcihost/pci-bus-pc/pci-bus/virtio-net-pci/virtio-net/virtio-net-tests/basic
PASS 62 qos-test /x86_64/pc/i440FX-pcihost/pci-bus-pc/pci-bus/virtio-net-pci/virtio-net/virtio-net-tests/rx_stop_cont
---
PASS 70 qos-test /x86_64/pc/i440FX-pcihost/pci-bus-pc/pci-bus/virtio-rng-pci/virtio-rng-pci-tests/hotplug
PASS 71 qos-test /x86_64/pc/i440FX-pcihost/pci-bus-pc/pci-bus/virtio-rng-pci/pci-device/pci-device-tests/nop
PASS 72 qos-test /x86_64/pc/i440FX-pcihost/pci-bus-pc/pci-bus/virtio-rng-pci/virtio/virtio-tests/nop
==9521==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
PASS 73 qos-test /x86_64/pc/i440FX-pcihost/pci-bus-pc/pci-bus/virtio-scsi-pci/virtio-scsi-pci-tests/iothread-attach-node
==9532==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
PASS 74 qos-test /x86_64/pc/i440FX-pcihost/pci-bus-pc/pci-bus/virtio-scsi-pci/pci-device/pci-device-tests/nop
==9537==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
PASS 75 qos-test /x86_64/pc/i440FX-pcihost/pci-bus-pc/pci-bus/virtio-scsi-pci/virtio-scsi/virtio-scsi-tests/hotplug
==9542==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
PASS 76 qos-test /x86_64/pc/i440FX-pcihost/pci-bus-pc/pci-bus/virtio-scsi-pci/virtio-scsi/virtio-scsi-tests/unaligned-write-same
PASS 77 qos-test /x86_64/pc/i440FX-pcihost/pci-bus-pc/pci-bus/virtio-serial-pci/pci-device/pci-device-tests/nop
PASS 78 qos-test /x86_64/pc/i440FX-pcihost/pci-bus-pc/pci-bus/virtio-serial-pci/virtio/virtio-tests/nop
---
    raise CalledProcessError(retcode, cmd)
subprocess.CalledProcessError: Command '['sudo', '-n', 'docker', 'run', '--label', 'com.qemu.instance.uuid=de673b0e75fb45e28370b5286b953622', '-u', '1003', '--security-opt', 'seccomp=unconfined', '--rm', '-e', 'TARGET_LIST=x86_64-softmmu', '-e', 'EXTRA_CONFIGURE_OPTS=', '-e', 'V=', '-e', 'J=14', '-e', 'DEBUG=', '-e', 'SHOW_ENV=', '-e', 'CCACHE_DIR=/var/tmp/ccache', '-v', '/home/patchew2/.cache/qemu-docker-ccache:/var/tmp/ccache:z', '-v', '/var/tmp/patchew-tester-tmp-d0ersclp/src/docker-src.2020-06-16-12.30.22.23989:/var/tmp/qemu:z,ro', 'qemu:fedora', '/var/tmp/qemu/run', 'test-debug']' returned non-zero exit status 2.
filter=--filter=label=com.qemu.instance.uuid=de673b0e75fb45e28370b5286b953622
make[1]: *** [docker-run] Error 1
make[1]: Leaving directory `/var/tmp/patchew-tester-tmp-d0ersclp/src'
make: *** [docker-run-test-debug@fedora] Error 2

real    43m47.486s
user    0m8.778s


The full log is available at
http://patchew.org/logs/1592310699-58916-1-git-send-email-ani.sinha@nutanix.com/testing.asan/?type=message.
---
Email generated automatically by Patchew [https://patchew.org/].
Please send your feedback to patchew-devel@redhat.com

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PATCH V3] Rename use_acpi_pci_hotplug to more appropriate use_acpi_hotplug_bridge
  2020-06-16 17:14 ` no-reply
@ 2020-06-20  7:50   ` Ani Sinha
  0 siblings, 0 replies; 7+ messages in thread
From: Ani Sinha @ 2020-06-20  7:50 UTC (permalink / raw)
  To: qemu-devel
  Cc: Michael S. Tsirkin, Aleksandar Markovic, Ani Sinha,
	Igor Mammedov, Philippe Mathieu-Daudé,
	aurelien

This failure seems to be happening even without my patch in my workspace. So I do not think this is related to my change.

Traceback (most recent call last):
  File "./tests/docker/docker.py", line 664, in <module>
    sys.exit(main())
  File "./tests/docker/docker.py", line 660, in main
    return args.cmdobj.run(args, argv)
  File "./tests/docker/docker.py", line 382, in run
    as_user=args.run_as_current_user)
  File "./tests/docker/docker.py", line 341, in run
    quiet=quiet)
  File "./tests/docker/docker.py", line 233, in _do_check
    return subprocess.check_call(self._command + cmd, **kwargs)
  File "/usr/lib64/python3.6/subprocess.py", line 311, in check_call
    raise CalledProcessError(retcode, cmd)
subprocess.CalledProcessError: Command '['docker', 'run', '--label', 'com.qemu.instance.uuid=2297c9d77300410d88f152f5fdf1ba99', '-u', '16671', '--security-opt', 'seccomp=unconfined', '--rm', '-e', 'TARGET_LIST=x86_64-softmmu', '-e', 'EXTRA_CONFIGURE_OPTS=', '-e', 'V=', '-e', 'J=14', '-e', 'DEBUG=', '-e', 'SHOW_ENV=', '-e', 'CCACHE_DIR=/var/tmp/ccache', '-v', '/home/ani.sinha/.cache/qemu-docker-ccache:/var/tmp/ccache:z', '-v', '/home/ani.sinha/work/ahv/rpmsrc/qemu-kvm/docker-src.2020-06-20-06.55.00.113587:/var/tmp/qemu:z,ro', 'qemu:fedora', '/var/tmp/qemu/run', 'test-debug']' returned non-zero exit status 2.
filter=--filter=label=com.qemu.instance.uuid=2297c9d77300410d88f152f5fdf1ba99
make[1]: *** [docker-run] Error 1
make[1]: Leaving directory `/home/ani.sinha/work/ahv/rpmsrc/qemu-kvm'
make: *** [docker-run-test-debug@fedora] Error 2




> On Jun 16, 2020, at 10:44 PM, no-reply@patchew.org wrote:
> 
> Patchew URL: https://urldefense.proofpoint.com/v2/url?u=https-3A__patchew.org_QEMU_1592310699-2D58916-2D1-2Dgit-2Dsend-2Demail-2Dani.sinha-40nutanix.com_&d=DwIGaQ&c=s883GpUCOChKOHiocYtGcg&r=IIUxIyRwG4RGy57y2nvMNYcDkqW-NHozZ2R38VYcg5U&m=cpLfEzDc9TG6RQRXS4UEgCLkSzOo9Gw6b5hCJ6ap5u8&s=pc3WypysbMar_37tB0vsF22N_0e-lRx1dAoByIRrnmQ&e= 
> 
> 
> 
> Hi,
> 
> This series failed the asan build test. Please find the testing commands and
> their output below. If you have Docker installed, you can probably reproduce it
> locally.
> 
> === TEST SCRIPT BEGIN ===
> #!/bin/bash
> export ARCH=x86_64
> make docker-image-fedora V=1 NETWORK=1
> time make docker-test-debug@fedora TARGET_LIST=x86_64-softmmu J=14 NETWORK=1
> === TEST SCRIPT END ===
> 
> PASS 32 test-opts-visitor /visitor/opts/range/beyond
> PASS 33 test-opts-visitor /visitor/opts/dict/unvisited
> MALLOC_PERTURB_=${MALLOC_PERTURB_:-$(( ${RANDOM:-0} % 255 + 1))}  tests/test-coroutine -m=quick -k --tap < /dev/null | ./scripts/tap-driver.pl --test-name="test-coroutine" 
> ==6255==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> ==6255==WARNING: ASan is ignoring requested __asan_handle_no_return: stack top: 0x7ffcb8986000; bottom 0x7f7dfe920000; size: 0x007eba066000 (544286859264)
> False positive error reports may follow
> For details see https://urldefense.proofpoint.com/v2/url?u=https-3A__github.com_google_sanitizers_issues_189&d=DwIGaQ&c=s883GpUCOChKOHiocYtGcg&r=IIUxIyRwG4RGy57y2nvMNYcDkqW-NHozZ2R38VYcg5U&m=cpLfEzDc9TG6RQRXS4UEgCLkSzOo9Gw6b5hCJ6ap5u8&s=c2lE321GhK0UAWVNcYgh_BrHTqG22KUMfVOm6YJi5Jc&e= 
> PASS 1 test-coroutine /basic/no-dangling-access
> ---
> PASS 1 fdc-test /x86_64/fdc/cmos
> PASS 2 fdc-test /x86_64/fdc/no_media_on_start
> PASS 3 fdc-test /x86_64/fdc/read_without_media
> ==6280==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> PASS 4 fdc-test /x86_64/fdc/media_change
> PASS 5 fdc-test /x86_64/fdc/sense_interrupt
> PASS 6 fdc-test /x86_64/fdc/relative_seek
> ---
> PASS 11 test-aio /aio/event/wait
> PASS 12 test-aio /aio/event/flush
> PASS 13 test-aio /aio/event/wait/no-flush-cb
> ==6290==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> PASS 14 test-aio /aio/timer/schedule
> PASS 15 test-aio /aio/coroutine/queue-chaining
> PASS 16 test-aio /aio-gsource/flush
> ---
> PASS 28 test-aio /aio-gsource/timer/schedule
> MALLOC_PERTURB_=${MALLOC_PERTURB_:-$(( ${RANDOM:-0} % 255 + 1))}  tests/test-aio-multithread -m=quick -k --tap < /dev/null | ./scripts/tap-driver.pl --test-name="test-aio-multithread" 
> PASS 1 test-aio-multithread /aio/multi/lifecycle
> ==6295==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> PASS 2 test-aio-multithread /aio/multi/schedule
> PASS 3 test-aio-multithread /aio/multi/mutex/contended
> PASS 12 fdc-test /x86_64/fdc/read_no_dma_19
> PASS 13 fdc-test /x86_64/fdc/fuzz-registers
> MALLOC_PERTURB_=${MALLOC_PERTURB_:-$(( ${RANDOM:-0} % 255 + 1))}  QTEST_QEMU_BINARY=x86_64-softmmu/qemu-system-x86_64 QTEST_QEMU_IMG=qemu-img tests/qtest/ide-test -m=quick -k --tap < /dev/null | ./scripts/tap-driver.pl --test-name="ide-test" 
> ==6322==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> PASS 1 ide-test /x86_64/ide/identify
> ==6328==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> PASS 4 test-aio-multithread /aio/multi/mutex/handoff
> PASS 2 ide-test /x86_64/ide/flush
> ==6339==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> PASS 3 ide-test /x86_64/ide/bmdma/simple_rw
> **
> ERROR:/tmp/qemu-test/src/tests/test-aio-multithread.c:365:test_multi_fair_mutex: assertion failed (counter == atomic_counter): (90146 == 90147)
> ERROR - Bail out! ERROR:/tmp/qemu-test/src/tests/test-aio-multithread.c:365:test_multi_fair_mutex: assertion failed (counter == atomic_counter): (90146 == 90147)
> make: *** [/tmp/qemu-test/src/tests/Makefile.include:648: check-unit] Error 1
> make: *** Waiting for unfinished jobs....
> ==6345==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> PASS 4 ide-test /x86_64/ide/bmdma/trim
> ==6351==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> ==6357==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> ==6363==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> ==6369==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> ==6375==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> ==6381==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> ==6387==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> ==6393==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> ==6399==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> PASS 5 ide-test /x86_64/ide/bmdma/various_prdts
> ==6405==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> ==6405==WARNING: ASan is ignoring requested __asan_handle_no_return: stack top: 0x7ffd1bfdc000; bottom 0x7f811fddc000; size: 0x007bfc200000 (532510932992)
> False positive error reports may follow
> For details see https://urldefense.proofpoint.com/v2/url?u=https-3A__github.com_google_sanitizers_issues_189&d=DwIGaQ&c=s883GpUCOChKOHiocYtGcg&r=IIUxIyRwG4RGy57y2nvMNYcDkqW-NHozZ2R38VYcg5U&m=cpLfEzDc9TG6RQRXS4UEgCLkSzOo9Gw6b5hCJ6ap5u8&s=c2lE321GhK0UAWVNcYgh_BrHTqG22KUMfVOm6YJi5Jc&e= 
> PASS 6 ide-test /x86_64/ide/bmdma/no_busmaster
> PASS 7 ide-test /x86_64/ide/flush/nodev
> ==6416==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> PASS 8 ide-test /x86_64/ide/flush/empty_drive
> ==6421==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> PASS 9 ide-test /x86_64/ide/flush/retry_pci
> ==6427==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> PASS 10 ide-test /x86_64/ide/flush/retry_isa
> ==6433==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> PASS 11 ide-test /x86_64/ide/cdrom/pio
> ==6439==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> PASS 12 ide-test /x86_64/ide/cdrom/pio_large
> ==6445==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> PASS 13 ide-test /x86_64/ide/cdrom/dma
> MALLOC_PERTURB_=${MALLOC_PERTURB_:-$(( ${RANDOM:-0} % 255 + 1))}  QTEST_QEMU_BINARY=x86_64-softmmu/qemu-system-x86_64 QTEST_QEMU_IMG=qemu-img tests/qtest/ahci-test -m=quick -k --tap < /dev/null | ./scripts/tap-driver.pl --test-name="ahci-test" 
> ==6459==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> PASS 1 ahci-test /x86_64/ahci/sanity
> ==6465==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> PASS 2 ahci-test /x86_64/ahci/pci_spec
> ==6471==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> PASS 3 ahci-test /x86_64/ahci/pci_enable
> ==6477==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> PASS 4 ahci-test /x86_64/ahci/hba_spec
> ==6483==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> PASS 5 ahci-test /x86_64/ahci/hba_enable
> ==6489==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> PASS 6 ahci-test /x86_64/ahci/identify
> ==6495==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> PASS 7 ahci-test /x86_64/ahci/max
> ==6501==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> PASS 8 ahci-test /x86_64/ahci/reset
> ==6507==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> ==6507==WARNING: ASan is ignoring requested __asan_handle_no_return: stack top: 0x7ffce6f97000; bottom 0x7f1aa27aa000; size: 0x00e2447ed000 (971811770368)
> False positive error reports may follow
> For details see https://urldefense.proofpoint.com/v2/url?u=https-3A__github.com_google_sanitizers_issues_189&d=DwIGaQ&c=s883GpUCOChKOHiocYtGcg&r=IIUxIyRwG4RGy57y2nvMNYcDkqW-NHozZ2R38VYcg5U&m=cpLfEzDc9TG6RQRXS4UEgCLkSzOo9Gw6b5hCJ6ap5u8&s=c2lE321GhK0UAWVNcYgh_BrHTqG22KUMfVOm6YJi5Jc&e= 
> PASS 9 ahci-test /x86_64/ahci/io/pio/lba28/simple/zero
> ==6513==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> ==6513==WARNING: ASan is ignoring requested __asan_handle_no_return: stack top: 0x7ffd21206000; bottom 0x7f39807fe000; size: 0x00c3a0a08000 (840213495808)
> False positive error reports may follow
> For details see https://urldefense.proofpoint.com/v2/url?u=https-3A__github.com_google_sanitizers_issues_189&d=DwIGaQ&c=s883GpUCOChKOHiocYtGcg&r=IIUxIyRwG4RGy57y2nvMNYcDkqW-NHozZ2R38VYcg5U&m=cpLfEzDc9TG6RQRXS4UEgCLkSzOo9Gw6b5hCJ6ap5u8&s=c2lE321GhK0UAWVNcYgh_BrHTqG22KUMfVOm6YJi5Jc&e= 
> PASS 10 ahci-test /x86_64/ahci/io/pio/lba28/simple/low
> ==6519==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> ==6519==WARNING: ASan is ignoring requested __asan_handle_no_return: stack top: 0x7fff6cbeb000; bottom 0x7f2c023f9000; size: 0x00d36a7f2000 (908024815616)
> False positive error reports may follow
> For details see https://urldefense.proofpoint.com/v2/url?u=https-3A__github.com_google_sanitizers_issues_189&d=DwIGaQ&c=s883GpUCOChKOHiocYtGcg&r=IIUxIyRwG4RGy57y2nvMNYcDkqW-NHozZ2R38VYcg5U&m=cpLfEzDc9TG6RQRXS4UEgCLkSzOo9Gw6b5hCJ6ap5u8&s=c2lE321GhK0UAWVNcYgh_BrHTqG22KUMfVOm6YJi5Jc&e= 
> PASS 11 ahci-test /x86_64/ahci/io/pio/lba28/simple/high
> ==6525==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> ==6525==WARNING: ASan is ignoring requested __asan_handle_no_return: stack top: 0x7ffc13fcf000; bottom 0x7f8e559f9000; size: 0x006dbe5d6000 (471345225728)
> False positive error reports may follow
> For details see https://urldefense.proofpoint.com/v2/url?u=https-3A__github.com_google_sanitizers_issues_189&d=DwIGaQ&c=s883GpUCOChKOHiocYtGcg&r=IIUxIyRwG4RGy57y2nvMNYcDkqW-NHozZ2R38VYcg5U&m=cpLfEzDc9TG6RQRXS4UEgCLkSzOo9Gw6b5hCJ6ap5u8&s=c2lE321GhK0UAWVNcYgh_BrHTqG22KUMfVOm6YJi5Jc&e= 
> PASS 12 ahci-test /x86_64/ahci/io/pio/lba28/double/zero
> ==6531==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> ==6531==WARNING: ASan is ignoring requested __asan_handle_no_return: stack top: 0x7ffdbc4f1000; bottom 0x7ffa1d3f9000; size: 0x00039f0f8000 (15553495040)
> False positive error reports may follow
> For details see https://urldefense.proofpoint.com/v2/url?u=https-3A__github.com_google_sanitizers_issues_189&d=DwIGaQ&c=s883GpUCOChKOHiocYtGcg&r=IIUxIyRwG4RGy57y2nvMNYcDkqW-NHozZ2R38VYcg5U&m=cpLfEzDc9TG6RQRXS4UEgCLkSzOo9Gw6b5hCJ6ap5u8&s=c2lE321GhK0UAWVNcYgh_BrHTqG22KUMfVOm6YJi5Jc&e= 
> PASS 13 ahci-test /x86_64/ahci/io/pio/lba28/double/low
> ==6537==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> ==6537==WARNING: ASan is ignoring requested __asan_handle_no_return: stack top: 0x7fff49ff9000; bottom 0x7f8232df9000; size: 0x007d17200000 (537258885120)
> False positive error reports may follow
> For details see https://urldefense.proofpoint.com/v2/url?u=https-3A__github.com_google_sanitizers_issues_189&d=DwIGaQ&c=s883GpUCOChKOHiocYtGcg&r=IIUxIyRwG4RGy57y2nvMNYcDkqW-NHozZ2R38VYcg5U&m=cpLfEzDc9TG6RQRXS4UEgCLkSzOo9Gw6b5hCJ6ap5u8&s=c2lE321GhK0UAWVNcYgh_BrHTqG22KUMfVOm6YJi5Jc&e= 
> PASS 14 ahci-test /x86_64/ahci/io/pio/lba28/double/high
> ==6543==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> ==6543==WARNING: ASan is ignoring requested __asan_handle_no_return: stack top: 0x7ffd10b42000; bottom 0x7f6ef29f9000; size: 0x008e1e149000 (610390020096)
> False positive error reports may follow
> For details see https://urldefense.proofpoint.com/v2/url?u=https-3A__github.com_google_sanitizers_issues_189&d=DwIGaQ&c=s883GpUCOChKOHiocYtGcg&r=IIUxIyRwG4RGy57y2nvMNYcDkqW-NHozZ2R38VYcg5U&m=cpLfEzDc9TG6RQRXS4UEgCLkSzOo9Gw6b5hCJ6ap5u8&s=c2lE321GhK0UAWVNcYgh_BrHTqG22KUMfVOm6YJi5Jc&e= 
> PASS 15 ahci-test /x86_64/ahci/io/pio/lba28/long/zero
> ==6549==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> ==6549==WARNING: ASan is ignoring requested __asan_handle_no_return: stack top: 0x7ffea5219000; bottom 0x7f1031bfe000; size: 0x00ee7361b000 (1024137998336)
> False positive error reports may follow
> For details see https://urldefense.proofpoint.com/v2/url?u=https-3A__github.com_google_sanitizers_issues_189&d=DwIGaQ&c=s883GpUCOChKOHiocYtGcg&r=IIUxIyRwG4RGy57y2nvMNYcDkqW-NHozZ2R38VYcg5U&m=cpLfEzDc9TG6RQRXS4UEgCLkSzOo9Gw6b5hCJ6ap5u8&s=c2lE321GhK0UAWVNcYgh_BrHTqG22KUMfVOm6YJi5Jc&e= 
> PASS 16 ahci-test /x86_64/ahci/io/pio/lba28/long/low
> ==6555==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> ==6555==WARNING: ASan is ignoring requested __asan_handle_no_return: stack top: 0x7ffedf363000; bottom 0x7f43faba1000; size: 0x00bae47c2000 (802697256960)
> False positive error reports may follow
> For details see https://urldefense.proofpoint.com/v2/url?u=https-3A__github.com_google_sanitizers_issues_189&d=DwIGaQ&c=s883GpUCOChKOHiocYtGcg&r=IIUxIyRwG4RGy57y2nvMNYcDkqW-NHozZ2R38VYcg5U&m=cpLfEzDc9TG6RQRXS4UEgCLkSzOo9Gw6b5hCJ6ap5u8&s=c2lE321GhK0UAWVNcYgh_BrHTqG22KUMfVOm6YJi5Jc&e= 
> PASS 17 ahci-test /x86_64/ahci/io/pio/lba28/long/high
> ==6561==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> PASS 18 ahci-test /x86_64/ahci/io/pio/lba28/short/zero
> ==6567==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> PASS 19 ahci-test /x86_64/ahci/io/pio/lba28/short/low
> ==6573==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> PASS 20 ahci-test /x86_64/ahci/io/pio/lba28/short/high
> ==6579==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> ==6579==WARNING: ASan is ignoring requested __asan_handle_no_return: stack top: 0x7ffda3846000; bottom 0x7f1d5a7aa000; size: 0x00e04909c000 (963298050048)
> False positive error reports may follow
> For details see https://urldefense.proofpoint.com/v2/url?u=https-3A__github.com_google_sanitizers_issues_189&d=DwIGaQ&c=s883GpUCOChKOHiocYtGcg&r=IIUxIyRwG4RGy57y2nvMNYcDkqW-NHozZ2R38VYcg5U&m=cpLfEzDc9TG6RQRXS4UEgCLkSzOo9Gw6b5hCJ6ap5u8&s=c2lE321GhK0UAWVNcYgh_BrHTqG22KUMfVOm6YJi5Jc&e= 
> PASS 21 ahci-test /x86_64/ahci/io/pio/lba48/simple/zero
> ==6585==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> ==6585==WARNING: ASan is ignoring requested __asan_handle_no_return: stack top: 0x7ffe2f2ba000; bottom 0x7f0dd35f9000; size: 0x00f05bcc1000 (1032332251136)
> False positive error reports may follow
> For details see https://urldefense.proofpoint.com/v2/url?u=https-3A__github.com_google_sanitizers_issues_189&d=DwIGaQ&c=s883GpUCOChKOHiocYtGcg&r=IIUxIyRwG4RGy57y2nvMNYcDkqW-NHozZ2R38VYcg5U&m=cpLfEzDc9TG6RQRXS4UEgCLkSzOo9Gw6b5hCJ6ap5u8&s=c2lE321GhK0UAWVNcYgh_BrHTqG22KUMfVOm6YJi5Jc&e= 
> PASS 22 ahci-test /x86_64/ahci/io/pio/lba48/simple/low
> ==6591==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> ==6591==WARNING: ASan is ignoring requested __asan_handle_no_return: stack top: 0x7fff1cfb1000; bottom 0x7f96b65fe000; size: 0x0068669b3000 (448398045184)
> False positive error reports may follow
> For details see https://urldefense.proofpoint.com/v2/url?u=https-3A__github.com_google_sanitizers_issues_189&d=DwIGaQ&c=s883GpUCOChKOHiocYtGcg&r=IIUxIyRwG4RGy57y2nvMNYcDkqW-NHozZ2R38VYcg5U&m=cpLfEzDc9TG6RQRXS4UEgCLkSzOo9Gw6b5hCJ6ap5u8&s=c2lE321GhK0UAWVNcYgh_BrHTqG22KUMfVOm6YJi5Jc&e= 
> PASS 23 ahci-test /x86_64/ahci/io/pio/lba48/simple/high
> ==6597==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> ==6597==WARNING: ASan is ignoring requested __asan_handle_no_return: stack top: 0x7ffe17936000; bottom 0x7f57beff9000; size: 0x00a65893d000 (714450653184)
> False positive error reports may follow
> For details see https://urldefense.proofpoint.com/v2/url?u=https-3A__github.com_google_sanitizers_issues_189&d=DwIGaQ&c=s883GpUCOChKOHiocYtGcg&r=IIUxIyRwG4RGy57y2nvMNYcDkqW-NHozZ2R38VYcg5U&m=cpLfEzDc9TG6RQRXS4UEgCLkSzOo9Gw6b5hCJ6ap5u8&s=c2lE321GhK0UAWVNcYgh_BrHTqG22KUMfVOm6YJi5Jc&e= 
> PASS 24 ahci-test /x86_64/ahci/io/pio/lba48/double/zero
> ==6603==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> ==6603==WARNING: ASan is ignoring requested __asan_handle_no_return: stack top: 0x7ffcaa231000; bottom 0x7f3f65bba000; size: 0x00bd44677000 (812896448512)
> False positive error reports may follow
> For details see https://urldefense.proofpoint.com/v2/url?u=https-3A__github.com_google_sanitizers_issues_189&d=DwIGaQ&c=s883GpUCOChKOHiocYtGcg&r=IIUxIyRwG4RGy57y2nvMNYcDkqW-NHozZ2R38VYcg5U&m=cpLfEzDc9TG6RQRXS4UEgCLkSzOo9Gw6b5hCJ6ap5u8&s=c2lE321GhK0UAWVNcYgh_BrHTqG22KUMfVOm6YJi5Jc&e= 
> PASS 25 ahci-test /x86_64/ahci/io/pio/lba48/double/low
> ==6609==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> ==6609==WARNING: ASan is ignoring requested __asan_handle_no_return: stack top: 0x7ffd81483000; bottom 0x7f050959a000; size: 0x00f877ee9000 (1067164012544)
> False positive error reports may follow
> For details see https://urldefense.proofpoint.com/v2/url?u=https-3A__github.com_google_sanitizers_issues_189&d=DwIGaQ&c=s883GpUCOChKOHiocYtGcg&r=IIUxIyRwG4RGy57y2nvMNYcDkqW-NHozZ2R38VYcg5U&m=cpLfEzDc9TG6RQRXS4UEgCLkSzOo9Gw6b5hCJ6ap5u8&s=c2lE321GhK0UAWVNcYgh_BrHTqG22KUMfVOm6YJi5Jc&e= 
> PASS 26 ahci-test /x86_64/ahci/io/pio/lba48/double/high
> ==6615==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> ==6615==WARNING: ASan is ignoring requested __asan_handle_no_return: stack top: 0x7ffc35356000; bottom 0x7f8d18ff9000; size: 0x006f1c35d000 (477214658560)
> False positive error reports may follow
> For details see https://urldefense.proofpoint.com/v2/url?u=https-3A__github.com_google_sanitizers_issues_189&d=DwIGaQ&c=s883GpUCOChKOHiocYtGcg&r=IIUxIyRwG4RGy57y2nvMNYcDkqW-NHozZ2R38VYcg5U&m=cpLfEzDc9TG6RQRXS4UEgCLkSzOo9Gw6b5hCJ6ap5u8&s=c2lE321GhK0UAWVNcYgh_BrHTqG22KUMfVOm6YJi5Jc&e= 
> PASS 27 ahci-test /x86_64/ahci/io/pio/lba48/long/zero
> ==6621==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> ==6621==WARNING: ASan is ignoring requested __asan_handle_no_return: stack top: 0x7ffc9f37f000; bottom 0x7f728d5fe000; size: 0x008a11d81000 (593004859392)
> False positive error reports may follow
> For details see https://urldefense.proofpoint.com/v2/url?u=https-3A__github.com_google_sanitizers_issues_189&d=DwIGaQ&c=s883GpUCOChKOHiocYtGcg&r=IIUxIyRwG4RGy57y2nvMNYcDkqW-NHozZ2R38VYcg5U&m=cpLfEzDc9TG6RQRXS4UEgCLkSzOo9Gw6b5hCJ6ap5u8&s=c2lE321GhK0UAWVNcYgh_BrHTqG22KUMfVOm6YJi5Jc&e= 
> PASS 28 ahci-test /x86_64/ahci/io/pio/lba48/long/low
> ==6627==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> ==6627==WARNING: ASan is ignoring requested __asan_handle_no_return: stack top: 0x7fffcb2a3000; bottom 0x7ffa3eff9000; size: 0x00058c2aa000 (23826440192)
> False positive error reports may follow
> For details see https://urldefense.proofpoint.com/v2/url?u=https-3A__github.com_google_sanitizers_issues_189&d=DwIGaQ&c=s883GpUCOChKOHiocYtGcg&r=IIUxIyRwG4RGy57y2nvMNYcDkqW-NHozZ2R38VYcg5U&m=cpLfEzDc9TG6RQRXS4UEgCLkSzOo9Gw6b5hCJ6ap5u8&s=c2lE321GhK0UAWVNcYgh_BrHTqG22KUMfVOm6YJi5Jc&e= 
> PASS 29 ahci-test /x86_64/ahci/io/pio/lba48/long/high
> ==6633==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> PASS 30 ahci-test /x86_64/ahci/io/pio/lba48/short/zero
> ==6639==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> PASS 31 ahci-test /x86_64/ahci/io/pio/lba48/short/low
> ==6645==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> PASS 32 ahci-test /x86_64/ahci/io/pio/lba48/short/high
> ==6651==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> PASS 33 ahci-test /x86_64/ahci/io/dma/lba28/fragmented
> ==6657==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> PASS 34 ahci-test /x86_64/ahci/io/dma/lba28/retry
> ==6663==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> PASS 35 ahci-test /x86_64/ahci/io/dma/lba28/simple/zero
> ==6669==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> PASS 36 ahci-test /x86_64/ahci/io/dma/lba28/simple/low
> ==6675==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> PASS 37 ahci-test /x86_64/ahci/io/dma/lba28/simple/high
> ==6681==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> PASS 38 ahci-test /x86_64/ahci/io/dma/lba28/double/zero
> ==6687==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> PASS 39 ahci-test /x86_64/ahci/io/dma/lba28/double/low
> ==6693==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> PASS 40 ahci-test /x86_64/ahci/io/dma/lba28/double/high
> ==6699==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> ==6699==WARNING: ASan is ignoring requested __asan_handle_no_return: stack top: 0x7ffe36248000; bottom 0x7f83347fd000; size: 0x007b01a4b000 (528308547584)
> False positive error reports may follow
> For details see https://urldefense.proofpoint.com/v2/url?u=https-3A__github.com_google_sanitizers_issues_189&d=DwIGaQ&c=s883GpUCOChKOHiocYtGcg&r=IIUxIyRwG4RGy57y2nvMNYcDkqW-NHozZ2R38VYcg5U&m=cpLfEzDc9TG6RQRXS4UEgCLkSzOo9Gw6b5hCJ6ap5u8&s=c2lE321GhK0UAWVNcYgh_BrHTqG22KUMfVOm6YJi5Jc&e= 
> PASS 41 ahci-test /x86_64/ahci/io/dma/lba28/long/zero
> ==6706==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> ==6706==WARNING: ASan is ignoring requested __asan_handle_no_return: stack top: 0x7ffc92855000; bottom 0x7f9cdbbfd000; size: 0x005fb6c58000 (411088289792)
> False positive error reports may follow
> For details see https://urldefense.proofpoint.com/v2/url?u=https-3A__github.com_google_sanitizers_issues_189&d=DwIGaQ&c=s883GpUCOChKOHiocYtGcg&r=IIUxIyRwG4RGy57y2nvMNYcDkqW-NHozZ2R38VYcg5U&m=cpLfEzDc9TG6RQRXS4UEgCLkSzOo9Gw6b5hCJ6ap5u8&s=c2lE321GhK0UAWVNcYgh_BrHTqG22KUMfVOm6YJi5Jc&e= 
> PASS 42 ahci-test /x86_64/ahci/io/dma/lba28/long/low
> ==6713==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> ==6713==WARNING: ASan is ignoring requested __asan_handle_no_return: stack top: 0x7ffc90f81000; bottom 0x7f523d576000; size: 0x00aa53a0b000 (731547480064)
> False positive error reports may follow
> For details see https://urldefense.proofpoint.com/v2/url?u=https-3A__github.com_google_sanitizers_issues_189&d=DwIGaQ&c=s883GpUCOChKOHiocYtGcg&r=IIUxIyRwG4RGy57y2nvMNYcDkqW-NHozZ2R38VYcg5U&m=cpLfEzDc9TG6RQRXS4UEgCLkSzOo9Gw6b5hCJ6ap5u8&s=c2lE321GhK0UAWVNcYgh_BrHTqG22KUMfVOm6YJi5Jc&e= 
> PASS 43 ahci-test /x86_64/ahci/io/dma/lba28/long/high
> ==6720==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> PASS 44 ahci-test /x86_64/ahci/io/dma/lba28/short/zero
> ==6726==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> PASS 45 ahci-test /x86_64/ahci/io/dma/lba28/short/low
> ==6732==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> PASS 46 ahci-test /x86_64/ahci/io/dma/lba28/short/high
> ==6738==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> PASS 47 ahci-test /x86_64/ahci/io/dma/lba48/simple/zero
> ==6744==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> PASS 48 ahci-test /x86_64/ahci/io/dma/lba48/simple/low
> ==6750==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> PASS 49 ahci-test /x86_64/ahci/io/dma/lba48/simple/high
> ==6756==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> PASS 50 ahci-test /x86_64/ahci/io/dma/lba48/double/zero
> ==6762==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> PASS 51 ahci-test /x86_64/ahci/io/dma/lba48/double/low
> ==6768==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> PASS 52 ahci-test /x86_64/ahci/io/dma/lba48/double/high
> ==6774==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> ==6774==WARNING: ASan is ignoring requested __asan_handle_no_return: stack top: 0x7ffc95b38000; bottom 0x7f367ad76000; size: 0x00c61adc2000 (850854158336)
> False positive error reports may follow
> For details see https://urldefense.proofpoint.com/v2/url?u=https-3A__github.com_google_sanitizers_issues_189&d=DwIGaQ&c=s883GpUCOChKOHiocYtGcg&r=IIUxIyRwG4RGy57y2nvMNYcDkqW-NHozZ2R38VYcg5U&m=cpLfEzDc9TG6RQRXS4UEgCLkSzOo9Gw6b5hCJ6ap5u8&s=c2lE321GhK0UAWVNcYgh_BrHTqG22KUMfVOm6YJi5Jc&e= 
> PASS 53 ahci-test /x86_64/ahci/io/dma/lba48/long/zero
> ==6781==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> ==6781==WARNING: ASan is ignoring requested __asan_handle_no_return: stack top: 0x7fff9e8b6000; bottom 0x7f88d81fd000; size: 0x0076c66b9000 (510135078912)
> False positive error reports may follow
> For details see https://urldefense.proofpoint.com/v2/url?u=https-3A__github.com_google_sanitizers_issues_189&d=DwIGaQ&c=s883GpUCOChKOHiocYtGcg&r=IIUxIyRwG4RGy57y2nvMNYcDkqW-NHozZ2R38VYcg5U&m=cpLfEzDc9TG6RQRXS4UEgCLkSzOo9Gw6b5hCJ6ap5u8&s=c2lE321GhK0UAWVNcYgh_BrHTqG22KUMfVOm6YJi5Jc&e= 
> PASS 54 ahci-test /x86_64/ahci/io/dma/lba48/long/low
> ==6788==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> ==6788==WARNING: ASan is ignoring requested __asan_handle_no_return: stack top: 0x7ffedce8e000; bottom 0x7fec6fbfd000; size: 0x00126d291000 (79140818944)
> False positive error reports may follow
> For details see https://urldefense.proofpoint.com/v2/url?u=https-3A__github.com_google_sanitizers_issues_189&d=DwIGaQ&c=s883GpUCOChKOHiocYtGcg&r=IIUxIyRwG4RGy57y2nvMNYcDkqW-NHozZ2R38VYcg5U&m=cpLfEzDc9TG6RQRXS4UEgCLkSzOo9Gw6b5hCJ6ap5u8&s=c2lE321GhK0UAWVNcYgh_BrHTqG22KUMfVOm6YJi5Jc&e= 
> PASS 55 ahci-test /x86_64/ahci/io/dma/lba48/long/high
> ==6795==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> PASS 56 ahci-test /x86_64/ahci/io/dma/lba48/short/zero
> ==6801==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> PASS 57 ahci-test /x86_64/ahci/io/dma/lba48/short/low
> ==6807==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> PASS 58 ahci-test /x86_64/ahci/io/dma/lba48/short/high
> ==6813==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> PASS 59 ahci-test /x86_64/ahci/io/ncq/simple
> ==6819==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> PASS 60 ahci-test /x86_64/ahci/io/ncq/retry
> ==6825==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> PASS 61 ahci-test /x86_64/ahci/flush/simple
> ==6831==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> PASS 62 ahci-test /x86_64/ahci/flush/retry
> ==6837==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> ==6843==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> PASS 63 ahci-test /x86_64/ahci/flush/migrate
> ==6851==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> ==6857==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> PASS 64 ahci-test /x86_64/ahci/migrate/sanity
> ==6865==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> ==6871==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> PASS 65 ahci-test /x86_64/ahci/migrate/dma/simple
> ==6879==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> ==6885==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> PASS 66 ahci-test /x86_64/ahci/migrate/dma/halted
> ==6893==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> ==6899==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> PASS 67 ahci-test /x86_64/ahci/migrate/ncq/simple
> ==6907==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> ==6913==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> PASS 68 ahci-test /x86_64/ahci/migrate/ncq/halted
> ==6921==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> PASS 69 ahci-test /x86_64/ahci/cdrom/eject
> ==6926==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> PASS 70 ahci-test /x86_64/ahci/cdrom/dma/single
> ==6932==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> PASS 71 ahci-test /x86_64/ahci/cdrom/dma/multi
> ==6938==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> PASS 72 ahci-test /x86_64/ahci/cdrom/pio/single
> ==6944==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> ==6944==WARNING: ASan is ignoring requested __asan_handle_no_return: stack top: 0x7ffd0ae20000; bottom 0x7fa7e19fe000; size: 0x005529422000 (365764419584)
> False positive error reports may follow
> For details see https://urldefense.proofpoint.com/v2/url?u=https-3A__github.com_google_sanitizers_issues_189&d=DwIGaQ&c=s883GpUCOChKOHiocYtGcg&r=IIUxIyRwG4RGy57y2nvMNYcDkqW-NHozZ2R38VYcg5U&m=cpLfEzDc9TG6RQRXS4UEgCLkSzOo9Gw6b5hCJ6ap5u8&s=c2lE321GhK0UAWVNcYgh_BrHTqG22KUMfVOm6YJi5Jc&e= 
> PASS 73 ahci-test /x86_64/ahci/cdrom/pio/multi
> ==6950==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> PASS 74 ahci-test /x86_64/ahci/cdrom/pio/bcl
> MALLOC_PERTURB_=${MALLOC_PERTURB_:-$(( ${RANDOM:-0} % 255 + 1))}  QTEST_QEMU_BINARY=x86_64-softmmu/qemu-system-x86_64 QTEST_QEMU_IMG=qemu-img tests/qtest/hd-geo-test -m=quick -k --tap < /dev/null | ./scripts/tap-driver.pl --test-name="hd-geo-test" 
> PASS 1 hd-geo-test /x86_64/hd-geo/ide/none
> ==6964==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> PASS 2 hd-geo-test /x86_64/hd-geo/ide/drive/cd_0
> ==6970==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> PASS 3 hd-geo-test /x86_64/hd-geo/ide/drive/mbr/blank
> ==6976==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> PASS 4 hd-geo-test /x86_64/hd-geo/ide/drive/mbr/lba
> ==6982==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> PASS 5 hd-geo-test /x86_64/hd-geo/ide/drive/mbr/chs
> ==6988==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> PASS 6 hd-geo-test /x86_64/hd-geo/ide/device/mbr/blank
> ==6994==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> PASS 7 hd-geo-test /x86_64/hd-geo/ide/device/mbr/lba
> ==7000==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> PASS 8 hd-geo-test /x86_64/hd-geo/ide/device/mbr/chs
> ==7006==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> PASS 9 hd-geo-test /x86_64/hd-geo/ide/device/user/chs
> ==7011==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> PASS 10 hd-geo-test /x86_64/hd-geo/ide/device/user/chst
> ==7017==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> ==7021==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> ==7025==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> ==7029==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> ==7033==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> ==7037==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> ==7041==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> ==7045==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> ==7048==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> PASS 11 hd-geo-test /x86_64/hd-geo/override/ide
> ==7055==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> ==7059==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> ==7063==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> ==7067==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> ==7071==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> ==7075==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> ==7079==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> ==7083==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> ==7086==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> PASS 12 hd-geo-test /x86_64/hd-geo/override/scsi
> ==7093==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> ==7097==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> ==7101==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> ==7105==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> ==7109==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> ==7113==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> ==7117==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> ==7121==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> ==7124==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> PASS 13 hd-geo-test /x86_64/hd-geo/override/scsi_2_controllers
> ==7131==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> ==7135==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> ==7139==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> ==7143==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> ==7146==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> PASS 14 hd-geo-test /x86_64/hd-geo/override/virtio_blk
> ==7153==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> ==7157==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> ==7160==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> PASS 15 hd-geo-test /x86_64/hd-geo/override/zero_chs
> ==7167==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> ==7171==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> ==7175==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> ==7179==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> ==7182==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> PASS 16 hd-geo-test /x86_64/hd-geo/override/scsi_hot_unplug
> ==7189==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> ==7193==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> ==7197==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> ==7201==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> ==7204==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> PASS 17 hd-geo-test /x86_64/hd-geo/override/virtio_hot_unplug
> MALLOC_PERTURB_=${MALLOC_PERTURB_:-$(( ${RANDOM:-0} % 255 + 1))}  QTEST_QEMU_BINARY=x86_64-softmmu/qemu-system-x86_64 QTEST_QEMU_IMG=qemu-img tests/qtest/boot-order-test -m=quick -k --tap < /dev/null | ./scripts/tap-driver.pl --test-name="boot-order-test" 
> PASS 1 boot-order-test /x86_64/boot-order/pc
> ---
> Could not access KVM kernel module: No such file or directory
> qemu-system-x86_64: -accel kvm: failed to initialize kvm: No such file or directory
> qemu-system-x86_64: falling back to tcg
> ==7273==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> 
> Looking for expected file 'tests/data/acpi/pc/FACP'
> Using expected file 'tests/data/acpi/pc/FACP'
> ---
> Could not access KVM kernel module: No such file or directory
> qemu-system-x86_64: -accel kvm: failed to initialize kvm: No such file or directory
> qemu-system-x86_64: falling back to tcg
> ==7279==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> 
> Looking for expected file 'tests/data/acpi/q35/FACP'
> Using expected file 'tests/data/acpi/q35/FACP'
> ---
> Could not access KVM kernel module: No such file or directory
> qemu-system-x86_64: -accel kvm: failed to initialize kvm: No such file or directory
> qemu-system-x86_64: falling back to tcg
> ==7286==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> 
> Looking for expected file 'tests/data/acpi/q35/FACP.tis'
> Looking for expected file 'tests/data/acpi/q35/FACP'
> ---
> Could not access KVM kernel module: No such file or directory
> qemu-system-x86_64: -accel kvm: failed to initialize kvm: No such file or directory
> qemu-system-x86_64: falling back to tcg
> ==7293==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> 
> Looking for expected file 'tests/data/acpi/q35/FACP.bridge'
> Looking for expected file 'tests/data/acpi/q35/FACP'
> ---
> Could not access KVM kernel module: No such file or directory
> qemu-system-x86_64: -accel kvm: failed to initialize kvm: No such file or directory
> qemu-system-x86_64: falling back to tcg
> ==7299==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> 
> Looking for expected file 'tests/data/acpi/q35/FACP.mmio64'
> Looking for expected file 'tests/data/acpi/q35/FACP'
> ---
> Could not access KVM kernel module: No such file or directory
> qemu-system-x86_64: -accel kvm: failed to initialize kvm: No such file or directory
> qemu-system-x86_64: falling back to tcg
> ==7305==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> 
> Looking for expected file 'tests/data/acpi/q35/FACP.ipmibt'
> Looking for expected file 'tests/data/acpi/q35/FACP'
> ---
> Could not access KVM kernel module: No such file or directory
> qemu-system-x86_64: -accel kvm: failed to initialize kvm: No such file or directory
> qemu-system-x86_64: falling back to tcg
> ==7311==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> 
> Looking for expected file 'tests/data/acpi/q35/FACP.cphp'
> Looking for expected file 'tests/data/acpi/q35/FACP'
> ---
> Could not access KVM kernel module: No such file or directory
> qemu-system-x86_64: -accel kvm: failed to initialize kvm: No such file or directory
> qemu-system-x86_64: falling back to tcg
> ==7318==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> 
> Looking for expected file 'tests/data/acpi/q35/FACP.memhp'
> Looking for expected file 'tests/data/acpi/q35/FACP'
> ---
> Could not access KVM kernel module: No such file or directory
> qemu-system-x86_64: -accel kvm: failed to initialize kvm: No such file or directory
> qemu-system-x86_64: falling back to tcg
> ==7324==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> 
> Looking for expected file 'tests/data/acpi/q35/FACP.numamem'
> Looking for expected file 'tests/data/acpi/q35/FACP'
> ---
> Could not access KVM kernel module: No such file or directory
> qemu-system-x86_64: -accel kvm: failed to initialize kvm: No such file or directory
> qemu-system-x86_64: falling back to tcg
> ==7330==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> 
> Looking for expected file 'tests/data/acpi/q35/FACP.dimmpxm'
> Looking for expected file 'tests/data/acpi/q35/FACP'
> ---
> Could not access KVM kernel module: No such file or directory
> qemu-system-x86_64: -accel kvm: failed to initialize kvm: No such file or directory
> qemu-system-x86_64: falling back to tcg
> ==7339==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> 
> Looking for expected file 'tests/data/acpi/q35/FACP.acpihmat'
> Looking for expected file 'tests/data/acpi/q35/FACP'
> ---
> Could not access KVM kernel module: No such file or directory
> qemu-system-x86_64: -accel kvm: failed to initialize kvm: No such file or directory
> qemu-system-x86_64: falling back to tcg
> ==7346==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> 
> Looking for expected file 'tests/data/acpi/pc/FACP.bridge'
> Looking for expected file 'tests/data/acpi/pc/FACP'
> ---
> Could not access KVM kernel module: No such file or directory
> qemu-system-x86_64: -accel kvm: failed to initialize kvm: No such file or directory
> qemu-system-x86_64: falling back to tcg
> ==7352==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> 
> Looking for expected file 'tests/data/acpi/pc/FACP.ipmikcs'
> Looking for expected file 'tests/data/acpi/pc/FACP'
> ---
> Could not access KVM kernel module: No such file or directory
> qemu-system-x86_64: -accel kvm: failed to initialize kvm: No such file or directory
> qemu-system-x86_64: falling back to tcg
> ==7358==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> 
> Looking for expected file 'tests/data/acpi/pc/FACP.cphp'
> Looking for expected file 'tests/data/acpi/pc/FACP'
> ---
> Could not access KVM kernel module: No such file or directory
> qemu-system-x86_64: -accel kvm: failed to initialize kvm: No such file or directory
> qemu-system-x86_64: falling back to tcg
> ==7365==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> 
> Looking for expected file 'tests/data/acpi/pc/FACP.memhp'
> Looking for expected file 'tests/data/acpi/pc/FACP'
> ---
> Could not access KVM kernel module: No such file or directory
> qemu-system-x86_64: -accel kvm: failed to initialize kvm: No such file or directory
> qemu-system-x86_64: falling back to tcg
> ==7371==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> 
> Looking for expected file 'tests/data/acpi/pc/FACP.numamem'
> Looking for expected file 'tests/data/acpi/pc/FACP'
> ---
> Could not access KVM kernel module: No such file or directory
> qemu-system-x86_64: -accel kvm: failed to initialize kvm: No such file or directory
> qemu-system-x86_64: falling back to tcg
> ==7377==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> 
> Looking for expected file 'tests/data/acpi/pc/FACP.dimmpxm'
> Looking for expected file 'tests/data/acpi/pc/FACP'
> ---
> Could not access KVM kernel module: No such file or directory
> qemu-system-x86_64: -accel kvm: failed to initialize kvm: No such file or directory
> qemu-system-x86_64: falling back to tcg
> ==7386==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> 
> Looking for expected file 'tests/data/acpi/pc/FACP.acpihmat'
> Looking for expected file 'tests/data/acpi/pc/FACP'
> ---
> PASS 1 i440fx-test /x86_64/i440fx/defaults
> PASS 2 i440fx-test /x86_64/i440fx/pam
> PASS 3 i440fx-test /x86_64/i440fx/firmware/bios
> ==7478==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> PASS 4 i440fx-test /x86_64/i440fx/firmware/pflash
> MALLOC_PERTURB_=${MALLOC_PERTURB_:-$(( ${RANDOM:-0} % 255 + 1))}  QTEST_QEMU_BINARY=x86_64-softmmu/qemu-system-x86_64 QTEST_QEMU_IMG=qemu-img tests/qtest/fw_cfg-test -m=quick -k --tap < /dev/null | ./scripts/tap-driver.pl --test-name="fw_cfg-test" 
> PASS 1 fw_cfg-test /x86_64/fw_cfg/signature
> ---
> MALLOC_PERTURB_=${MALLOC_PERTURB_:-$(( ${RANDOM:-0} % 255 + 1))}  QTEST_QEMU_BINARY=x86_64-softmmu/qemu-system-x86_64 QTEST_QEMU_IMG=qemu-img tests/qtest/drive_del-test -m=quick -k --tap < /dev/null | ./scripts/tap-driver.pl --test-name="drive_del-test" 
> PASS 1 drive_del-test /x86_64/drive_del/without-dev
> PASS 2 drive_del-test /x86_64/drive_del/after_failed_device_add
> ==7571==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> PASS 3 drive_del-test /x86_64/blockdev/drive_del_device_del
> MALLOC_PERTURB_=${MALLOC_PERTURB_:-$(( ${RANDOM:-0} % 255 + 1))}  QTEST_QEMU_BINARY=x86_64-softmmu/qemu-system-x86_64 QTEST_QEMU_IMG=qemu-img tests/qtest/wdt_ib700-test -m=quick -k --tap < /dev/null | ./scripts/tap-driver.pl --test-name="wdt_ib700-test" 
> PASS 1 wdt_ib700-test /x86_64/wdt_ib700/pause
> ---
> PASS 1 usb-hcd-uhci-test /x86_64/uhci/pci/init
> PASS 2 usb-hcd-uhci-test /x86_64/uhci/pci/port1
> PASS 3 usb-hcd-uhci-test /x86_64/uhci/pci/hotplug
> ==7766==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> PASS 4 usb-hcd-uhci-test /x86_64/uhci/pci/hotplug/usb-storage
> MALLOC_PERTURB_=${MALLOC_PERTURB_:-$(( ${RANDOM:-0} % 255 + 1))}  QTEST_QEMU_BINARY=x86_64-softmmu/qemu-system-x86_64 QTEST_QEMU_IMG=qemu-img tests/qtest/usb-hcd-ehci-test -m=quick -k --tap < /dev/null | ./scripts/tap-driver.pl --test-name="usb-hcd-ehci-test" 
> PASS 1 usb-hcd-ehci-test /x86_64/ehci/pci/uhci-port-1
> ---
> MALLOC_PERTURB_=${MALLOC_PERTURB_:-$(( ${RANDOM:-0} % 255 + 1))}  QTEST_QEMU_BINARY=x86_64-softmmu/qemu-system-x86_64 QTEST_QEMU_IMG=qemu-img tests/qtest/usb-hcd-xhci-test -m=quick -k --tap < /dev/null | ./scripts/tap-driver.pl --test-name="usb-hcd-xhci-test" 
> PASS 1 usb-hcd-xhci-test /x86_64/xhci/pci/init
> PASS 2 usb-hcd-xhci-test /x86_64/xhci/pci/hotplug
> ==7784==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> PASS 3 usb-hcd-xhci-test /x86_64/xhci/pci/hotplug/usb-uas
> PASS 4 usb-hcd-xhci-test /x86_64/xhci/pci/hotplug/usb-ccid
> MALLOC_PERTURB_=${MALLOC_PERTURB_:-$(( ${RANDOM:-0} % 255 + 1))}  QTEST_QEMU_BINARY=x86_64-softmmu/qemu-system-x86_64 QTEST_QEMU_IMG=qemu-img tests/qtest/cpu-plug-test -m=quick -k --tap < /dev/null | ./scripts/tap-driver.pl --test-name="cpu-plug-test" 
> ---
> Could not access KVM kernel module: No such file or directory
> qemu-system-x86_64: -accel kvm: failed to initialize kvm: No such file or directory
> qemu-system-x86_64: falling back to tcg
> ==7920==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> PASS 1 vmgenid-test /x86_64/vmgenid/vmgenid/set-guid
> Could not access KVM kernel module: No such file or directory
> qemu-system-x86_64: -accel kvm: failed to initialize kvm: No such file or directory
> qemu-system-x86_64: falling back to tcg
> ==7926==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> PASS 2 vmgenid-test /x86_64/vmgenid/vmgenid/set-guid-auto
> Could not access KVM kernel module: No such file or directory
> qemu-system-x86_64: -accel kvm: failed to initialize kvm: No such file or directory
> qemu-system-x86_64: falling back to tcg
> ==7932==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> PASS 3 vmgenid-test /x86_64/vmgenid/vmgenid/query-monitor
> MALLOC_PERTURB_=${MALLOC_PERTURB_:-$(( ${RANDOM:-0} % 255 + 1))}  QTEST_QEMU_BINARY=x86_64-softmmu/qemu-system-x86_64 QTEST_QEMU_IMG=qemu-img tests/qtest/tpm-crb-swtpm-test -m=quick -k --tap < /dev/null | ./scripts/tap-driver.pl --test-name="tpm-crb-swtpm-test" 
> SKIP 1 tpm-crb-swtpm-test /x86_64/tpm/crb-swtpm/test # SKIP swtpm not in PATH or missing --tpm2 support
> ---
> Could not access KVM kernel module: No such file or directory
> qemu-system-x86_64: -accel kvm: failed to initialize kvm: No such file or directory
> qemu-system-x86_64: falling back to tcg
> ==8031==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> Could not access KVM kernel module: No such file or directory
> qemu-system-x86_64: -accel kvm: failed to initialize kvm: No such file or directory
> qemu-system-x86_64: falling back to tcg
> ==8037==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> PASS 3 migration-test /x86_64/migration/fd_proto
> Could not access KVM kernel module: No such file or directory
> qemu-system-x86_64: -accel kvm: failed to initialize kvm: No such file or directory
> qemu-system-x86_64: falling back to tcg
> ==8044==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> Could not access KVM kernel module: No such file or directory
> qemu-system-x86_64: -accel kvm: failed to initialize kvm: No such file or directory
> qemu-system-x86_64: falling back to tcg
> ==8050==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> PASS 4 migration-test /x86_64/migration/validate_uuid
> PASS 5 migration-test /x86_64/migration/validate_uuid_error
> PASS 6 migration-test /x86_64/migration/validate_uuid_src_not_set
> ---
> Could not access KVM kernel module: No such file or directory
> qemu-system-x86_64: -accel kvm: failed to initialize kvm: No such file or directory
> qemu-system-x86_64: falling back to tcg
> ==8100==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> Could not access KVM kernel module: No such file or directory
> qemu-system-x86_64: -accel kvm: failed to initialize kvm: No such file or directory
> qemu-system-x86_64: falling back to tcg
> ==8106==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> PASS 8 migration-test /x86_64/migration/auto_converge
> Could not access KVM kernel module: No such file or directory
> qemu-system-x86_64: -accel kvm: failed to initialize kvm: No such file or directory
> qemu-system-x86_64: falling back to tcg
> ==8114==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> Could not access KVM kernel module: No such file or directory
> qemu-system-x86_64: -accel kvm: failed to initialize kvm: No such file or directory
> qemu-system-x86_64: falling back to tcg
> ==8120==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> PASS 9 migration-test /x86_64/migration/postcopy/unix
> PASS 10 migration-test /x86_64/migration/postcopy/recovery
> Could not access KVM kernel module: No such file or directory
> qemu-system-x86_64: -accel kvm: failed to initialize kvm: No such file or directory
> qemu-system-x86_64: falling back to tcg
> ==8149==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> Could not access KVM kernel module: No such file or directory
> qemu-system-x86_64: -accel kvm: failed to initialize kvm: No such file or directory
> qemu-system-x86_64: falling back to tcg
> ==8155==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> PASS 11 migration-test /x86_64/migration/precopy/unix
> Could not access KVM kernel module: No such file or directory
> qemu-system-x86_64: -accel kvm: failed to initialize kvm: No such file or directory
> qemu-system-x86_64: falling back to tcg
> ==8163==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> Could not access KVM kernel module: No such file or directory
> qemu-system-x86_64: -accel kvm: failed to initialize kvm: No such file or directory
> qemu-system-x86_64: falling back to tcg
> ==8169==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> PASS 12 migration-test /x86_64/migration/precopy/tcp
> Could not access KVM kernel module: No such file or directory
> qemu-system-x86_64: -accel kvm: failed to initialize kvm: No such file or directory
> qemu-system-x86_64: falling back to tcg
> ==8177==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> Could not access KVM kernel module: No such file or directory
> qemu-system-x86_64: -accel kvm: failed to initialize kvm: No such file or directory
> qemu-system-x86_64: falling back to tcg
> ==8183==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> PASS 13 migration-test /x86_64/migration/xbzrle/unix
> Could not access KVM kernel module: No such file or directory
> qemu-system-x86_64: -accel kvm: failed to initialize kvm: No such file or directory
> qemu-system-x86_64: falling back to tcg
> ==8191==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> Could not access KVM kernel module: No such file or directory
> qemu-system-x86_64: -accel kvm: failed to initialize kvm: No such file or directory
> qemu-system-x86_64: falling back to tcg
> ==8197==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> PASS 14 migration-test /x86_64/migration/multifd/tcp/none
> Could not access KVM kernel module: No such file or directory
> qemu-system-x86_64: -accel kvm: failed to initialize kvm: No such file or directory
> qemu-system-x86_64: falling back to tcg
> ==8315==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> PASS 15 migration-test /x86_64/migration/multifd/tcp/cancel
> Could not access KVM kernel module: No such file or directory
> qemu-system-x86_64: -accel kvm: failed to initialize kvm: No such file or directory
> qemu-system-x86_64: falling back to tcg
> ==8371==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> Could not access KVM kernel module: No such file or directory
> qemu-system-x86_64: -accel kvm: failed to initialize kvm: No such file or directory
> qemu-system-x86_64: falling back to tcg
> ==8377==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> PASS 16 migration-test /x86_64/migration/multifd/tcp/zlib
> Could not access KVM kernel module: No such file or directory
> qemu-system-x86_64: -accel kvm: failed to initialize kvm: No such file or directory
> qemu-system-x86_64: falling back to tcg
> ==8433==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> Could not access KVM kernel module: No such file or directory
> qemu-system-x86_64: -accel kvm: failed to initialize kvm: No such file or directory
> qemu-system-x86_64: falling back to tcg
> ==8439==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> PASS 17 migration-test /x86_64/migration/multifd/tcp/zstd
> MALLOC_PERTURB_=${MALLOC_PERTURB_:-$(( ${RANDOM:-0} % 255 + 1))}  QTEST_QEMU_BINARY=x86_64-softmmu/qemu-system-x86_64 QTEST_QEMU_IMG=qemu-img tests/qtest/test-x86-cpuid-compat -m=quick -k --tap < /dev/null | ./scripts/tap-driver.pl --test-name="test-x86-cpuid-compat" 
> PASS 1 test-x86-cpuid-compat /x86/cpuid/parsing-plus-minus
> ---
> PASS 1 machine-none-test /x86_64/machine/none/cpu_option
> MALLOC_PERTURB_=${MALLOC_PERTURB_:-$(( ${RANDOM:-0} % 255 + 1))}  QTEST_QEMU_BINARY=x86_64-softmmu/qemu-system-x86_64 QTEST_QEMU_IMG=qemu-img tests/qtest/qmp-test -m=quick -k --tap < /dev/null | ./scripts/tap-driver.pl --test-name="qmp-test" 
> PASS 1 qmp-test /x86_64/qmp/protocol
> ==8878==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> PASS 2 qmp-test /x86_64/qmp/oob
> PASS 3 qmp-test /x86_64/qmp/preconfig
> PASS 4 qmp-test /x86_64/qmp/missing-any-arg
> ---
> PASS 16 qos-test /x86_64/pc/i440FX-pcihost/pci-bus-pc/pci-bus/i82562/pci-device/pci-device-tests/nop
> PASS 17 qos-test /x86_64/pc/i440FX-pcihost/pci-bus-pc/pci-bus/i82801/pci-device/pci-device-tests/nop
> PASS 18 qos-test /x86_64/pc/i440FX-pcihost/pci-bus-pc/pci-bus/ES1370/pci-device/pci-device-tests/nop
> ==9296==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> PASS 19 qos-test /x86_64/pc/i440FX-pcihost/pci-bus-pc/pci-bus/megasas/pci-device/pci-device-tests/nop
> PASS 20 qos-test /x86_64/pc/i440FX-pcihost/pci-bus-pc/pci-bus/megasas/megasas-tests/dcmd/pd-get-info/fuzz
> PASS 21 qos-test /x86_64/pc/i440FX-pcihost/pci-bus-pc/pci-bus/ne2k_pci/pci-device/pci-device-tests/nop
> PASS 22 qos-test /x86_64/pc/i440FX-pcihost/pci-bus-pc/pci-bus/tulip/pci-device/pci-device-tests/nop
> PASS 23 qos-test /x86_64/pc/i440FX-pcihost/pci-bus-pc/pci-bus/tulip/tulip-tests/tulip_large_tx
> PASS 24 qos-test /x86_64/pc/i440FX-pcihost/pci-bus-pc/pci-bus/nvme/pci-device/pci-device-tests/nop
> ==9311==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> PASS 25 qos-test /x86_64/pc/i440FX-pcihost/pci-bus-pc/pci-bus/nvme/nvme-tests/oob-cmb-access
> ==9316==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> PASS 26 qos-test /x86_64/pc/i440FX-pcihost/pci-bus-pc/pci-bus/pcnet/pci-device/pci-device-tests/nop
> PASS 27 qos-test /x86_64/pc/i440FX-pcihost/pci-bus-pc/pci-bus/pci-ohci/pci-device/pci-device-tests/nop
> PASS 28 qos-test /x86_64/pc/i440FX-pcihost/pci-bus-pc/pci-bus/pci-ohci/pci-ohci-tests/ohci_pci-test-hotplug
> ---
> PASS 35 qos-test /x86_64/pc/i440FX-pcihost/pci-bus-pc/pci-bus/sdhci-pci/sdhci/sdhci-tests/registers
> PASS 36 qos-test /x86_64/pc/i440FX-pcihost/pci-bus-pc/pci-bus/tpci200/ipack/ipoctal232/ipoctal232-tests/nop
> PASS 37 qos-test /x86_64/pc/i440FX-pcihost/pci-bus-pc/pci-bus/tpci200/pci-device/pci-device-tests/nop
> ==9376==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> PASS 38 qos-test /x86_64/pc/i440FX-pcihost/pci-bus-pc/pci-bus/virtio-9p-pci/pci-device/pci-device-tests/nop
> PASS 39 qos-test /x86_64/pc/i440FX-pcihost/pci-bus-pc/pci-bus/virtio-9p-pci/virtio/virtio-tests/nop
> PASS 40 qos-test /x86_64/pc/i440FX-pcihost/pci-bus-pc/pci-bus/virtio-9p-pci/virtio-9p/virtio-9p-tests/config
> ---
> PASS 50 qos-test /x86_64/pc/i440FX-pcihost/pci-bus-pc/pci-bus/virtio-9p-pci/virtio-9p/virtio-9p-tests/fs/readdir/basic
> PASS 51 qos-test /x86_64/pc/i440FX-pcihost/pci-bus-pc/pci-bus/virtio-balloon-pci/pci-device/pci-device-tests/nop
> PASS 52 qos-test /x86_64/pc/i440FX-pcihost/pci-bus-pc/pci-bus/virtio-balloon-pci/virtio/virtio-tests/nop
> ==9387==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> PASS 53 qos-test /x86_64/pc/i440FX-pcihost/pci-bus-pc/pci-bus/virtio-blk-pci/virtio-blk-pci-tests/msix
> ==9393==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> PASS 54 qos-test /x86_64/pc/i440FX-pcihost/pci-bus-pc/pci-bus/virtio-blk-pci/virtio-blk-pci-tests/idx
> ==9399==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> PASS 55 qos-test /x86_64/pc/i440FX-pcihost/pci-bus-pc/pci-bus/virtio-blk-pci/virtio-blk-pci-tests/nxvirtq
> ==9405==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> PASS 56 qos-test /x86_64/pc/i440FX-pcihost/pci-bus-pc/pci-bus/virtio-blk-pci/virtio-blk-pci-tests/hotplug
> ==9411==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> PASS 57 qos-test /x86_64/pc/i440FX-pcihost/pci-bus-pc/pci-bus/virtio-blk-pci/virtio-blk/virtio-blk-tests/indirect
> ==9417==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> PASS 58 qos-test /x86_64/pc/i440FX-pcihost/pci-bus-pc/pci-bus/virtio-blk-pci/virtio-blk/virtio-blk-tests/config
> ==9423==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> PASS 59 qos-test /x86_64/pc/i440FX-pcihost/pci-bus-pc/pci-bus/virtio-blk-pci/virtio-blk/virtio-blk-tests/basic
> ==9429==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> PASS 60 qos-test /x86_64/pc/i440FX-pcihost/pci-bus-pc/pci-bus/virtio-blk-pci/virtio-blk/virtio-blk-tests/resize
> PASS 61 qos-test /x86_64/pc/i440FX-pcihost/pci-bus-pc/pci-bus/virtio-net-pci/virtio-net/virtio-net-tests/basic
> PASS 62 qos-test /x86_64/pc/i440FX-pcihost/pci-bus-pc/pci-bus/virtio-net-pci/virtio-net/virtio-net-tests/rx_stop_cont
> ---
> PASS 70 qos-test /x86_64/pc/i440FX-pcihost/pci-bus-pc/pci-bus/virtio-rng-pci/virtio-rng-pci-tests/hotplug
> PASS 71 qos-test /x86_64/pc/i440FX-pcihost/pci-bus-pc/pci-bus/virtio-rng-pci/pci-device/pci-device-tests/nop
> PASS 72 qos-test /x86_64/pc/i440FX-pcihost/pci-bus-pc/pci-bus/virtio-rng-pci/virtio/virtio-tests/nop
> ==9521==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> PASS 73 qos-test /x86_64/pc/i440FX-pcihost/pci-bus-pc/pci-bus/virtio-scsi-pci/virtio-scsi-pci-tests/iothread-attach-node
> ==9532==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> PASS 74 qos-test /x86_64/pc/i440FX-pcihost/pci-bus-pc/pci-bus/virtio-scsi-pci/pci-device/pci-device-tests/nop
> ==9537==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> PASS 75 qos-test /x86_64/pc/i440FX-pcihost/pci-bus-pc/pci-bus/virtio-scsi-pci/virtio-scsi/virtio-scsi-tests/hotplug
> ==9542==WARNING: ASan doesn't fully support makecontext/swapcontext functions and may produce false positives in some cases!
> PASS 76 qos-test /x86_64/pc/i440FX-pcihost/pci-bus-pc/pci-bus/virtio-scsi-pci/virtio-scsi/virtio-scsi-tests/unaligned-write-same
> PASS 77 qos-test /x86_64/pc/i440FX-pcihost/pci-bus-pc/pci-bus/virtio-serial-pci/pci-device/pci-device-tests/nop
> PASS 78 qos-test /x86_64/pc/i440FX-pcihost/pci-bus-pc/pci-bus/virtio-serial-pci/virtio/virtio-tests/nop
> ---
>    raise CalledProcessError(retcode, cmd)
> subprocess.CalledProcessError: Command '['sudo', '-n', 'docker', 'run', '--label', 'com.qemu.instance.uuid=de673b0e75fb45e28370b5286b953622', '-u', '1003', '--security-opt', 'seccomp=unconfined', '--rm', '-e', 'TARGET_LIST=x86_64-softmmu', '-e', 'EXTRA_CONFIGURE_OPTS=', '-e', 'V=', '-e', 'J=14', '-e', 'DEBUG=', '-e', 'SHOW_ENV=', '-e', 'CCACHE_DIR=/var/tmp/ccache', '-v', '/home/patchew2/.cache/qemu-docker-ccache:/var/tmp/ccache:z', '-v', '/var/tmp/patchew-tester-tmp-d0ersclp/src/docker-src.2020-06-16-12.30.22.23989:/var/tmp/qemu:z,ro', 'qemu:fedora', '/var/tmp/qemu/run', 'test-debug']' returned non-zero exit status 2.
> filter=--filter=label=com.qemu.instance.uuid=de673b0e75fb45e28370b5286b953622
> make[1]: *** [docker-run] Error 1
> make[1]: Leaving directory `/var/tmp/patchew-tester-tmp-d0ersclp/src'
> make: *** [docker-run-test-debug@fedora] Error 2
> 
> real    43m47.486s
> user    0m8.778s
> 
> 
> The full log is available at
> https://urldefense.proofpoint.com/v2/url?u=http-3A__patchew.org_logs_1592310699-2D58916-2D1-2Dgit-2Dsend-2Demail-2Dani.sinha-40nutanix.com_testing.asan_-3Ftype-3Dmessage&d=DwIGaQ&c=s883GpUCOChKOHiocYtGcg&r=IIUxIyRwG4RGy57y2nvMNYcDkqW-NHozZ2R38VYcg5U&m=cpLfEzDc9TG6RQRXS4UEgCLkSzOo9Gw6b5hCJ6ap5u8&s=itlqLgoNJYBkrwSQOMaBZFQDOAdwFiG5yHaz3gaRO_8&e= .
> ---
> Email generated automatically by Patchew [https://urldefense.proofpoint.com/v2/url?u=https-3A__patchew.org_&d=DwIGaQ&c=s883GpUCOChKOHiocYtGcg&r=IIUxIyRwG4RGy57y2nvMNYcDkqW-NHozZ2R38VYcg5U&m=cpLfEzDc9TG6RQRXS4UEgCLkSzOo9Gw6b5hCJ6ap5u8&s=2cfhvHsPI5LFSCsxhWaWAWuOVtBOA226NIb_qfE1Kf4&e= ].
> Please send your feedback to patchew-devel@redhat.com



^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2020-06-20  7:52 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-06-16 12:31 [PATCH V3] Rename use_acpi_pci_hotplug to more appropriate use_acpi_hotplug_bridge Ani Sinha
2020-06-16 13:17 ` Igor Mammedov
2020-06-16 13:20   ` Ani Sinha
2020-06-16 13:39     ` Igor Mammedov
2020-06-16 13:47       ` Ani Sinha
2020-06-16 17:14 ` no-reply
2020-06-20  7:50   ` Ani Sinha

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.