[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [PATCH v2 01/15] cpu: Free cpu_ases
From: |
Peter Maydell |
Subject: |
Re: [PATCH v2 01/15] cpu: Free cpu_ases |
Date: |
Fri, 28 Jun 2024 16:12:29 +0100 |
On Thu, 27 Jun 2024 at 14:39, Akihiko Odaki <akihiko.odaki@daynix.com> wrote:
>
> This fixes LeakSanitizer warnings.
>
> Signed-off-by: Akihiko Odaki <akihiko.odaki@daynix.com>
> ---
> hw/core/cpu-common.c | 1 +
> 1 file changed, 1 insertion(+)
>
> diff --git a/hw/core/cpu-common.c b/hw/core/cpu-common.c
> index f131cde2c038..a3073c17d098 100644
> --- a/hw/core/cpu-common.c
> +++ b/hw/core/cpu-common.c
> @@ -289,6 +289,7 @@ static void cpu_common_finalize(Object *obj)
> qemu_cond_destroy(cpu->halt_cond);
> g_free(cpu->halt_cond);
> g_free(cpu->thread);
> + g_free(cpu->cpu_ases);
I think this is likely not sufficient. There's a patch lurking
in the vcpu-hotplug series:
https://lore.kernel.org/qemu-devel/20240607115649.214622-7-salil.mehta@huawei.com/
which adds a cpu_address_space_destroy() function, which is
probably what we need to have happen on CPU unrealize.
NB that that patch isn't actually sufficient, though:
see discussion here on previous version of patchset
https://lore.kernel.org/qemu-devel/CAFEAcA92nCPPk0Qa6XjRqRGTq_XDyRSVVaz67WgJBEZcxoEtOQ@mail.gmail.com/
and the link from there to a different earlier patch from Philippe.
thanks
-- PMM
- [PATCH v2 00/15] Fix check-qtest-ppc64 sanitizer errors, Akihiko Odaki, 2024/06/27
- [PATCH v2 01/15] cpu: Free cpu_ases, Akihiko Odaki, 2024/06/27
- Re: [PATCH v2 01/15] cpu: Free cpu_ases,
Peter Maydell <=
- [PATCH v2 02/15] hw/ide: Convert macio ide_irq into GPIO line, Akihiko Odaki, 2024/06/27
- [PATCH v2 03/15] hw/ide: Remove internal DMA qemu_irq, Akihiko Odaki, 2024/06/27
- [PATCH v2 04/15] hw/isa/vt82c686: Define a GPIO line between vt82c686 and i8259, Akihiko Odaki, 2024/06/27
- Re: [PATCH v2 04/15] hw/isa/vt82c686: Define a GPIO line between vt82c686 and i8259, BALATON Zoltan, 2024/06/29
- [PATCH v2 05/15] spapr: Free stdout path, Akihiko Odaki, 2024/06/27