[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-devel] [PATCH v2 03/13] libx86: generate cpuid-autogen.h in the libx86 include dir
From: Roger Pau Monné <roger.pau@xxxxxxxxxx> This avoids all users needing to opencode local generation of the file. Signed-off-by: Roger Pau Monné <roger.pau@xxxxxxxxxx> Signed-off-by: Andrew Cooper <andrew.cooper3@xxxxxxxxxx> --- CC: Jan Beulich <JBeulich@xxxxxxxx> CC: Wei Liu <wei.liu2@xxxxxxxxxx> CC: Roger Pau Monné <roger.pau@xxxxxxxxxx> CC: Sergey Dyasli <sergey.dyasli@xxxxxxxxxx> CC: Ian Jackson <Ian.Jackson@xxxxxxxxxxxxx> v2: * Rewrite from scratch --- .gitignore | 2 +- tools/include/Makefile | 6 +++++- tools/libxc/Makefile | 9 --------- tools/libxc/xc_cpuid_x86.c | 1 - xen/include/Makefile | 11 +++++------ xen/include/asm-x86/cpufeatures.h | 2 +- xen/include/xen/libx86/Makefile | 8 ++++++++ xen/include/xen/libx86/cpuid.h | 2 ++ 8 files changed, 22 insertions(+), 19 deletions(-) create mode 100644 xen/include/xen/libx86/Makefile diff --git a/.gitignore b/.gitignore index 5b8448d..861f2ea 100644 --- a/.gitignore +++ b/.gitignore @@ -311,7 +311,6 @@ xen/arch/*/efi/runtime.c xen/include/headers*.chk xen/include/asm xen/include/asm-*/asm-offsets.h -xen/include/asm-x86/cpuid-autogen.h xen/include/compat/* xen/include/config/ xen/include/generated/ @@ -319,6 +318,7 @@ xen/include/public/public xen/include/xen/*.new xen/include/xen/acm_policy.h xen/include/xen/compile.h +xen/include/xen/libx86/cpuid-autogen.h xen/test/livepatch/config.h xen/test/livepatch/xen_bye_world.livepatch xen/test/livepatch/xen_hello_world.livepatch diff --git a/tools/include/Makefile b/tools/include/Makefile index a2403fc..07162a7 100644 --- a/tools/include/Makefile +++ b/tools/include/Makefile @@ -23,7 +23,11 @@ xen/.dir: ln -sf $(XEN_ROOT)/xen/include/acpi acpi ifeq ($(CONFIG_X86),y) ln -sf $(XEN_ROOT)/xen/include/asm-x86 xen/asm - ln -sf $(XEN_ROOT)/xen/include/xen/libx86 xen/libx86 + mkdir -p xen/libx86 + for f in $(filter-out %autogen.h,$(patsubst $(XEN_ROOT)/xen/include/xen/libx86/%,%,Makefile $(wildcard $(XEN_ROOT)/xen/include/xen/libx86/*.h))); do \ + ln -sf $(XEN_ROOT)/xen/include/xen/libx86/$$f xen/libx86/$$f; \ + done + $(MAKE) -C xen/libx86 all XEN_ROOT=$(XEN_ROOT) endif touch $@ diff --git a/tools/libxc/Makefile b/tools/libxc/Makefile index 157553c..ca2b203 100644 --- a/tools/libxc/Makefile +++ b/tools/libxc/Makefile @@ -147,15 +147,6 @@ $(eval $(genpath-target)) xc_private.h: _paths.h -ifeq ($(CONFIG_X86),y) - -_xc_cpuid_autogen.h: $(XEN_ROOT)/xen/include/public/arch-x86/cpufeatureset.h $(XEN_ROOT)/xen/tools/gen-cpuid.py - $(PYTHON) $(XEN_ROOT)/xen/tools/gen-cpuid.py -i $^ -o $@.new - $(call move-if-changed,$@.new,$@) - -build: _xc_cpuid_autogen.h -endif - $(CTRL_LIB_OBJS) $(GUEST_LIB_OBJS) \ $(CTRL_PIC_OBJS) $(GUEST_PIC_OBJS): xc_private.h diff --git a/tools/libxc/xc_cpuid_x86.c b/tools/libxc/xc_cpuid_x86.c index 090e199..d2f85aa 100644 --- a/tools/libxc/xc_cpuid_x86.c +++ b/tools/libxc/xc_cpuid_x86.c @@ -31,7 +31,6 @@ enum { #define XEN_CPUFEATURE(name, value) X86_FEATURE_##name = value, #include <xen/arch-x86/cpufeatureset.h> }; -#include "_xc_cpuid_autogen.h" #include <xen/libx86/cpuid.h> diff --git a/xen/include/Makefile b/xen/include/Makefile index 7c5034e..7b4e862 100644 --- a/xen/include/Makefile +++ b/xen/include/Makefile @@ -141,14 +141,13 @@ headers++.chk: $(PUBLIC_HEADERS) Makefile endif ifeq ($(XEN_TARGET_ARCH),x86_64) +.PHONY: libx86-all +libx86-all: + $(MAKE) -C xen/libx86 all -$(BASEDIR)/include/asm-x86/cpuid-autogen.h: $(BASEDIR)/include/public/arch-x86/cpufeatureset.h $(BASEDIR)/tools/gen-cpuid.py FORCE - $(PYTHON) $(BASEDIR)/tools/gen-cpuid.py -i $< -o $@.new - $(call move-if-changed,$@.new,$@) - -all: $(BASEDIR)/include/asm-x86/cpuid-autogen.h +all: libx86-all endif clean:: rm -rf compat config generated headers*.chk - rm -f $(BASEDIR)/include/asm-x86/cpuid-autogen.h + rm -f $(BASEDIR)/include/xen/libx86/cpuid-autogen.h diff --git a/xen/include/asm-x86/cpufeatures.h b/xen/include/asm-x86/cpufeatures.h index 8e5cc53..b7ceb20 100644 --- a/xen/include/asm-x86/cpufeatures.h +++ b/xen/include/asm-x86/cpufeatures.h @@ -2,7 +2,7 @@ * Explicitly intended for multiple inclusion. */ -#include <asm/cpuid-autogen.h> +#include <xen/libx86/cpuid-autogen.h> #define FSCAPINTS FEATURESET_NR_ENTRIES diff --git a/xen/include/xen/libx86/Makefile b/xen/include/xen/libx86/Makefile new file mode 100644 index 0000000..408d69c --- /dev/null +++ b/xen/include/xen/libx86/Makefile @@ -0,0 +1,8 @@ +include $(XEN_ROOT)/Config.mk + +.PHONY: all +all: cpuid-autogen.h + +cpuid-autogen.h: $(XEN_ROOT)/xen/include/public/arch-x86/cpufeatureset.h $(XEN_ROOT)/xen/tools/gen-cpuid.py + $(PYTHON) $(XEN_ROOT)/xen/tools/gen-cpuid.py -i $< -o $@.new + $(call move-if-changed,$@.new,$@) diff --git a/xen/include/xen/libx86/cpuid.h b/xen/include/xen/libx86/cpuid.h index 3ccc68e..8f101ba 100644 --- a/xen/include/xen/libx86/cpuid.h +++ b/xen/include/xen/libx86/cpuid.h @@ -2,6 +2,8 @@ #ifndef XEN_LIBX86_CPUID_H #define XEN_LIBX86_CPUID_H +#include <xen/libx86/cpuid-autogen.h> + struct cpuid_leaf { uint32_t a, b, c, d; -- 2.1.4 _______________________________________________ Xen-devel mailing list Xen-devel@xxxxxxxxxxxxxxxxxxxx https://lists.xenproject.org/mailman/listinfo/xen-devel
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |