summary refs log tree commit diff stats
path: root/hw/core/cpu-common.c
diff options
context:
space:
mode:
authorPeter Xu <peterx@redhat.com>2025-09-29 15:42:27 +0100
committerPeter Xu <peterx@redhat.com>2025-10-03 09:48:02 -0400
commit041600e23f2fe2a9c252c9a8b26c7d147bedf982 (patch)
tree29c9f29a2ce3969e4021d8529a7057f36b2a9a48 /hw/core/cpu-common.c
parent9e7bfda4909cc688dd0327e17985019f08a78d5d (diff)
downloadfocaccia-qemu-041600e23f2fe2a9c252c9a8b26c7d147bedf982.tar.gz
focaccia-qemu-041600e23f2fe2a9c252c9a8b26c7d147bedf982.zip
memory: New AS helper to serialize destroy+free
If an AddressSpace has been created in its own allocated
memory, cleaning it up requires first destroying the AS
and then freeing the memory. Doing this doesn't work:

    address_space_destroy(as);
    g_free_rcu(as, rcu);

because both address_space_destroy() and g_free_rcu()
try to use the same 'rcu' node in the AddressSpace struct
and the address_space_destroy hook gets overwritten.

Provide a new address_space_destroy_free() function which
will destroy the AS and then free the memory it uses, all
in one RCU callback.

(CC to stable because the next commit needs this function.)

Cc: qemu-stable@nongnu.org
Reviewed-by: Peter Maydell <peter.maydell@linaro.org>
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Reviewed-by: David Hildenbrand <david@redhat.com>
Link: https://lore.kernel.org/r/20250929144228.1994037-3-peter.maydell@linaro.org
Signed-off-by: Peter Xu <peterx@redhat.com>
Diffstat (limited to 'hw/core/cpu-common.c')
0 files changed, 0 insertions, 0 deletions