From patchwork Fri Feb 7 17:33:32 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Catalin Marinas X-Patchwork-Id: 318141 Return-Path: X-Original-To: incoming-imx@patchwork.ozlabs.org Delivered-To: patchwork-incoming-imx@bilbo.ozlabs.org Received: from casper.infradead.org (casper.infradead.org [IPv6:2001:770:15f::2]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 3E1422C0078 for ; Sat, 8 Feb 2014 04:39:14 +1100 (EST) Received: from merlin.infradead.org ([2001:4978:20e::2]) by casper.infradead.org with esmtp (Exim 4.80.1 #2 (Red Hat Linux)) id 1WBpOJ-0000FA-Hx; Fri, 07 Feb 2014 17:39:03 +0000 Received: from localhost ([::1] helo=merlin.infradead.org) by merlin.infradead.org with esmtp (Exim 4.80.1 #2 (Red Hat Linux)) id 1WBpJR-00024e-N9; Fri, 07 Feb 2014 17:34:01 +0000 Received: from fw-tnat.austin.arm.com ([217.140.110.23] helo=collaborate-mta1.arm.com) by merlin.infradead.org with esmtp (Exim 4.80.1 #2 (Red Hat Linux)) id 1WBpJO-00023r-BT for linux-arm-kernel@lists.infradead.org; Fri, 07 Feb 2014 17:33:58 +0000 Received: from arm.com (e102109-lin.cambridge.arm.com [10.1.203.182]) by collaborate-mta1.arm.com (Postfix) with ESMTPS id 6DF5B140041; Fri, 7 Feb 2014 11:33:34 -0600 (CST) Date: Fri, 7 Feb 2014 17:33:32 +0000 From: Catalin Marinas To: Linus Torvalds Subject: [GIT PULL] arm64 fixes for 3.14 Message-ID: <20140207173324.GA4301@arm.com> MIME-Version: 1.0 Content-Disposition: inline User-Agent: Mutt/1.5.20 (2009-06-14) X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20140207_123358_449543_23F8CE3F X-CRM114-Status: GOOD ( 10.79 ) X-Spam-Score: -2.5 (--) X-Spam-Report: SpamAssassin version 3.3.2 on merlin.infradead.org summary: Content analysis details: (-2.5 points) pts rule name description ---- ---------------------- -------------------------------------------------- -0.0 SPF_PASS SPF: sender matches SPF record -0.6 RP_MATCHES_RCVD Envelope sender domain matches handover relay domain -1.9 BAYES_00 BODY: Bayes spam probability is 0 to 1% [score: 0.0000] Cc: Will Deacon , linux-kernel@vger.kernel.org, linux-arm-kernel@lists.infradead.org X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.15 Precedence: list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+incoming-imx=patchwork.ozlabs.org@lists.infradead.org List-Id: linux-imx-kernel.lists.patchwork.ozlabs.org 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(-)