Re: [PATCH 6/6] hw/isa/piix4: Fix leak removing unuseful qemu_allocate_irqs() call

2021-04-15 Thread Philippe Mathieu-Daudé
ping for review? On 3/24/21 12:13 AM, Philippe Mathieu-Daudé wrote: > We locally create an input IRQ with qemu_allocate_irqs() to > pass it as output IRQ of the PIC, but its handler simply dispatch > into another of our output IRQ ("intr" output). > > Simplify by directly connecting the PIC outpu

[PATCH 6/6] hw/isa/piix4: Fix leak removing unuseful qemu_allocate_irqs() call

2021-03-23 Thread Philippe Mathieu-Daudé
We locally create an input IRQ with qemu_allocate_irqs() to pass it as output IRQ of the PIC, but its handler simply dispatch into another of our output IRQ ("intr" output). Simplify by directly connecting the PIC output to our "intr" output. This fixes when using QEMU built with --enable-sanitiz