summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPhilippe Mathieu-Daudé2020-09-08 17:55:27 +0200
committerPaolo Bonzini2020-09-30 19:11:36 +0200
commitce6936bc2dcb3aeb868e98cfb5a984fc35a0fabe (patch)
treea6ccd658ea9145d6e0e7be5120a9450b9c58ca54
parenthw/i386/xen: Rename X86/PC specific function as xen_hvm_init_pc() (diff)
downloadqemu-ce6936bc2dcb3aeb868e98cfb5a984fc35a0fabe.tar.gz
qemu-ce6936bc2dcb3aeb868e98cfb5a984fc35a0fabe.tar.xz
qemu-ce6936bc2dcb3aeb868e98cfb5a984fc35a0fabe.zip
sysemu/xen: Add missing 'exec/cpu-common.h' header for ram_addr_t type
As this header use the ram_addr_t type, it has to include "exec/cpu-common.h" to avoid odd errors such: include/sysemu/xen.h:35:44: error: unknown type name 'ram_addr_t'; did you mean 'in_addr_t'? 35 | static inline void xen_hvm_modified_memory(ram_addr_t start, ram_addr_t length) | ^~~~~~~~~~ | in_addr_t Signed-off-by: Philippe Mathieu-Daudé <philmd@redhat.com> Message-Id: <20200908155530.249806-4-philmd@redhat.com> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
-rw-r--r--include/sysemu/xen.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/sysemu/xen.h b/include/sysemu/xen.h
index 2c2c429ea8..0ca25697e4 100644
--- a/include/sysemu/xen.h
+++ b/include/sysemu/xen.h
@@ -8,6 +8,8 @@
#ifndef SYSEMU_XEN_H
#define SYSEMU_XEN_H
+#include "exec/cpu-common.h"
+
#ifdef NEED_CPU_H
# ifdef CONFIG_XEN
# define CONFIG_XEN_IS_POSSIBLE