From patchwork Tue Dec 22 22:50:33 2009 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Helge Deller X-Patchwork-Id: 69338 X-Patchwork-Delegate: kyle@mcmartin.ca Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by demeter.kernel.org (8.14.3/8.14.2) with ESMTP id nBMMoW0w012701 for ; Tue, 22 Dec 2009 22:50:38 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752183AbZLVWuh (ORCPT ); Tue, 22 Dec 2009 17:50:37 -0500 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1752258AbZLVWuh (ORCPT ); Tue, 22 Dec 2009 17:50:37 -0500 Received: from mail.gmx.net ([213.165.64.20]:46862 "HELO mail.gmx.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with SMTP id S1752183AbZLVWuh (ORCPT ); Tue, 22 Dec 2009 17:50:37 -0500 Received: (qmail invoked by alias); 22 Dec 2009 22:50:35 -0000 Received: from p4FDB2567.dip0.t-ipconnect.de (EHLO p100.box) [79.219.37.103] by mail.gmx.net (mp052) with SMTP; 22 Dec 2009 23:50:35 +0100 X-Authenticated: #1045983 X-Provags-ID: V01U2FsdGVkX19mg4MClhZmO2xHweSpjLF25NS+PeiorHmyBIEvw2 JVMMB12sbEjCrF Date: Tue, 22 Dec 2009 23:50:33 +0100 From: Helge Deller To: linux-parisc@vger.kernel.org, Kyle McMartin Subject: [PATCH] parisc: wire up sys_recvmmsg Message-ID: <20091222225033.GA6996@p100.box> MIME-Version: 1.0 Content-Disposition: inline User-Agent: Mutt/1.5.20 (2009-08-17) X-Y-GMX-Trusted: 0 X-FuHaFi: 0.58 Sender: linux-parisc-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-parisc@vger.kernel.org diff --git a/arch/parisc/include/asm/unistd.h b/arch/parisc/include/asm/unistd.h index cda1583..ee63634 100644 --- a/arch/parisc/include/asm/unistd.h +++ b/arch/parisc/include/asm/unistd.h @@ -811,8 +811,9 @@ #define __NR_pwritev (__NR_Linux + 316) #define __NR_rt_tgsigqueueinfo (__NR_Linux + 317) #define __NR_perf_event_open (__NR_Linux + 318) +#define __NR_recvmmsg (__NR_Linux + 319) -#define __NR_Linux_syscalls (__NR_perf_event_open + 1) +#define __NR_Linux_syscalls (__NR_recvmmsg + 1) #define __IGNORE_select /* newselect */ diff --git a/arch/parisc/kernel/syscall_table.S b/arch/parisc/kernel/syscall_table.S index 01c4fcf..a0c54cf 100644 --- a/arch/parisc/kernel/syscall_table.S +++ b/arch/parisc/kernel/syscall_table.S @@ -417,6 +417,7 @@ ENTRY_COMP(pwritev) ENTRY_COMP(rt_tgsigqueueinfo) ENTRY_SAME(perf_event_open) + ENTRY_COMP(recvmmsg) /* Nothing yet */