All of lore.kernel.org
 help / color / mirror / Atom feed
From: James Hogan <james.hogan@imgtec.com>
To: linux-arch@vger.kernel.org
Cc: linux-kernel@vger.kernel.org,
	James Hogan <james.hogan@imgtec.com>,
	Ralf Baechle <ralf@linux-mips.org>,
	Russell King <linux@armlinux.org.uk>,
	Nathan Lynch <nathan_lynch@mentor.com>,
	Catalin Marinas <catalin.marinas@arm.com>,
	Will Deacon <will.deacon@arm.com>,
	Martin Schwidefsky <schwidefsky@de.ibm.com>,
	Heiko Carstens <heiko.carstens@de.ibm.com>,
	Chris Metcalf <cmetcalf@mellanox.com>,
	Jeff Dike <jdike@addtoit.com>,
	Richard Weinberger <richard@nod.at>,
	linux-mips@linux-mips.org, linux-arm-kernel@lists.infradead.org,
	linux-s390@vger.kernel.org,
	user-mode-linux-devel@lists.sourceforge.net
Subject: [PATCH 0/5] Define AT_VECTOR_SIZE_ARCH correctly
Date: Mon, 25 Jul 2016 16:59:49 +0100	[thread overview]
Message-ID: <1469462394-8970-1-git-send-email-james.hogan@imgtec.com> (raw)

Several architectures define ARCH_DLINFO to [sometimes] contain
NEW_AUX_ENT entries, but don't define AT_VECTOR_SIZE_ARCH with the
corresponding maximum number of NEW_AUX_ENT entries.

In practice this doesn't cause any problems as AT_VECTOR_SIZE_BASE
includes space for AT_BASE_PLATFORM which none of these arches use, but
nevertheless lets define it now and add the comment above ARCH_DLINFO as
found in several other architectures to remind future modifiers of
ARCH_DLINFO to keep AT_VECTOR_SIZE_ARCH up to date.

Arch maintainers, please take via your own trees if you're happy to do
so.

- I haven't included an update for x86/um as it doesn't follow the same
  pattern as other architectures so it is unclear to me whether it has
  the same issue.

- Build tested on MIPS, ARM & tile.

- Tested on MIPS.

James Hogan (5):
  MIPS: Define AT_VECTOR_SIZE_ARCH for ARCH_DLINFO
  ARM: Define AT_VECTOR_SIZE_ARCH for ARCH_DLINFO
  arm64: Define AT_VECTOR_SIZE_ARCH for ARCH_DLINFO
  s390: Define AT_VECTOR_SIZE_ARCH for ARCH_DLINFO
  tile: Define AT_VECTOR_SIZE_ARCH for ARCH_DLINFO

 arch/arm/include/asm/elf.h           | 1 +
 arch/arm/include/uapi/asm/auxvec.h   | 2 ++
 arch/arm64/include/asm/elf.h         | 1 +
 arch/arm64/include/uapi/asm/auxvec.h | 2 ++
 arch/mips/include/asm/elf.h          | 1 +
 arch/mips/include/uapi/asm/auxvec.h  | 2 ++
 arch/s390/include/asm/elf.h          | 1 +
 arch/s390/include/uapi/asm/auxvec.h  | 2 ++
 arch/tile/include/asm/elf.h          | 1 +
 arch/tile/include/uapi/asm/auxvec.h  | 2 ++
 10 files changed, 15 insertions(+)

Cc: Ralf Baechle <ralf@linux-mips.org>
Cc: Russell King <linux@armlinux.org.uk>
Cc: Nathan Lynch <nathan_lynch@mentor.com>
Cc: Catalin Marinas <catalin.marinas@arm.com>
Cc: Will Deacon <will.deacon@arm.com>
Cc: Martin Schwidefsky <schwidefsky@de.ibm.com>
Cc: Heiko Carstens <heiko.carstens@de.ibm.com>
Cc: Chris Metcalf <cmetcalf@mellanox.com>
Cc: Jeff Dike <jdike@addtoit.com>
Cc: Richard Weinberger <richard@nod.at>
Cc: linux-mips@linux-mips.org
Cc: linux-arm-kernel@lists.infradead.org
Cc: linux-arm-kernel@lists.infradead.org
Cc: linux-s390@vger.kernel.org
Cc: user-mode-linux-devel@lists.sourceforge.net
-- 
2.4.10

