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.14
Date: Fri, 7 Feb 2014 17:33:32 +0000	[thread overview]
Message-ID: <20140207173324.GA4301@arm.com> (raw)

Hi Linus,

Please pull the arm64 fixes below for 3.14. Thanks.


The following changes since commit 38dbfb59d1175ef458d006556061adeaa8751b72:

  Linus 3.14-rc1 (2014-02-02 16:42:13 -0800)

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 55834a773fe343912b705bef8114ec93fd337188:

  arm64: defconfig: Expand default enabled features (2014-02-07 17:17:28 +0000)

----------------------------------------------------------------
- Relax VDSO alignment requirements so that the kernel-picked one (4K)
  does not conflict with the dynamic linker's one (64K)
- VDSO gettimeofday fix
- Barrier fixes for atomic operations and cache flushing
- TLB invalidation when overriding early page mappings during boot
- Wired up new 32-bit arm (compat) syscalls
- LSM_MMAP_MIN_ADDR when COMPAT is enabled
- defconfig update
- Clean-up (comments, pgd_alloc).

----------------------------------------------------------------
Catalin Marinas (2):
      arm64: Invalidate the TLB when replacing pmd entries during boot
      arm64: compat: Wire up new AArch32 syscalls

Colin Cross (1):
      security: select correct default LSM_MMAP_MIN_ADDR on arm on arm64

Laura Abbott (1):
      arm64: Align CMA sizes to PAGE_SIZE

Mark Rutland (3):
      arm64: fix typo: s/SERRROR/SERROR/
      arm64: simplify pgd_alloc
      arm64: defconfig: Expand default enabled features

Nathan Lynch (2):
      arm64: vdso: fix coarse clock handling
      arm64: vdso: update wtm fields for CLOCK_MONOTONIC_COARSE

Vinayak Kale (1):
      arm64: add DSB after icache flush in __flush_icache_all()

Will Deacon (4):
      arm64: vdso: prevent ld from aligning PT_LOAD segments to 64k
      arm64: barriers: allow dsb macro to take option parameter
      arm64: atomics: fix use of acquire + release for full barrier semantics
      arm64: asm: remove redundant "cc" clobbers

 arch/arm64/Kconfig                    |  1 +
 arch/arm64/configs/defconfig          | 18 +++++++++---
 arch/arm64/include/asm/atomic.h       | 53 ++++++++++++++++++++---------------
 arch/arm64/include/asm/barrier.h      |  2 +-
 arch/arm64/include/asm/cacheflush.h   |  1 +
 arch/arm64/include/asm/cmpxchg.h      | 17 +++++------
 arch/arm64/include/asm/esr.h          |  2 +-
 arch/arm64/include/asm/futex.h        | 10 ++++---
 arch/arm64/include/asm/kvm_arm.h      |  2 +-
 arch/arm64/include/asm/spinlock.h     | 10 +++----
 arch/arm64/include/asm/unistd32.h     |  5 +++-
 arch/arm64/kernel/kuser32.S           |  6 ++--
 arch/arm64/kernel/vdso.c              |  4 +--
 arch/arm64/kernel/vdso/Makefile       |  2 +-
 arch/arm64/kernel/vdso/gettimeofday.S |  7 ++++-
 arch/arm64/lib/bitops.S               |  3 +-
 arch/arm64/mm/dma-mapping.c           |  1 +
 arch/arm64/mm/mmu.c                   | 12 ++++++--
 arch/arm64/mm/pgd.c                   | 11 ++------
 security/Kconfig                      |  2 +-
 20 files changed, 102 insertions(+), 67 deletions(-)

-- 
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.14
Date: Fri, 7 Feb 2014 17:33:32 +0000	[thread overview]
Message-ID: <20140207173324.GA4301@arm.com> (raw)

Hi Linus,

Please pull the arm64 fixes below for 3.14. Thanks.


The following changes since commit 38dbfb59d1175ef458d006556061adeaa8751b72:

  Linus 3.14-rc1 (2014-02-02 16:42:13 -0800)

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 55834a773fe343912b705bef8114ec93fd337188:

  arm64: defconfig: Expand default enabled features (2014-02-07 17:17:28 +0000)

----------------------------------------------------------------
- Relax VDSO alignment requirements so that the kernel-picked one (4K)
  does not conflict with the dynamic linker's one (64K)
- VDSO gettimeofday fix
- Barrier fixes for atomic operations and cache flushing
- TLB invalidation when overriding early page mappings during boot
- Wired up new 32-bit arm (compat) syscalls
- LSM_MMAP_MIN_ADDR when COMPAT is enabled
- defconfig update
- Clean-up (comments, pgd_alloc).

----------------------------------------------------------------
Catalin Marinas (2):
      arm64: Invalidate the TLB when replacing pmd entries during boot
      arm64: compat: Wire up new AArch32 syscalls

Colin Cross (1):
      security: select correct default LSM_MMAP_MIN_ADDR on arm on arm64

Laura Abbott (1):
      arm64: Align CMA sizes to PAGE_SIZE

Mark Rutland (3):
      arm64: fix typo: s/SERRROR/SERROR/
      arm64: simplify pgd_alloc
      arm64: defconfig: Expand default enabled features

Nathan Lynch (2):
      arm64: vdso: fix coarse clock handling
      arm64: vdso: update wtm fields for CLOCK_MONOTONIC_COARSE

Vinayak Kale (1):
      arm64: add DSB after icache flush in __flush_icache_all()

Will Deacon (4):
      arm64: vdso: prevent ld from aligning PT_LOAD segments to 64k
      arm64: barriers: allow dsb macro to take option parameter
      arm64: atomics: fix use of acquire + release for full barrier semantics
      arm64: asm: remove redundant "cc" clobbers

 arch/arm64/Kconfig                    |  1 +
 arch/arm64/configs/defconfig          | 18 +++++++++---
 arch/arm64/include/asm/atomic.h       | 53 ++++++++++++++++++++---------------
 arch/arm64/include/asm/barrier.h      |  2 +-
 arch/arm64/include/asm/cacheflush.h   |  1 +
 arch/arm64/include/asm/cmpxchg.h      | 17 +++++------
 arch/arm64/include/asm/esr.h          |  2 +-
 arch/arm64/include/asm/futex.h        | 10 ++++---
 arch/arm64/include/asm/kvm_arm.h      |  2 +-
 arch/arm64/include/asm/spinlock.h     | 10 +++----
 arch/arm64/include/asm/unistd32.h     |  5 +++-
 arch/arm64/kernel/kuser32.S           |  6 ++--
 arch/arm64/kernel/vdso.c              |  4 +--
 arch/arm64/kernel/vdso/Makefile       |  2 +-
 arch/arm64/kernel/vdso/gettimeofday.S |  7 ++++-
 arch/arm64/lib/bitops.S               |  3 +-
 arch/arm64/mm/dma-mapping.c           |  1 +
 arch/arm64/mm/mmu.c                   | 12 ++++++--
 arch/arm64/mm/pgd.c                   | 11 ++------
 security/Kconfig                      |  2 +-
 20 files changed, 102 insertions(+), 67 deletions(-)

-- 
Catalin

             reply	other threads:[~2014-02-07 17:33 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-02-07 17:33 Catalin Marinas [this message]
2014-02-07 17:33 ` [GIT PULL] arm64 fixes for 3.14 Catalin Marinas
  -- strict thread matches above, loose matches on Subject: below --
2014-02-28 17:57 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=20140207173324.GA4301@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.