From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752368AbaIMV2a (ORCPT ); Sat, 13 Sep 2014 17:28:30 -0400 Received: from mout.gmx.net ([212.227.17.22]:60179 "EHLO mout.gmx.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752205AbaIMV23 (ORCPT ); Sat, 13 Sep 2014 17:28:29 -0400 Date: Sat, 13 Sep 2014 23:28:19 +0200 From: Helge Deller To: Linus Torvalds , linux-kernel@vger.kernel.org, linux-parisc@vger.kernel.org, James Bottomley , John David Anglin Subject: [GIT PULL] parisc fixes for v3.17 Message-ID: <20140913212819.GA15022@p100.box> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.5.21 (2010-09-15) X-Provags-ID: V03:K0:tLcJAg9N+UDmKDLz8gUSJP17hx6vYIY8QTc4cLwADOTAQpbWwT3 3zQxagBjQLsgts+n8XFM+BzPOfiZkbR3B1IpjhIA7KaRjD5f+4/zqL3TeI9anlgWmSt3l8K elYUFGHfg5giIK3T+QmXua/QWygMQ85H3a+N+ZnFXYp+8AAe0XCBQGdBdd6WPAiOVsFVxYS C6uFnceAv5N/9/mAXb0jw== X-UI-Out-Filterresults: notjunk:1; Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Hi Linus, please pull the latest parisc architecture fixes for kernel 3.17 from git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux.git parisc-3.17-1 Most important patch is a new Light Weigth Syscall (LWS) for 8, 16, 32 and 64 bit atomic CAS operations which is required in order to be able to implement the atomic gcc builtins on our platform. Other than that, we wire up the seccomp, getrandom and memfd_create syscalls, fixes a minor off-by-one bug and a wrong printk string. Thanks, Helge ---------------------------------------------------------------- Dan Carpenter (1): parisc: sys_hpux: NUL terminator is one past the end Guy Martin (1): parisc: Implement new LWS CAS supporting 64 bit operations. Hans Wennborg (1): parisc: dino: fix %d confusingly prefixed with 0x in format string Helge Deller (1): parisc: Wire up seccomp, getrandom and memfd_create syscalls arch/parisc/Kconfig | 16 +++ arch/parisc/hpux/sys_hpux.c | 2 +- arch/parisc/include/asm/seccomp.h | 16 +++ arch/parisc/include/asm/thread_info.h | 5 +- arch/parisc/include/uapi/asm/unistd.h | 5 +- arch/parisc/kernel/ptrace.c | 6 + arch/parisc/kernel/syscall.S | 233 +++++++++++++++++++++++++++++++++- arch/parisc/kernel/syscall_table.S | 3 + drivers/parisc/dino.c | 2 +- 9 files changed, 280 insertions(+), 8 deletions(-) create mode 100644 arch/parisc/include/asm/seccomp.h