Skip to content

Commit

Permalink
Merge tag 'uapi-fixes-20121017' of git://git.infradead.org/users/dhow…
Browse files Browse the repository at this point in the history
…ells/linux-headers

Pull misc UAPI fixes from David Howells:
 "They do a number of things:

  (1) Import a patch from Catalin Marinas to extend the generic-y in
      Kbuild facility to uapi directories.

  (2) Make arch/tile's ucontext.h file use (1) and remove the header-y
      line from the kernel internal side of things.

  (3) Remove some now-empty conditional bits from include/linux/Kbuild.
      The contents got moved to the UAPI side of things along with new
      conditionals.

  (4) Deal with now-empty files:

     (a) Empty Kbuild files under include/ get removed.

     (b) Empty Kbuild files under arch/ get comments to hold them as
         they are likely to end up with generic-y or genhdr-y lines.
         Deleting them appears to work if we want to go that route.

     (c) Put a comment into uapi/asm-generic/kvm_para.h to prevent the
         patch program from deleting that, and made the arches with
         empty kvm_para.h uapi files use that instead of having their
         own files.

     (d) Put comments into four other empty uapi/ headers to prevent the
         patch program from deleting them.

  A question: Is this the right way to deal with the now-empty Kbuild
  files?

  The ones under include/ are unlikely to be used - even for generated
  files, I think - so getting rid of them is probably okay.  Once all
  the bits are in, we can probably remove all the Kbuild files under
  include/ that aren't also under include/uapi/.

  The ones under arch/ are more of an issue because of the potential for
  generic-y and genhdr-y."

* tag 'uapi-fixes-20121017' of git://git.infradead.org/users/dhowells/linux-headers:
  UAPI: Make arch/sparc/include/uapi/asm/sigcontext.h non-empty
  UAPI: Make arch/sh/include/uapi/asm/hw_breakpoint.h non-empty
  UAPI: Make arch/mn10300/include/uapi/asm/setup.h non-empty
  UAPI: Put a comment into uapi/asm-generic/kvm_para.h and use it from arches
  UAPI: The tile arch uses the generic ucontext.h file
  UAPI: Place comments in empty arch Kbuilds to make them non-empty
  UAPI: Remove empty non-UAPI Kbuild files
  UAPI: Remove empty conditionals from include/linux/Kbuild
  UAPI: Make uapi/linux/irqnr.h non-empty
  uapi: Allow automatic generation of uapi/asm/ header files
  • Loading branch information
torvalds committed Oct 17, 2012
2 parents 1867353 + bb2bab1 commit 985c9e6
Show file tree
Hide file tree
Showing 38 changed files with 33 additions and 36 deletions.
4 changes: 3 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -437,7 +437,9 @@ endif
PHONY += asm-generic
asm-generic:
$(Q)$(MAKE) -f $(srctree)/scripts/Makefile.asm-generic \
obj=arch/$(SRCARCH)/include/generated/asm
src=asm obj=arch/$(SRCARCH)/include/generated/asm
$(Q)$(MAKE) -f $(srctree)/scripts/Makefile.asm-generic \
src=uapi/asm obj=arch/$(SRCARCH)/include/generated/uapi/asm

# To make sure we do not include .config for any of the *config targets
# catch them early, and hand them over to scripts/kconfig/Makefile
Expand Down
2 changes: 2 additions & 0 deletions arch/ia64/include/uapi/asm/Kbuild
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# UAPI Header export list
include include/uapi/asm-generic/Kbuild.asm

generic-y += kvm_para.h

header-y += auxvec.h
header-y += bitsperlong.h
header-y += break.h
Expand Down
Empty file.
1 change: 1 addition & 0 deletions arch/mips/include/asm/Kbuild
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# MIPS headers
4 changes: 4 additions & 0 deletions arch/mn10300/include/uapi/asm/setup.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
/*
* There isn't anything here anymore, but the file must not be empty or patch
* will delete it.
*/
2 changes: 2 additions & 0 deletions arch/s390/include/uapi/asm/Kbuild
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# UAPI Header export list
include include/uapi/asm-generic/Kbuild.asm

generic-y += kvm_para.h

header-y += auxvec.h
header-y += bitsperlong.h
header-y += byteorder.h
Expand Down
Empty file.
4 changes: 4 additions & 0 deletions arch/sh/include/uapi/asm/hw_breakpoint.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
/*
* There isn't anything here anymore, but the file must not be empty or patch
* will delete it.
*/
4 changes: 4 additions & 0 deletions arch/sparc/include/uapi/asm/sigcontext.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
/*
* There isn't anything here anymore, but the file must not be empty or patch
* will delete it.
*/
1 change: 1 addition & 0 deletions arch/tile/include/arch/Kbuild
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Tile arch headers
3 changes: 0 additions & 3 deletions arch/tile/include/asm/Kbuild
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@

