[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH 00/14] Fix check-qtest-ppc64 sanitizer errors
From: |
Akihiko Odaki |
Subject: |
[PATCH 00/14] Fix check-qtest-ppc64 sanitizer errors |
Date: |
Wed, 26 Jun 2024 20:06:23 +0900 |
I saw various sanitizer errors when running check-qtest-ppc64. While
I could just turn off sanitizers, I decided to tackle them this time.
Unfortunately, GLib does not free test data in some cases so some
sanitizer errors remain. All sanitizer errors will be gone with this
patch series combined with the following change for GLib:
https://gitlab.gnome.org/GNOME/glib/-/merge_requests/4120
Signed-off-by: Akihiko Odaki <akihiko.odaki@daynix.com>
---
Akihiko Odaki (14):
hw/core: Free CPUState allocations
hw/ide: Free macio-ide IRQs
hw/isa/vt82c686: Free irqs
spapr: Free stdout path
ppc/vof: Fix unaligned FDT property access
hw/virtio: Free vqs before vhost_dev_cleanup()
migration: Free removed SaveStateEntry
memory: Do not create circular reference with subregion
tests/qtest: Use qtest_add_data_func_full()
tests/qtest: Free unused QMP response
tests/qtest: Free old machine variable name
tests/qtest: Delete previous boot file
tests/qtest: Free paths
tests/qtest: Free GThread
hw/core/cpu-common.c | 3 +++
hw/ide/macio.c | 9 +++++++++
hw/isa/vt82c686.c | 3 ++-
hw/ppc/spapr_vof.c | 2 +-
hw/ppc/vof.c | 2 +-
hw/virtio/vhost-user-base.c | 2 ++
migration/savevm.c | 2 ++
system/memory.c | 11 +++++++++--
tests/qtest/device-introspect-test.c | 7 +++----
tests/qtest/libqtest.c | 3 +++
tests/qtest/migration-test.c | 18 +++++++++++-------
tests/qtest/qos-test.c | 16 ++++++++++++----
tests/qtest/vhost-user-test.c | 6 +++---
13 files changed, 61 insertions(+), 23 deletions(-)
---
base-commit: 74abb45dac6979e7ff76172b7f0a24e869405184
change-id: 20240625-san-097afaf4f1c2
Best regards,
--
Akihiko Odaki <akihiko.odaki@daynix.com>
- [PATCH 00/14] Fix check-qtest-ppc64 sanitizer errors,
Akihiko Odaki <=
- [PATCH 01/14] hw/core: Free CPUState allocations, Akihiko Odaki, 2024/06/26
- [PATCH 02/14] hw/ide: Free macio-ide IRQs, Akihiko Odaki, 2024/06/26
- [PATCH 03/14] hw/isa/vt82c686: Free irqs, Akihiko Odaki, 2024/06/26
- [PATCH 04/14] spapr: Free stdout path, Akihiko Odaki, 2024/06/26
- [PATCH 05/14] ppc/vof: Fix unaligned FDT property access, Akihiko Odaki, 2024/06/26