WARNING: multiple messages have this Message-ID (diff)
From: James Hogan <james.hogan@imgtec.com>
To: <linux-arch@vger.kernel.org>
Cc: <linux-kernel@vger.kernel.org>,
	James Hogan <james.hogan@imgtec.com>,
	Ralf Baechle <ralf@linux-mips.org>,
	Russell King <linux@armlinux.org.uk>,
	Nathan Lynch <nathan_lynch@mentor.com>,
	Catalin Marinas <catalin.marinas@arm.com>,
	Will Deacon <will.deacon@arm.com>,
	Martin Schwidefsky <schwidefsky@de.ibm.com>,
	Heiko Carstens <heiko.carstens@de.ibm.com>,
	Chris Metcalf <cmetcalf@mellanox.com>,
	Jeff Dike <jdike@addtoit.com>,
	Richard Weinberger <richard@nod.at>, <linux-mips@linux-mips.org>,
	<linux-arm-kernel@lists.infradead.org>,
	<linux-s390@vger.kernel.org>,
	<user-mode-linux-devel@lists.sourceforge.net>
Subject: [PATCH 0/5] Define AT_VECTOR_SIZE_ARCH correctly
Date: Mon, 25 Jul 2016 16:59:49 +0100	[thread overview]
Message-ID: <1469462394-8970-1-git-send-email-james.hogan@imgtec.com> (raw)

Several architectures define ARCH_DLINFO to [sometimes] contain
NEW_AUX_ENT entries, but don't define AT_VECTOR_SIZE_ARCH with the
corresponding maximum number of NEW_AUX_ENT entries.

In practice this doesn't cause any problems as AT_VECTOR_SIZE_BASE
includes space for AT_BASE_PLATFORM which none of these arches use, but
nevertheless lets define it now and add the comment above ARCH_DLINFO as
found in several other architectures to remind future modifiers of
ARCH_DLINFO to keep AT_VECTOR_SIZE_ARCH up to date.

Arch maintainers, please take via your own trees if you're happy to do
so.

- I haven't included an update for x86/um as it doesn't follow the same
  pattern as other architectures so it is unclear to me whether it has
  the same issue.

- Build tested on MIPS, ARM & tile.

- Tested on MIPS.

James Hogan (5):
  MIPS: Define AT_VECTOR_SIZE_ARCH for ARCH_DLINFO
  ARM: Define AT_VECTOR_SIZE_ARCH for ARCH_DLINFO
  arm64: Define AT_VECTOR_SIZE_ARCH for ARCH_DLINFO
  s390: Define AT_VECTOR_SIZE_ARCH for ARCH_DLINFO
  tile: Define AT_VECTOR_SIZE_ARCH for ARCH_DLINFO

 arch/arm/include/asm/elf.h           | 1 +
 arch/arm/include/uapi/asm/auxvec.h   | 2 ++
 arch/arm64/include/asm/elf.h         | 1 +
 arch/arm64/include/uapi/asm/auxvec.h | 2 ++
 arch/mips/include/asm/elf.h          | 1 +
 arch/mips/include/uapi/asm/auxvec.h  | 2 ++
 arch/s390/include/asm/elf.h          | 1 +
 arch/s390/include/uapi/asm/auxvec.h  | 2 ++
 arch/tile/include/asm/elf.h          | 1 +
 arch/tile/include/uapi/asm/auxvec.h  | 2 ++
 10 files changed, 15 insertions(+)

Cc: Ralf Baechle <ralf@linux-mips.org>
Cc: Russell King <linux@armlinux.org.uk>
Cc: Nathan Lynch <nathan_lynch@mentor.com>
Cc: Catalin Marinas <catalin.marinas@arm.com>
Cc: Will Deacon <will.deacon@arm.com>
Cc: Martin Schwidefsky <schwidefsky@de.ibm.com>
Cc: Heiko Carstens <heiko.carstens@de.ibm.com>
Cc: Chris Metcalf <cmetcalf@mellanox.com>
Cc: Jeff Dike <jdike@addtoit.com>
Cc: Richard Weinberger <richard@nod.at>
Cc: linux-mips@linux-mips.org
Cc: linux-arm-kernel@lists.infradead.org
Cc: linux-arm-kernel@lists.infradead.org
Cc: linux-s390@vger.kernel.org
Cc: user-mode-linux-devel@lists.sourceforge.net
-- 
2.4.10

WARNING: multiple messages have this Message-ID (diff)
From: james.hogan@imgtec.com (James Hogan)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH 0/5] Define AT_VECTOR_SIZE_ARCH correctly
Date: Mon, 25 Jul 2016 16:59:49 +0100	[thread overview]
Message-ID: <1469462394-8970-1-git-send-email-james.hogan@imgtec.com> (raw)

Several architectures define ARCH_DLINFO to [sometimes] contain
NEW_AUX_ENT entries, but don't define AT_VECTOR_SIZE_ARCH with the
corresponding maximum number of NEW_AUX_ENT entries.

In practice this doesn't cause any problems as AT_VECTOR_SIZE_BASE
includes space for AT_BASE_PLATFORM which none of these arches use, but
nevertheless lets define it now and add the comment above ARCH_DLINFO as
found in several other architectures to remind future modifiers of
ARCH_DLINFO to keep AT_VECTOR_SIZE_ARCH up to date.

