From: Philippe Mathieu-Daudé Date: Tue, 14 Nov 2023 14:54:45 +0000 (+0100) Subject: hw/xen/hvm: Inline TARGET_PAGE_ALIGN() macro X-Git-Tag: v9.0.0-rc0~25^2~31 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=62d6cf9d63a35f7e0b6173c51b11a358f52a3419;p=thirdparty%2Fqemu.git hw/xen/hvm: Inline TARGET_PAGE_ALIGN() macro Use TARGET_PAGE_SIZE to calculate TARGET_PAGE_ALIGN. Signed-off-by: Philippe Mathieu-Daudé Reviewed-by: Manos Pitsidianakis Message-Id: <20231114163123.74888-2-philmd@linaro.org> --- diff --git a/hw/i386/xen/xen-hvm.c b/hw/i386/xen/xen-hvm.c index 1ae943370ba..8235782ef78 100644 --- a/hw/i386/xen/xen-hvm.c +++ b/hw/i386/xen/xen-hvm.c @@ -678,7 +678,7 @@ void arch_xen_set_memory(XenIOState *state, MemoryRegionSection *section, trace_xen_client_set_memory(start_addr, size, log_dirty); start_addr &= TARGET_PAGE_MASK; - size = TARGET_PAGE_ALIGN(size); + size = ROUND_UP(size, TARGET_PAGE_SIZE); if (add) { if (!memory_region_is_rom(section->mr)) {