diff options
author | Al Viro <viro@ftp.linux.org.uk> | 2011-08-18 15:01:49 -0400 |
---|---|---|
committer | Richard Weinberger <richard@nod.at> | 2011-11-02 09:14:45 -0400 |
commit | 9e636452d0714b08e4f8f4c58b76c4b7d15ffffa (patch) | |
tree | c2e9a31b6f219b5d20662725288b948484c10f1f | |
parent | 945581d5bd796a046a42e3ee915bd9ec0c6853ca (diff) |
um: get rid of kern_constants.h
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Signed-off-by: Richard Weinberger <richard@nod.at>
-rw-r--r-- | arch/um/Makefile | 11 | ||||
-rw-r--r-- | arch/um/include/shared/as-layout.h | 2 | ||||
-rw-r--r-- | arch/um/include/shared/task.h | 2 | ||||
-rw-r--r-- | arch/um/include/shared/um_malloc.h | 2 | ||||
-rw-r--r-- | arch/um/include/shared/user.h | 2 |
5 files changed, 5 insertions, 14 deletions
diff --git a/arch/um/Makefile b/arch/um/Makefile index 3aded4e04f87..649aebcc6a4c 100644 --- a/arch/um/Makefile +++ b/arch/um/Makefile | |||
@@ -25,9 +25,6 @@ include $(srctree)/$(ARCH_DIR)/Makefile-skas | |||
25 | SHARED_HEADERS := $(ARCH_DIR)/include/shared | 25 | SHARED_HEADERS := $(ARCH_DIR)/include/shared |
26 | ARCH_INCLUDE := -I$(srctree)/$(SHARED_HEADERS) | 26 | ARCH_INCLUDE := -I$(srctree)/$(SHARED_HEADERS) |
27 | ARCH_INCLUDE += -I$(srctree)/$(ARCH_DIR)/sys-$(SUBARCH)/shared | 27 | ARCH_INCLUDE += -I$(srctree)/$(ARCH_DIR)/sys-$(SUBARCH)/shared |
28 | ifneq ($(KBUILD_SRC),) | ||
29 | ARCH_INCLUDE += -I$(SHARED_HEADERS) | ||
30 | endif | ||
31 | KBUILD_CPPFLAGS += -I$(srctree)/$(ARCH_DIR)/sys-$(SUBARCH) | 28 | KBUILD_CPPFLAGS += -I$(srctree)/$(ARCH_DIR)/sys-$(SUBARCH) |
32 | 29 | ||
33 | # -Dvmap=kernel_vmap prevents anything from referencing the libpcap.o symbol so | 30 | # -Dvmap=kernel_vmap prevents anything from referencing the libpcap.o symbol so |
@@ -87,7 +84,6 @@ endef | |||
87 | KBUILD_KCONFIG := arch/um/Kconfig.$(HEADER_ARCH) | 84 | KBUILD_KCONFIG := arch/um/Kconfig.$(HEADER_ARCH) |
88 | 85 | ||
89 | archprepare: include/generated/user_constants.h | 86 | archprepare: include/generated/user_constants.h |
90 | archprepare: $(SHARED_HEADERS)/kern_constants.h | ||
91 | 87 | ||
92 | LINK-$(CONFIG_LD_SCRIPT_STATIC) += -static | 88 | LINK-$(CONFIG_LD_SCRIPT_STATIC) += -static |
93 | LINK-$(CONFIG_LD_SCRIPT_DYN) += -Wl,-rpath,/lib | 89 | LINK-$(CONFIG_LD_SCRIPT_DYN) += -Wl,-rpath,/lib |
@@ -118,8 +114,7 @@ endef | |||
118 | 114 | ||
119 | # When cleaning we don't include .config, so we don't include | 115 | # When cleaning we don't include .config, so we don't include |
120 | # TT or skas makefiles and don't clean skas_ptregs.h. | 116 | # TT or skas makefiles and don't clean skas_ptregs.h. |
121 | CLEAN_FILES += linux x.i gmon.out \ | 117 | CLEAN_FILES += linux x.i gmon.out |
122 | $(SHARED_HEADERS)/kern_constants.h | ||
123 | 118 | ||
124 | archclean: | 119 | archclean: |
125 | @find . \( -name '*.bb' -o -name '*.bbg' -o -name '*.da' \ | 120 | @find . \( -name '*.bb' -o -name '*.bbg' -o -name '*.da' \ |
@@ -146,8 +141,4 @@ endef | |||
146 | include/generated/user_constants.h: $(ARCH_DIR)/sys-$(SUBARCH)/user-offsets.s | 141 | include/generated/user_constants.h: $(ARCH_DIR)/sys-$(SUBARCH)/user-offsets.s |
147 | $(call filechk,gen-asm-offsets) | 142 | $(call filechk,gen-asm-offsets) |
148 | 143 | ||
149 | $(SHARED_HEADERS)/kern_constants.h: | ||
150 | $(Q)mkdir -p $(dir $@) | ||
151 | $(Q)echo '#include <generated/asm-offsets.h>' >$@ | ||
152 | |||
153 | export SUBARCH USER_CFLAGS CFLAGS_NO_HARDENING OS HEADER_ARCH DEV_NULL_PATH | 144 | export SUBARCH USER_CFLAGS CFLAGS_NO_HARDENING OS HEADER_ARCH DEV_NULL_PATH |
diff --git a/arch/um/include/shared/as-layout.h b/arch/um/include/shared/as-layout.h index a92b678503cf..896e16602176 100644 --- a/arch/um/include/shared/as-layout.h +++ b/arch/um/include/shared/as-layout.h | |||
@@ -6,7 +6,7 @@ | |||
6 | #ifndef __START_H__ | 6 | #ifndef __START_H__ |
7 | #define __START_H__ | 7 | #define __START_H__ |
8 | 8 | ||
9 | #include "kern_constants.h" | 9 | #include <generated/asm-offsets.h> |
10 | 10 | ||
11 | /* | 11 | /* |
12 | * Stolen from linux/const.h, which can't be directly included since | 12 | * Stolen from linux/const.h, which can't be directly included since |
diff --git a/arch/um/include/shared/task.h b/arch/um/include/shared/task.h index 3fe726b3cf48..3db6b58b505e 100644 --- a/arch/um/include/shared/task.h +++ b/arch/um/include/shared/task.h | |||
@@ -1,7 +1,7 @@ | |||
1 | #ifndef __TASK_H | 1 | #ifndef __TASK_H |
2 | #define __TASK_H | 2 | #define __TASK_H |
3 | 3 | ||
4 | #include <kern_constants.h> | 4 | #include <generated/asm-offsets.h> |
5 | 5 | ||
6 | #define TASK_REGS(task) ((struct uml_pt_regs *) &(((char *) (task))[HOST_TASK_REGS])) | 6 | #define TASK_REGS(task) ((struct uml_pt_regs *) &(((char *) (task))[HOST_TASK_REGS])) |
7 | #define TASK_PID(task) *((int *) &(((char *) (task))[HOST_TASK_PID])) | 7 | #define TASK_PID(task) *((int *) &(((char *) (task))[HOST_TASK_PID])) |
diff --git a/arch/um/include/shared/um_malloc.h b/arch/um/include/shared/um_malloc.h index c554d706d106..6395fef6b69b 100644 --- a/arch/um/include/shared/um_malloc.h +++ b/arch/um/include/shared/um_malloc.h | |||
@@ -6,7 +6,7 @@ | |||
6 | #ifndef __UM_MALLOC_H__ | 6 | #ifndef __UM_MALLOC_H__ |
7 | #define __UM_MALLOC_H__ | 7 | #define __UM_MALLOC_H__ |
8 | 8 | ||
9 | #include "kern_constants.h" | 9 | #include <generated/asm-offsets.h> |
10 | 10 | ||
11 | extern void *uml_kmalloc(int size, int flags); | 11 | extern void *uml_kmalloc(int size, int flags); |
12 | extern void kfree(const void *ptr); | 12 | extern void kfree(const void *ptr); |
diff --git a/arch/um/include/shared/user.h b/arch/um/include/shared/user.h index 293f7c794faa..2d46f6329aea 100644 --- a/arch/um/include/shared/user.h +++ b/arch/um/include/shared/user.h | |||
@@ -6,7 +6,7 @@ | |||
6 | #ifndef __USER_H__ | 6 | #ifndef __USER_H__ |
7 | #define __USER_H__ | 7 | #define __USER_H__ |
8 | 8 | ||
9 | #include "kern_constants.h" | 9 | #include <generated/asm-offsets.h> |
10 | 10 | ||
11 | /* | 11 | /* |
12 | * The usual definition - copied here because the kernel provides its own, | 12 | * The usual definition - copied here because the kernel provides its own, |