From f7aa6c36c5a8173236a68cb1f1b09c8bef9d6d3a Mon Sep 17 00:00:00 2001 From: Andrew Cooper Date: Tue, 5 May 2020 11:27:22 +0100 Subject: [PATCH] x86/pv: Prune include lists Several of these in particular haven't been pruned since the logic was all part of arch/x86/traps.c Some adjustments to header files are required to avoid compile errors: * emulate.h needs xen/sched.h because gdt_ldt_desc_ptr() uses v->vcpu_id. * mmconfig.h needs to forward declare acpi_table_header. * shadow.h and trace.h need to have uint*_t in scope before including the Xen public headers. For shadow.h, reorder the includes. For trace.h, include types.h Signed-off-by: Andrew Cooper Acked-by: Jan Beulich --- xen/arch/x86/pv/callback.c | 5 ----- xen/arch/x86/pv/emul-gate-op.c | 19 ------------------- xen/arch/x86/pv/emul-inv-op.c | 18 ------------------ xen/arch/x86/pv/emul-priv-op.c | 9 +-------- xen/arch/x86/pv/emulate.h | 2 ++ xen/arch/x86/pv/ro-page-fault.c | 8 -------- xen/arch/x86/pv/shim.c | 3 --- xen/arch/x86/x86_64/mmconfig.h | 1 + xen/include/asm-x86/shadow.h | 3 ++- xen/include/xen/trace.h | 1 + 10 files changed, 7 insertions(+), 62 deletions(-) diff --git a/xen/arch/x86/pv/callback.c b/xen/arch/x86/pv/callback.c index 106c16ed01..97242cd3d4 100644 --- a/xen/arch/x86/pv/callback.c +++ b/xen/arch/x86/pv/callback.c @@ -19,15 +19,10 @@ #include #include #include -#include -#include #include #include -#include -#include #include -#include #include diff --git a/xen/arch/x86/pv/emul-gate-op.c b/xen/arch/x86/pv/emul-gate-op.c index 3c7f6d70bc..61e65ce521 100644 --- a/xen/arch/x86/pv/emul-gate-op.c +++ b/xen/arch/x86/pv/emul-gate-op.c @@ -20,25 +20,6 @@ */ #include -#include -#include -#include -#include -#include -#include - -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include - -#include #include "emulate.h" diff --git a/xen/arch/x86/pv/emul-inv-op.c b/xen/arch/x86/pv/emul-inv-op.c index 91d05790c2..59e3edc8c4 100644 --- a/xen/arch/x86/pv/emul-inv-op.c +++ b/xen/arch/x86/pv/emul-inv-op.c @@ -19,26 +19,8 @@ * along with this program; If not, see . */ -#include -#include -#include -#include -#include #include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include - -#include - #include "emulate.h" static int emulate_forced_invalid_op(struct cpu_user_regs *regs) diff --git a/xen/arch/x86/pv/emul-priv-op.c b/xen/arch/x86/pv/emul-priv-op.c index e24b84f46a..3b705299cf 100644 --- a/xen/arch/x86/pv/emul-priv-op.c +++ b/xen/arch/x86/pv/emul-priv-op.c @@ -19,25 +19,18 @@ * along with this program; If not, see . */ -#include +#include #include #include #include -#include -#include #include -#include #include #include #include #include -#include #include -#include #include -#include -#include #include diff --git a/xen/arch/x86/pv/emulate.h b/xen/arch/x86/pv/emulate.h index fd2aa0a484..4b845b08e3 100644 --- a/xen/arch/x86/pv/emulate.h +++ b/xen/arch/x86/pv/emulate.h @@ -1,6 +1,8 @@ #ifndef __PV_EMULATE_H__ #define __PV_EMULATE_H__ +#include + #include #include diff --git a/xen/arch/x86/pv/ro-page-fault.c b/xen/arch/x86/pv/ro-page-fault.c index a920fb5e15..0eedb70002 100644 --- a/xen/arch/x86/pv/ro-page-fault.c +++ b/xen/arch/x86/pv/ro-page-fault.c @@ -20,15 +20,7 @@ * along with this program; If not, see . */ -#include -#include -#include #include - -#include -#include -#include -#include #include #include "emulate.h" diff --git a/xen/arch/x86/pv/shim.c b/xen/arch/x86/pv/shim.c index 31264582cc..3a0525c209 100644 --- a/xen/arch/x86/pv/shim.c +++ b/xen/arch/x86/pv/shim.c @@ -25,14 +25,11 @@ #include #include #include -#include #include #include -#include #include #include -#include #include #include diff --git a/xen/arch/x86/x86_64/mmconfig.h b/xen/arch/x86/x86_64/mmconfig.h index 2e836848ad..4d3b9fcbdd 100644 --- a/xen/arch/x86/x86_64/mmconfig.h +++ b/xen/arch/x86/x86_64/mmconfig.h @@ -75,6 +75,7 @@ static inline void mmio_config_writel(void __iomem *pos, u32 val) } /* function prototypes */ +struct acpi_table_header; int acpi_parse_mcfg(struct acpi_table_header *header); int pci_mmcfg_reserved(uint64_t address, unsigned int segment, unsigned int start_bus, unsigned int end_bus, diff --git a/xen/include/asm-x86/shadow.h b/xen/include/asm-x86/shadow.h index 907c71f497..8335862c87 100644 --- a/xen/include/asm-x86/shadow.h +++ b/xen/include/asm-x86/shadow.h @@ -22,7 +22,6 @@ #ifndef _XEN_SHADOW_H #define _XEN_SHADOW_H -#include #include #include #include @@ -31,6 +30,8 @@ #include #include +#include + /***************************************************************************** * Macros to tell which shadow paging mode a domain is in*/ diff --git a/xen/include/xen/trace.h b/xen/include/xen/trace.h index af925bcfcc..3cbb542af8 100644 --- a/xen/include/xen/trace.h +++ b/xen/include/xen/trace.h @@ -28,6 +28,7 @@ extern int tb_init_done; #define tb_init_done false #endif +#include #include #include #include -- 2.30.2