]> git.ipfire.org Git - thirdparty/qemu.git/commit
target/s390x/mmu: Replace [cpu_physical_memory -> address_space]_rw()
authorPhilippe Mathieu-Daudé <philmd@linaro.org>
Mon, 29 Sep 2025 13:43:45 +0000 (15:43 +0200)
committerPhilippe Mathieu-Daudé <philmd@linaro.org>
Tue, 7 Oct 2025 03:03:53 +0000 (05:03 +0200)
commit2fd38d9c2944efef3b96fe9047b3c0f4d4e25eb4
treed67a165ef0d92661aff070a67a2fa7e8508e98f9
parent0d4e15e8f80e77a5bf22e3620ed990331f05256d
target/s390x/mmu: Replace [cpu_physical_memory -> address_space]_rw()

When cpu_address_space_init() isn't called during vCPU creation,
its single address space is the global &address_space_memory.

As s390x boards don't call cpu_address_space_init(), cpu->as
points to &address_space_memory.

We can then replace cpu_physical_memory_rw() by the semantically
equivalent address_space_rw() call.

Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Reviewed-by: Thomas Huth <thuth@redhat.com>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Message-Id: <20251002084203.63899-9-philmd@linaro.org>
target/s390x/mmu_helper.c