From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753590AbYJAKDA (ORCPT ); Wed, 1 Oct 2008 06:03:00 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1752971AbYJAKCN (ORCPT ); Wed, 1 Oct 2008 06:02:13 -0400 Received: from www.tglx.de ([62.245.132.106]:37627 "EHLO www.tglx.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752787AbYJAKCM (ORCPT ); Wed, 1 Oct 2008 06:02:12 -0400 Message-Id: <20081001095412.309614500@linutronix.de> User-Agent: quilt/0.47-1 Date: Wed, 01 Oct 2008 10:01:43 -0000 From: Thomas Gleixner To: LKML Cc: Ingo Molnar , Ulrich Drepper , Roland McGrath , Oleg Nesterov , Michael Kerrisk Subject: [RFC patch 3/3] x86: hookup sys_rt_tgsigqueueinfo References: <20081001095204.343984413@linutronix.de> Content-Disposition: inline; filename=x86-hookup-rt-tgsigqueueinfo.patch Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Make the new sys_rt_tgsigqueueinfo available for x86. Signed-off-by: Thomas Gleixner --- arch/x86/ia32/ia32entry.S | 1 + arch/x86/kernel/syscall_table_32.S | 1 + include/asm-x86/unistd_32.h | 1 + include/asm-x86/unistd_64.h | 2 ++ 4 files changed, 5 insertions(+) Index: linux-2.6-tip/arch/x86/ia32/ia32entry.S =================================================================== --- linux-2.6-tip.orig/arch/x86/ia32/ia32entry.S +++ linux-2.6-tip/arch/x86/ia32/ia32entry.S @@ -832,4 +832,5 @@ ia32_sys_call_table: .quad sys_dup3 /* 330 */ .quad sys_pipe2 .quad sys_inotify_init1 + .quad compat_sys_rt_tgsigqueueinfo ia32_syscall_end: Index: linux-2.6-tip/arch/x86/kernel/syscall_table_32.S =================================================================== --- linux-2.6-tip.orig/arch/x86/kernel/syscall_table_32.S +++ linux-2.6-tip/arch/x86/kernel/syscall_table_32.S @@ -332,3 +332,4 @@ ENTRY(sys_call_table) .long sys_dup3 /* 330 */ .long sys_pipe2 .long sys_inotify_init1 + .long sys_rt_tgsigqueueinfo Index: linux-2.6-tip/include/asm-x86/unistd_32.h =================================================================== --- linux-2.6-tip.orig/include/asm-x86/unistd_32.h +++ linux-2.6-tip/include/asm-x86/unistd_32.h @@ -338,6 +338,7 @@ #define __NR_dup3 330 #define __NR_pipe2 331 #define __NR_inotify_init1 332 +#define __NR_rt_tgsigqueueinfo 333 #ifdef __KERNEL__ Index: linux-2.6-tip/include/asm-x86/unistd_64.h =================================================================== --- linux-2.6-tip.orig/include/asm-x86/unistd_64.h +++ linux-2.6-tip/include/asm-x86/unistd_64.h @@ -653,6 +653,8 @@ __SYSCALL(__NR_dup3, sys_dup3) __SYSCALL(__NR_pipe2, sys_pipe2) #define __NR_inotify_init1 294 __SYSCALL(__NR_inotify_init1, sys_inotify_init1) +#define __NR_rt_tgsigqueueinfo 295 +__SYSCALL(__NR_rt_tgsigqueueinfo, sys_rt_tgsigqueueinfo) #ifndef __NO_STUBS