All of lore.kernel.org
 help / color / mirror / Atom feed
From: catalin.marinas@arm.com (Catalin Marinas)
To: linux-arm-kernel@lists.infradead.org
Subject: [GIT PULL] arm64 fixes for 3.16
Date: Wed, 18 Jun 2014 19:26:45 +0100	[thread overview]
Message-ID: <20140618182639.GA27504@arm.com> (raw)

Hi Linus,

These are primarily bug fixes with a performance improvement patch for
the GHASH crypto algorithm (which went in during this merging window)
and dts/defconfig/Kconfig updates.

Thanks.

The following changes since commit 7171511eaec5bf23fb06078f59784a3a0626b38f:

  Linux 3.16-rc1 (2014-06-15 17:45:28 -1000)

are available in the git repository at:

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

for you to fetch changes up to e3a920afc3482e954834a4ed95908c4bc5e4c000:

  arm64: mm: remove broken &= operator from pmd_mknotpresent (2014-06-18 16:34:30 +0100)

----------------------------------------------------------------
- ftrace_return_addr() macro fix for arm (introduced earlier via the
  arm64 tree)
- stack alignment exception entry code fix
- GHASH crypto algorithm fix and performance improvement
- CMA buffer limited to 32-bit (until a better way to describe the
  system topology in DT)
- UAPI sigcontext.h build fix
- __kernel_old_{gid,uid}_t definitions fix (affecting 32-bit LTP)
- ptrace fixes (kernel fault and 32-bit arm core dump)
- pte_mknotpresent() fix
- dts updates (APM SoC)
- defconfig and Kconfig update

----------------------------------------------------------------
Ard Biesheuvel (2):
      arm64/crypto: fix data corruption bug in GHASH algorithm
      arm64/crypto: improve performance of GHASH algorithm

Catalin Marinas (2):
      arm64: defconfig update for LTP
      arm64: Limit the CMA buffer to 32-bit if ZONE_DMA

ChiaHao (1):
      arm64: Bug fix in stack alignment exception

Mark Salter (1):
      arm64: fix build error in sigcontext.h

Paul Bolle (1):
      arm64: ftrace: Fix comment typo 'CONFIG_FUNCTION_GRAPH_FP_TEST'

Steven Rostedt (1):
      arm/ftrace: fix ftrace_return_addr() to ftrace_return_address()

Sudeep Holla (2):
      arm64: restore alphabetic order in Kconfig
      arm64: add ARCH_HAS_OPP to allow enabling OPP library

Suravee Suthikulpanit (1):
      arm64/dma: Removing ARCH_HAS_DMA_GET_REQUIRED_MASK macro

Victor Kamensky (1):
      arm64: ptrace: fix empty registers set in prstatus of aarch32 process core

Vinayak Kale (1):
      arm64: dts: Add more serial port nodes in APM X-Gene device tree

Will Deacon (3):
      arm64: ptrace: change fs when passing kernel pointer to regset code
      arm64: uid16: fix __kernel_old_{gid,uid}_t definitions
      arm64: mm: remove broken &= operator from pmd_mknotpresent

 arch/arm/include/asm/ftrace.h             |  2 +-
 arch/arm64/Kconfig                        |  3 +-
 arch/arm64/boot/dts/apm-mustang.dts       |  4 ++
 arch/arm64/boot/dts/apm-storm.dtsi        | 36 +++++++++++-
 arch/arm64/configs/defconfig              | 15 +++++
 arch/arm64/crypto/ghash-ce-core.S         | 92 +++++++++++++------------------
 arch/arm64/crypto/ghash-ce-glue.c         |  5 +-
 arch/arm64/include/asm/Kbuild             |  1 -
 arch/arm64/include/asm/dma-mapping.h      |  2 -
 arch/arm64/include/asm/pgtable.h          |  2 +-
 arch/arm64/include/uapi/asm/posix_types.h | 10 ++++
 arch/arm64/include/uapi/asm/sigcontext.h  |  2 +-
 arch/arm64/kernel/entry-ftrace.S          |  2 +-
 arch/arm64/kernel/entry.S                 |  1 -
 arch/arm64/kernel/ptrace.c                | 32 ++++++++---
 arch/arm64/mm/init.c                      | 10 +++-
 16 files changed, 142 insertions(+), 77 deletions(-)
 create mode 100644 arch/arm64/include/uapi/asm/posix_types.h

-- 
Catalin

WARNING: multiple messages have this Message-ID (diff)
From: Catalin Marinas <catalin.marinas@arm.com>
To: Linus Torvalds <torvalds@linux-foundation.org>
Cc: Will Deacon <will.deacon@arm.com>,
	linux-arm-kernel@lists.infradead.org,
	linux-kernel@vger.kernel.org
