Re: [Qemu-devel] Fwd: [PATCH] QEMU patch for PCI handling bug (invalid free)

2018-12-11 Thread Matthias Weckbecker
On Mon, Dec 10, 2018 at 03:56:53PM +0100, Kevin Wolf wrote: > Am 10.12.2018 um 14:38 hat Matthias Weckbecker geschrieben: > > Hi Kevin, > > > > I'm attaching a patch for qemu. Read below for details. > > > > There's a bug in qemu in the PCI

[Qemu-devel] [PATCH v2] hw/pci-bridge: Fix invalid free()

2018-12-12 Thread Matthias Weckbecker
7;s running and having a PCI bridge attached 3) Destroy the VM and revert the running snapshot. This commit fixes the issue. Signed-off-by: Matthias Weckbecker --- hw/pci/pci_bridge.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hw/pci/pci_bridge.c b/hw/pci/pci

[PATCH] plugins: new syscalls plugin

2020-08-12 Thread Matthias Weckbecker
-06/msg00846.html by using the new QEMU plugin API. Signed-off-by: Matthias Weckbecker --- tests/plugin/Makefile | 1 + tests/plugin/syscall.c | 49 ++ 2 files changed, 50 insertions(+) create mode 100644 tests/plugin/syscall.c diff --git a/tests/plugin