public inbox for linux-arch@vger.kernel.org
 help / color / mirror / Atom feed
From: David Howells <dhowells@redhat.com>
To: sfr@canb.auug.org.au, torvalds@linux-foundation.org
Cc: arnd@arndb.de, dhowells@redhat.com, alan@lxorguk.ukuu.org.uk,
	linux-kernel@vger.kernel.org, linux-arch@vger.kernel.org
Subject: [GIT PULL] User API split: Preliminary patches
Date: Tue, 13 Dec 2011 10:03:56 +0000	[thread overview]
Message-ID: <1323770653-19177-1-git-send-email-dhowells@redhat.com> (raw)

Hi Stephen,

Can you pull the following into linux-next, please?

Here's the first part of the first installment of patches to clean up the
kernel header files and sort out the inclusion recursion problems.  The patches
can be found here:

	http://git.infradead.org/users/dhowells/linux-headers.git

at the:

	uapi-preliminary

tag.

This batch is just the static fixes to things and can be divided into three
groups:

 (1) Fixes that should probably be applied anyway.
 
	Tag: uapi-fixes

     Fixes for ELF, a loop in Sparc's headers and a separation for MIPS's
     Kbuild.

 (2) sys/param.h cleanup.

	Tag: uapi-params

     Make MN10300, M32R and FRV use asm-generic/param.h.

 (3) Guard cleanup and simple rearrangement.

	Tag: uapi-preliminary

     Add missing header file guards and split __KERNEL__ combo guards to make
     them easier for the UAPI splitter to handle.

     Do a little rearrangement of some headers to make them more amenable to
     the UAPI split (some need the UAPI headers #including in the middle of the
     file, after some definitions have been made).

Could you also the second part into linux-next at this time?  That involves
some scripted stuff and may need regenerating.  You can see those patches from
the uapi-preliminary tag up to the uapi-prep tag in the GIT tree.

That then would set the stage for Linus to apply the UAPI disintegration
patches (uapi-prep -> uapi-post-split) after -rc1 if he's willing.  However,
those definitely *will* need regenerating.

I have tried building it with the defconfigs for the following arches: alpha,
arm, blackfin, frv, h8300, m32r, m68k, mips, mn10300, powerpc, s390, sh, sparc,
x86 (i386 and x86_64) and xtensa.

David
---
The following changes since commit dc47ce90c3a822cd7c9e9339fe4d5f61dcb26b50:

  Linux 3.2-rc5 (2011-12-09 15:09:32 -0800)

are available in the git repository at:
  git://git.infradead.org/users/dhowells/linux-headers.git ..BRANCH.NOT.VERIFIED..

David Howells (17):
      UAPI: Fix arch/mips/include/asm/Kbuild to have separate header-y lines
      UAPI: Don't include linux/compat.h in sparc's asm/siginfo.h
      UAPI: elf_read_implies_exec() is a kernel-only feature - so hide from userspace
      UAPI: Make MN10300 use asm-generic/param.h
      UAPI: Make M32R use asm-generic/param.h
      UAPI: Make FRV use asm-generic/param.h
      UAPI: Rearrange definition of HZ in asm-generic/param.h
      UAPI: Guard linux/sound.h
      UAPI: Guard linux/isdn_divertif.h
      UAPI: Guard linux/pmu.h
      UAPI: Guard linux/cuda.h
      UAPI: Alter the S390 asm include guards to be recognisable by the UAPI splitter
      UAPI: Fix nested __KERNEL__ guards in video/edid.h
      UAPI: Make linux/patchkey.h easier to parse
      UAPI: Fix AHZ multiple inclusion when __KERNEL__ is removed
      UAPI: Don't have a #elif clause in a __KERNEL__ guard in linux/soundcard.h
      UAPI: Split trivial #if defined(__KERNEL__) && X conditionals

 arch/arm/include/asm/hwcap.h       |    4 +++-
 arch/arm/include/asm/swab.h        |    7 +++++--
 arch/arm/include/asm/unistd.h      |    4 +++-
 arch/frv/include/asm/param.h       |   16 +---------------
 arch/ia64/include/asm/intrinsics.h |   21 +++++++++++++--------
 arch/m32r/include/asm/param.h      |   18 +-----------------
 arch/mips/include/asm/Kbuild       |    4 +++-
 arch/mips/include/asm/types.h      |   10 +++++++---
 arch/mn10300/include/asm/param.h   |   18 +-----------------
 arch/s390/include/asm/chpid.h      |    2 +-
 arch/s390/include/asm/itcw.h       |    2 +-
 arch/s390/include/asm/mman.h       |    4 +++-
 arch/sparc/include/asm/siginfo.h   |    2 --
 arch/tile/include/asm/signal.h     |    4 +++-
 include/asm-generic/param.h        |   13 +++++++------
 include/linux/acct.h               |    3 +++
 include/linux/cuda.h               |    5 +++++
 include/linux/elf.h                |   18 +++++++++---------
 include/linux/isdn_divertif.h      |    4 ++++
 include/linux/mroute6.h            |    4 +++-
 include/linux/patchkey.h           |    4 +++-
 include/linux/pmu.h                |    4 ++++
 include/linux/sound.h              |    4 ++++
 include/linux/soundcard.h          |    4 +++-
 include/video/edid.h               |    6 ++----
 25 files changed, 92 insertions(+), 93 deletions(-)

             reply	other threads:[~2011-12-13 10:40 UTC|newest]

