diff options
| author | Linus Torvalds <torvalds@linux-foundation.org> | 2012-10-06 18:55:10 -0400 |
|---|---|---|
| committer | Linus Torvalds <torvalds@linux-foundation.org> | 2012-10-06 18:55:10 -0400 |
| commit | ed5062ddaa71e9f8b2b3aacc264428ce6da93d9e (patch) | |
| tree | 9db3b16d8dd412e2d688f3b5d1c252d2e6b4084d /include/linux | |
| parent | 125b79d74a63552be757bb49a425b965782e4952 (diff) | |
| parent | f3dfd599af993385b40fc7a1c947afc12729bc4d (diff) | |
Merge branch 'uapi-prep' of git://git.infradead.org/users/dhowells/linux-headers
Pull UAPI disintegration fixes from David Howells:
"There are three main parts:
(1) I found I needed some more fixups in the wake of testing Arm64
(some asm/unistd.h files had weird guards that caused problems -
mostly in arches for which I don't have a compiler) and some
__KERNEL__ splitting needed to take place in Arm64.
(2) I found that c6x was missing some __KERNEL__ guards in its
asm/signal.h. Mark Salter pointed me at a tree with a patch to
remove that file entirely and use the asm-generic variant instead.
(3) Lastly, m68k turned out to have a header installation problem due
to it lacking a kvm_para.h file.
The conditional installation bits for linux/kvm_para.h, linux/kvm.h
and linux/a.out.h weren't very well specified - and didn't work if
an arch didn't have the asm/ version of that file, but there *was*
an asm-generic/ version.
It seems the "ifneq $((wildcard ...),)" for each of those three
headers in include/kernel/Kbuild is invoked twice during header
installation, and the second time it matches on the just installed
asm-generic/kvm_para.h file and thus incorrectly installs
linux/kvm_para.h as well.
Most arches actually have an asm/kvm_para.h, so this wasn't
detectable in those."
* 'uapi-prep' of git://git.infradead.org/users/dhowells/linux-headers:
UAPI: Fix conditional header installation handling (notably kvm_para.h on m68k)
c6x: remove c6x signal.h
UAPI: Split compound conditionals containing __KERNEL__ in Arm64
UAPI: Fix the guards on various asm/unistd.h files
c6x: make dsk6455 the default config
Diffstat (limited to 'include/linux')
| -rw-r--r-- | include/linux/Kbuild | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/include/linux/Kbuild b/include/linux/Kbuild index e149e8be9065..aab5c85879b2 100644 --- a/include/linux/Kbuild +++ b/include/linux/Kbuild | |||
| @@ -21,18 +21,15 @@ header-y += usb/ | |||
| 21 | header-y += wimax/ | 21 | header-y += wimax/ |
| 22 | 22 | ||
| 23 | ifneq ($(wildcard $(srctree)/arch/$(SRCARCH)/include/asm/a.out.h \ | 23 | ifneq ($(wildcard $(srctree)/arch/$(SRCARCH)/include/asm/a.out.h \ |
| 24 | $(srctree)/include/asm-$(SRCARCH)/a.out.h \ | 24 | $(srctree)/arch/$(SRCARCH)/include/uapi/asm/a.out.h),) |
| 25 | $(INSTALL_HDR_PATH)/include/asm-*/a.out.h),) | ||
| 26 | header-y += a.out.h | 25 | header-y += a.out.h |
| 27 | endif | 26 | endif |
| 28 | ifneq ($(wildcard $(srctree)/arch/$(SRCARCH)/include/asm/kvm.h \ | 27 | ifneq ($(wildcard $(srctree)/arch/$(SRCARCH)/include/asm/kvm.h \ |
| 29 | $(srctree)/include/asm-$(SRCARCH)/kvm.h \ | 28 | $(srctree)/arch/$(SRCARCH)/include/uapi/asm/kvm.h),) |
| 30 | $(INSTALL_HDR_PATH)/include/asm-*/kvm.h),) | ||
| 31 | header-y += kvm.h | 29 | header-y += kvm.h |
| 32 | endif | 30 | endif |
| 33 | ifneq ($(wildcard $(srctree)/arch/$(SRCARCH)/include/asm/kvm_para.h \ | 31 | ifneq ($(wildcard $(srctree)/arch/$(SRCARCH)/include/asm/kvm_para.h \ |
| 34 | $(srctree)/include/asm-$(SRCARCH)/kvm_para.h \ | 32 | $(srctree)/arch/$(SRCARCH)/include/uapi/asm/kvm_para.h),) |
| 35 | $(INSTALL_HDR_PATH)/include/asm-*/kvm_para.h),) | ||
| 36 | header-y += kvm_para.h | 33 | header-y += kvm_para.h |
| 37 | endif | 34 | endif |
| 38 | 35 | ||