Arch maintainers, please take via your own trees if you're happy to do
so.

- I haven't included an update for x86/um as it doesn't follow the same
  pattern as other architectures so it is unclear to me whether it has
  the same issue.

- Build tested on MIPS, ARM & tile.

- Tested on MIPS.

James Hogan (5):
  MIPS: Define AT_VECTOR_SIZE_ARCH for ARCH_DLINFO
  ARM: Define AT_VECTOR_SIZE_ARCH for ARCH_DLINFO
  arm64: Define AT_VECTOR_SIZE_ARCH for ARCH_DLINFO
  s390: Define AT_VECTOR_SIZE_ARCH for ARCH_DLINFO
  tile: Define AT_VECTOR_SIZE_ARCH for ARCH_DLINFO

 arch/arm/include/asm/elf.h           | 1 +
 arch/arm/include/uapi/asm/auxvec.h   | 2 ++
 arch/arm64/include/asm/elf.h         | 1 +
 arch/arm64/include/uapi/asm/auxvec.h | 2 ++
 arch/mips/include/asm/elf.h          | 1 +
 arch/mips/include/uapi/asm/auxvec.h  | 2 ++
 arch/s390/include/asm/elf.h          | 1 +
 arch/s390/include/uapi/asm/auxvec.h  | 2 ++
 arch/tile/include/asm/elf.h          | 1 +
 arch/tile/include/uapi/asm/auxvec.h  | 2 ++
 10 files changed, 15 insertions(+)

Cc: Ralf Baechle <ralf@linux-mips.org>
Cc: Russell King <linux@armlinux.org.uk>
Cc: Nathan Lynch <nathan_lynch@mentor.com>
Cc: Catalin Marinas <catalin.marinas@arm.com>
Cc: Will Deacon <will.deacon@arm.com>
Cc: Martin Schwidefsky <schwidefsky@de.ibm.com>
Cc: Heiko Carstens <heiko.carstens@de.ibm.com>
Cc: Chris Metcalf <cmetcalf@mellanox.com>
Cc: Jeff Dike <jdike@addtoit.com>
Cc: Richard Weinberger <richard@nod.at>
Cc: linux-mips at linux-mips.org
Cc: linux-arm-kernel at lists.infradead.org
Cc: linux-arm-kernel at lists.infradead.org
Cc: linux-s390 at vger.kernel.org
Cc: user-mode-linux-devel at lists.sourceforge.net
-- 
2.4.10

             reply	other threads:[~2016-07-25 16:00 UTC|newest]

Thread overview: 22+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-07-25 15:59 James Hogan [this message]
2016-07-25 15:59 ` [PATCH 0/5] Define AT_VECTOR_SIZE_ARCH correctly James Hogan
2016-07-25 15:59 ` James Hogan
2016-07-25 15:59 ` [PATCH 1/5] MIPS: Define AT_VECTOR_SIZE_ARCH for ARCH_DLINFO James Hogan
2016-07-25 15:59   ` James Hogan
2016-07-25 15:59 ` [PATCH 2/5] ARM: " James Hogan
2016-07-25 15:59   ` James Hogan
2016-07-25 15:59   ` James Hogan
2016-07-25 15:59   ` James Hogan
2016-07-25 15:59 ` [PATCH 3/5] arm64: " James Hogan
2016-07-25 15:59   ` James Hogan
2016-07-25 15:59   ` James Hogan
2016-07-25 15:59 ` [PATCH 4/5] s390: " James Hogan
2016-07-25 15:59   ` James Hogan
2016-07-31 12:23   ` Martin Schwidefsky
2016-07-31 12:23     ` Martin Schwidefsky
2016-07-25 15:59 ` [PATCH 5/5] tile: " James Hogan
2016-07-25 15:59   ` James Hogan
2016-07-25 16:37   ` Chris Metcalf
2016-07-25 16:37     ` Chris Metcalf
2016-07-25 19:10     ` James Hogan
2016-07-25 19:10       ` James Hogan

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=1469462394-8970-1-git-send-email-james.hogan@imgtec.com \
    --to=james.hogan@imgtec.com \
    --cc=catalin.marinas@arm.com \
    --cc=cmetcalf@mellanox.com \
    --cc=heiko.carstens@de.ibm.com \
    --cc=jdike@addtoit.com \
    --cc=linux-arch@vger.kernel.org \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-mips@linux-mips.org \
    --cc=linux-s390@vger.kernel.org \
    --cc=linux@armlinux.org.uk \
    --cc=nathan_lynch@mentor.com \
    --cc=ralf@linux-mips.org \
    --cc=richard@nod.at \
    --cc=schwidefsky@de.ibm.com \
    --cc=user-mode-linux-devel@lists.sourceforge.net \
    --cc=will.deacon@arm.com \
    /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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.