Thread overview: 38+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-12-13 10:03 David Howells [this message]
2011-12-13 10:03 ` [PATCH 01/17] UAPI: Fix arch/mips/include/asm/Kbuild to have separate header-y lines David Howells
2011-12-13 10:03   ` David Howells
2011-12-13 10:03 ` [PATCH 02/17] UAPI: Don't include linux/compat.h in sparc's asm/siginfo.h David Howells
2011-12-13 10:03   ` David Howells
2011-12-13 18:32   ` David Miller
2011-12-13 10:03 ` [PATCH 03/17] UAPI: elf_read_implies_exec() is a kernel-only feature - so hide from userspace David Howells
2011-12-13 10:03   ` David Howells
2011-12-13 10:04 ` [PATCH 04/17] UAPI: Make MN10300 use asm-generic/param.h David Howells
2011-12-13 10:04   ` David Howells
2011-12-13 10:04 ` [PATCH 05/17] UAPI: Make M32R " David Howells
2011-12-13 10:04 ` [PATCH 06/17] UAPI: Make FRV " David Howells
2011-12-13 10:04   ` David Howells
2011-12-13 10:04 ` [PATCH 07/17] UAPI: Rearrange definition of HZ in asm-generic/param.h David Howells
2011-12-13 10:04   ` David Howells
2011-12-13 10:04 ` [PATCH 08/17] UAPI: Guard linux/sound.h David Howells
2011-12-13 10:04   ` David Howells
2011-12-13 10:04 ` [PATCH 09/17] UAPI: Guard linux/isdn_divertif.h David Howells
2011-12-13 10:04   ` David Howells
2011-12-13 10:04 ` [PATCH 10/17] UAPI: Guard linux/pmu.h David Howells
2011-12-13 10:04   ` David Howells
2011-12-13 10:04 ` [PATCH 11/17] UAPI: Guard linux/cuda.h David Howells
2011-12-13 10:04 ` [PATCH 12/17] UAPI: Alter the S390 asm include guards to be recognisable by the UAPI splitter David Howells
2011-12-13 10:04   ` David Howells
2011-12-13 10:04 ` [PATCH 13/17] UAPI: Fix nested __KERNEL__ guards in video/edid.h David Howells
2011-12-13 10:04   ` David Howells
2011-12-13 10:04 ` [PATCH 14/17] UAPI: Make linux/patchkey.h easier to parse David Howells
2011-12-13 12:57   ` Stephen Rothwell
2011-12-13 13:50     ` David Howells
2011-12-13 13:57       ` David Howells
2011-12-13 14:51         ` Stephen Rothwell
2011-12-13 10:04 ` [PATCH 15/17] UAPI: Fix AHZ multiple inclusion when __KERNEL__ is removed David Howells
2011-12-13 10:04 ` [PATCH 16/17] UAPI: Don't have a #elif clause in a __KERNEL__ guard in linux/soundcard.h David Howells
2011-12-13 10:04   ` David Howells
2011-12-13 10:04 ` [PATCH 17/17] UAPI: Split trivial #if defined(__KERNEL__) && X conditionals David Howells
2011-12-13 16:09 ` [GIT PULL] User API split: Preliminary patches David Howells
2011-12-13 16:26   ` Stephen Rothwell
2011-12-13 16:26     ` Stephen Rothwell

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1323770653-19177-1-git-send-email-dhowells@redhat.com \
    --to=dhowells@redhat.com \
    --cc=alan@lxorguk.ukuu.org.uk \
    --cc=arnd@arndb.de \
    --cc=linux-arch@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=sfr@canb.auug.org.au \
    --cc=torvalds@linux-foundation.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox