All of lore.kernel.org
 help / color / mirror / Atom feed
From: will.deacon@arm.com (Will Deacon)
To: linux-arm-kernel@lists.infradead.org
Subject: [GIT PULL] arm64: post merge-window fixes for 3.17
Date: Fri, 22 Aug 2014 15:17:12 +0100	[thread overview]
Message-ID: <20140822141712.GA12681@arm.com> (raw)

Hi Linus,

Please can you pull the following small set of arm64 fixes to address some
issues introduced during the merge window? There's one change outside of
arch/arm64, which wires up memfd_create for asm-generic unistd.h. Arnd
suggested that we take that via the arm64 tree [1].

Thanks,

Will

[1] https://lkml.org/lkml/2014/8/11/473

--->8

The following changes since commit 7d1311b93e58ed55f3a31cc8f94c4b8fe988a2b9:

  Linux 3.17-rc1 (2014-08-16 10:40:26 -0600)

are available in the git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/arm64/linux.git tags/arm64-fixes

for you to fetch changes up to 44b375070fa3defa6bf1010bd0e4e64f7986bfc4:

  Revert "arm64: Do not invoke audit_syscall_* functions if !CONFIG_AUDIT_SYSCALL" (2014-08-19 22:05:45 +0100)

----------------------------------------------------------------
arm64 fixes for merge window fallout

This small set of fixes addresses a few issues introduced during the
merge window, including:

  - Fix typo in I-cache detection that was causing us to treat all
    I-caches as aliasing
  - Hook up memfd_create and getrandom syscalls for native and compat
  - Revert a temporary hack for defconfig builds in -next (the audit
    tree changes didn't make it in this merge window)
  - A couple of UEFI fixes for TEXT_OFFSET fuzzing and /memreserve/
  - A simple sparsemem fix for 48-bit physical addressing
  - Small defconfig updates to get autotesters working with X-gene

----------------------------------------------------------------
Ard Biesheuvel (2):
      arm64: fix typo in I-cache policy detection
      arm64: align randomized TEXT_OFFSET on 4 kB boundary

Ganapatrao Kulkarni (1):
      arm64: mm: update max pa bits to 48

Leif Lindholm (1):
      arm64: ignore DT memreserve entries when booting in UEFI mode

Mark Brown (1):
      arm64: configs: Enable X-Gene SATA and ethernet in defconfig

Will Deacon (3):
      arm64: compat: wire up memfd_create and getrandom syscalls for aarch32
      asm-generic: add memfd_create system call to unistd.h
      Revert "arm64: Do not invoke audit_syscall_* functions if !CONFIG_AUDIT_SYSCALL"

 arch/arm64/Makefile                | 2 +-
 arch/arm64/configs/defconfig       | 3 +++
 arch/arm64/include/asm/sparsemem.h | 2 +-
 arch/arm64/include/asm/unistd.h    | 2 +-
 arch/arm64/include/asm/unistd32.h  | 5 +++++
 arch/arm64/kernel/cpuinfo.c        | 2 +-
 arch/arm64/kernel/efi.c            | 2 ++
 arch/arm64/kernel/head.S           | 8 ++++----
 arch/arm64/kernel/ptrace.c         | 4 ----
 arch/arm64/mm/init.c               | 4 +++-
 include/uapi/asm-generic/unistd.h  | 4 +++-
 11 files changed, 24 insertions(+), 14 deletions(-)

WARNING: multiple messages have this Message-ID (diff)
From: Will Deacon <will.deacon@arm.com>
To: torvalds@linux-foundation.org
Cc: linux-kernel@vger.kernel.org,
	linux-arm-kernel@lists.infradead.org, catalin.marinas@arm.com,
	broonie@linaro.org, arnd@arndb.de
Subject: [GIT PULL] arm64: post merge-window fixes for 3.17
Date: Fri, 22 Aug 2014 15:17:12 +0100	[thread overview]
Message-ID: <20140822141712.GA12681@arm.com> (raw)

Hi Linus,

Please can you pull the following small set of arm64 fixes to address some
issues introduced during the merge window? There's one change outside of
arch/arm64, which wires up memfd_create for asm-generic unistd.h. Arnd
suggested that we take that via the arm64 tree [1].

Thanks,

Will

[1] https://lkml.org/lkml/2014/8/11/473

--->8

The following changes since commit 7d1311b93e58ed55f3a31cc8f94c4b8fe988a2b9:

  Linux 3.17-rc1 (2014-08-16 10:40:26 -0600)

are available in the git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/arm64/linux.git tags/arm64-fixes

for you to fetch changes up to 44b375070fa3defa6bf1010bd0e4e64f7986bfc4:

  Revert "arm64: Do not invoke audit_syscall_* functions if !CONFIG_AUDIT_SYSCALL" (2014-08-19 22:05:45 +0100)

----------------------------------------------------------------
arm64 fixes for merge window fallout

This small set of fixes addresses a few issues introduced during the
merge window, including:

  - Fix typo in I-cache detection that was causing us to treat all
    I-caches as aliasing
  - Hook up memfd_create and getrandom syscalls for native and compat
  - Revert a temporary hack for defconfig builds in -next (the audit
    tree changes didn't make it in this merge window)
  - A couple of UEFI fixes for TEXT_OFFSET fuzzing and /memreserve/
  - A simple sparsemem fix for 48-bit physical addressing
  - Small defconfig updates to get autotesters working with X-gene

----------------------------------------------------------------
Ard Biesheuvel (2):
      arm64: fix typo in I-cache policy detection
      arm64: align randomized TEXT_OFFSET on 4 kB boundary

Ganapatrao Kulkarni (1):
      arm64: mm: update max pa bits to 48

Leif Lindholm (1):
      arm64: ignore DT memreserve entries when booting in UEFI mode

Mark Brown (1):
      arm64: configs: Enable X-Gene SATA and ethernet in defconfig

Will Deacon (3):
      arm64: compat: wire up memfd_create and getrandom syscalls for aarch32
      asm-generic: add memfd_create system call to unistd.h
      Revert "arm64: Do not invoke audit_syscall_* functions if !CONFIG_AUDIT_SYSCALL"

 arch/arm64/Makefile                | 2 +-
 arch/arm64/configs/defconfig       | 3 +++
 arch/arm64/include/asm/sparsemem.h | 2 +-
 arch/arm64/include/asm/unistd.h    | 2 +-
 arch/arm64/include/asm/unistd32.h  | 5 +++++
 arch/arm64/kernel/cpuinfo.c        | 2 +-
 arch/arm64/kernel/efi.c            | 2 ++
 arch/arm64/kernel/head.S           | 8 ++++----
 arch/arm64/kernel/ptrace.c         | 4 ----
 arch/arm64/mm/init.c               | 4 +++-
 include/uapi/asm-generic/unistd.h  | 4 +++-
 11 files changed, 24 insertions(+), 14 deletions(-)

             reply	other threads:[~2014-08-22 14:17 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-08-22 14:17 Will Deacon [this message]
2014-08-22 14:17 ` [GIT PULL] arm64: post merge-window fixes for 3.17 Will Deacon

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=20140822141712.GA12681@arm.com \
    --to=will.deacon@arm.com \
    --cc=linux-arm-kernel@lists.infradead.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 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.