In the context of working on x86's elf_core_save_regs() I noticed there
were far more source files getting rebuilt than I would have expected.
While the main offender looks to have been fixmap.h including kexec.h,
also drop use of elfcore.h from kexec.h.
While adjusting machine_kexec.c also replace use of guest_access.h by
domain_page.h.
Signed-off-by: Jan Beulich <jbeulich@suse.com>
Acked-by: Andrew Cooper <andrew.cooper3@citrix.com>
*/
#include <xen/types.h>
+#include <xen/domain_page.h>
+#include <xen/elfstructs.h>
#include <xen/kexec.h>
-#include <xen/guest_access.h>
#include <asm/fixmap.h>
#include <asm/hpet.h>
#include <asm/page.h>
#include <xen/lib.h>
#include <xen/acpi.h>
#include <xen/ctype.h>
+#include <xen/elfcore.h>
#include <xen/errno.h>
#include <xen/guest_access.h>
#include <xen/param.h>
#include <xen/acpi.h>
#include <xen/pfn.h>
-#include <xen/kexec.h>
#include <asm/apicdef.h>
#include <asm/msi.h>
#include <acpi/apei.h>
int pr_fpvalid; /* True if math co-processor being used. */
} ELF_Prstatus;
-typedef struct {
+typedef struct crash_xen_info {
unsigned long xen_major_version;
unsigned long xen_minor_version;
unsigned long xen_extra_version;
#include <public/kexec.h>
-#include <xen/elfcore.h>
#include <xen/kimage.h>
typedef struct xen_kexec_reserve {
void machine_kexec(struct kexec_image *image);
void kexec_crash(void);
void kexec_crash_save_cpu(void);
-crash_xen_info_t *kexec_crash_save_info(void);
+struct crash_xen_info *kexec_crash_save_info(void);
void machine_crash_shutdown(void);
int machine_kexec_get(xen_kexec_range_t *range);
int machine_kexec_get_xen(xen_kexec_range_t *range);