]> Git Repo - qemu.git/commit
memory: Make memory_region_readd_subregion() properly handle mapped aliases
authorDavid Hildenbrand <[email protected]>
Tue, 1 Feb 2022 10:09:40 +0000 (11:09 +0100)
committerPhilippe Mathieu-Daudé <[email protected]>
Mon, 28 Mar 2022 22:44:40 +0000 (00:44 +0200)
commita8749d7cc9210ae76bb7032970ad8a208c67a1f2
treedc87543c67bc6a9cd1f6230f545e98fd1b9c89b7
parent27fc9f365d6f60ff86c2e2be57289bb47a2be882
memory: Make memory_region_readd_subregion() properly handle mapped aliases

memory_region_readd_subregion() wants to readd a region by first
removing it and then readding it. For readding, it doesn't use one of
the memory_region_add_*() variants, which is why fail to re-increment the
mr->mapped_via_alias counters, resulting in the
assert(alias->mapped_via_alias >= 0) in memory_region_del_subregion()
triggering the next time we call memory_region_readd_subregion().

Fix it by using memory_region_add_subregion_common() for readding the
region.

Reported-by: Niek Linnenbank <[email protected]>
Fixes: 5ead62185d23 ("memory: Make memory_region_is_mapped() succeed when mapped via an alias")
Tested-by: Niek Linnenbank <[email protected]>
Cc: Paolo Bonzini <[email protected]>
Cc: Peter Xu <[email protected]>
Cc: "Philippe Mathieu-Daudé" <[email protected]>
Signed-off-by: David Hildenbrand <[email protected]>
Message-Id: <20220201100940[email protected]>
Signed-off-by: Philippe Mathieu-Daudé <[email protected]>
softmmu/memory.c
This page took 0.024531 seconds and 4 git commands to generate.