header-y += ../arch/

header-y += ucontext.h

generic-y += bug.h
generic-y += bugs.h
generic-y += clkdev.h
Expand Down Expand Up @@ -37,5 +35,4 @@ generic-y += statfs.h
generic-y += termbits.h
generic-y += termios.h
generic-y += types.h
generic-y += ucontext.h
generic-y += xor.h
3 changes: 3 additions & 0 deletions arch/tile/include/uapi/asm/Kbuild
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,7 @@ header-y += siginfo.h
header-y += signal.h
header-y += stat.h
header-y += swab.h
header-y += ucontext.h
header-y += unistd.h

generic-y += ucontext.h
4 changes: 0 additions & 4 deletions include/Kbuild
Original file line number Diff line number Diff line change
@@ -1,12 +1,8 @@
# Top-level Makefile calls into asm-$(ARCH)
# List only non-arch directories below

header-y += asm-generic/
header-y += linux/
header-y += sound/
header-y += mtd/
header-y += rdma/
header-y += video/
header-y += drm/
header-y += xen/
header-y += scsi/
Empty file removed include/asm-generic/Kbuild
Empty file.
Empty file removed include/drm/Kbuild
Empty file.
26 changes: 0 additions & 26 deletions include/linux/Kbuild
Original file line number Diff line number Diff line change
@@ -1,31 +1,5 @@
header-y += byteorder/
header-y += can/
header-y += caif/
header-y += dvb/
header-y += hdlc/
header-y += hsi/
header-y += isdn/
header-y += mmc/
header-y += nfsd/
header-y += raid/
header-y += spi/
header-y += sunrpc/
header-y += tc_act/
header-y += tc_ematch/
header-y += netfilter/
header-y += netfilter_arp/
header-y += netfilter_bridge/
header-y += netfilter_ipv4/
header-y += netfilter_ipv6/
header-y += usb/
header-y += wimax/

ifneq ($(wildcard $(srctree)/arch/$(SRCARCH)/include/asm/a.out.h \
$(srctree)/arch/$(SRCARCH)/include/uapi/asm/a.out.h),)
endif
ifneq ($(wildcard $(srctree)/arch/$(SRCARCH)/include/asm/kvm.h \
$(srctree)/arch/$(SRCARCH)/include/uapi/asm/kvm.h),)
endif
ifneq ($(wildcard $(srctree)/arch/$(SRCARCH)/include/asm/kvm_para.h \
$(srctree)/arch/$(SRCARCH)/include/uapi/asm/kvm_para.h),)
endif
Empty file removed include/linux/byteorder/Kbuild
Empty file.
Empty file removed include/linux/caif/Kbuild
Empty file.
Empty file removed include/linux/can/Kbuild
Empty file.
Empty file removed include/linux/isdn/Kbuild
Empty file.
Empty file removed include/linux/mmc/Kbuild
Empty file.
1 change: 0 additions & 1 deletion include/linux/netfilter/Kbuild

This file was deleted.

Empty file.
Empty file removed include/linux/netfilter_arp/Kbuild
Empty file.
Empty file.
Empty file.
Empty file.
Empty file removed include/linux/nfsd/Kbuild
Empty file.
Empty file removed include/linux/spi/Kbuild
Empty file.
Empty file removed include/linux/sunrpc/Kbuild
Empty file.
Empty file removed include/linux/tc_act/Kbuild
Empty file.
Empty file removed include/linux/tc_ematch/Kbuild
Empty file.
Empty file removed include/linux/wimax/Kbuild
Empty file.
Empty file removed include/mtd/Kbuild
Empty file.
4 changes: 4 additions & 0 deletions include/uapi/asm-generic/kvm_para.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
/*
* There isn't anything here, but the file must not be empty or patch
* will delete it.
*/
4 changes: 4 additions & 0 deletions include/uapi/linux/irqnr.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
/*
* There isn't anything here anymore, but the file must not be empty or patch
* will delete it.
*/
Empty file removed include/xen/Kbuild
Empty file.
2 changes: 1 addition & 1 deletion scripts/Makefile.asm-generic
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
# and for each file listed in this file with generic-y creates
# a small wrapper file in $(obj) (arch/$(SRCARCH)/include/generated/asm)

kbuild-file := $(srctree)/arch/$(SRCARCH)/include/asm/Kbuild
kbuild-file := $(srctree)/arch/$(SRCARCH)/include/$(src)/Kbuild
-include $(kbuild-file)

include scripts/Kbuild.include
Expand Down

0 comments on commit 985c9e6

Please sign in to comment.