Subject: [GIT PULL] arm64 fixes for 3.16
Date: Wed, 18 Jun 2014 19:26:45 +0100	[thread overview]
Message-ID: <20140618182639.GA27504@arm.com> (raw)

Hi Linus,

These are primarily bug fixes with a performance improvement patch for
the GHASH crypto algorithm (which went in during this merging window)
and dts/defconfig/Kconfig updates.

Thanks.

The following changes since commit 7171511eaec5bf23fb06078f59784a3a0626b38f:

  Linux 3.16-rc1 (2014-06-15 17:45:28 -1000)

are available in the git repository at:

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

for you to fetch changes up to e3a920afc3482e954834a4ed95908c4bc5e4c000:

  arm64: mm: remove broken &= operator from pmd_mknotpresent (2014-06-18 16:34:30 +0100)

----------------------------------------------------------------
- ftrace_return_addr() macro fix for arm (introduced earlier via the
  arm64 tree)
- stack alignment exception entry code fix
- GHASH crypto algorithm fix and performance improvement
- CMA buffer limited to 32-bit (until a better way to describe the
  system topology in DT)
- UAPI sigcontext.h build fix
- __kernel_old_{gid,uid}_t definitions fix (affecting 32-bit LTP)
- ptrace fixes (kernel fault and 32-bit arm core dump)
- pte_mknotpresent() fix
- dts updates (APM SoC)
- defconfig and Kconfig update

----------------------------------------------------------------
Ard Biesheuvel (2):
      arm64/crypto: fix data corruption bug in GHASH algorithm
      arm64/crypto: improve performance of GHASH algorithm

Catalin Marinas (2):
      arm64: defconfig update for LTP
      arm64: Limit the CMA buffer to 32-bit if ZONE_DMA

ChiaHao (1):
      arm64: Bug fix in stack alignment exception

Mark Salter (1):
      arm64: fix build error in sigcontext.h

Paul Bolle (1):
      arm64: ftrace: Fix comment typo 'CONFIG_FUNCTION_GRAPH_FP_TEST'

Steven Rostedt (1):
      arm/ftrace: fix ftrace_return_addr() to ftrace_return_address()

Sudeep Holla (2):
      arm64: restore alphabetic order in Kconfig
      arm64: add ARCH_HAS_OPP to allow enabling OPP library

Suravee Suthikulpanit (1):
      arm64/dma: Removing ARCH_HAS_DMA_GET_REQUIRED_MASK macro

Victor Kamensky (1):
      arm64: ptrace: fix empty registers set in prstatus of aarch32 process core

Vinayak Kale (1):
      arm64: dts: Add more serial port nodes in APM X-Gene device tree

Will Deacon (3):
      arm64: ptrace: change fs when passing kernel pointer to regset code
      arm64: uid16: fix __kernel_old_{gid,uid}_t definitions
      arm64: mm: remove broken &= operator from pmd_mknotpresent

 arch/arm/include/asm/ftrace.h             |  2 +-
 arch/arm64/Kconfig                        |  3 +-
 arch/arm64/boot/dts/apm-mustang.dts       |  4 ++
 arch/arm64/boot/dts/apm-storm.dtsi        | 36 +++++++++++-
 arch/arm64/configs/defconfig              | 15 +++++
 arch/arm64/crypto/ghash-ce-core.S         | 92 +++++++++++++------------------
 arch/arm64/crypto/ghash-ce-glue.c         |  5 +-
 arch/arm64/include/asm/Kbuild             |  1 -
 arch/arm64/include/asm/dma-mapping.h      |  2 -
 arch/arm64/include/asm/pgtable.h          |  2 +-
 arch/arm64/include/uapi/asm/posix_types.h | 10 ++++
 arch/arm64/include/uapi/asm/sigcontext.h  |  2 +-
 arch/arm64/kernel/entry-ftrace.S          |  2 +-
 arch/arm64/kernel/entry.S                 |  1 -
 arch/arm64/kernel/ptrace.c                | 32 ++++++++---
 arch/arm64/mm/init.c                      | 10 +++-
 16 files changed, 142 insertions(+), 77 deletions(-)
 create mode 100644 arch/arm64/include/uapi/asm/posix_types.h

-- 
Catalin

             reply	other threads:[~2014-06-18 18:26 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-06-18 18:26 Catalin Marinas [this message]
2014-06-18 18:26 ` [GIT PULL] arm64 fixes for 3.16 Catalin Marinas
  -- strict thread matches above, loose matches on Subject: below --
2014-07-05 11:30 Catalin Marinas
2014-07-05 11:30 ` Catalin Marinas
2014-07-11 18:15 Catalin Marinas
2014-07-11 18:15 ` Catalin Marinas

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=20140618182639.GA27504@arm.com \
    --to=catalin.marinas@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.