From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S932275AbXCPA2j (ORCPT ); Thu, 15 Mar 2007 20:28:39 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1753468AbXCPA1B (ORCPT ); Thu, 15 Mar 2007 20:27:01 -0400 Received: from x35.xmailserver.org ([64.71.152.41]:47095 "EHLO x35.xmailserver.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753471AbXCPA0i (ORCPT ); Thu, 15 Mar 2007 20:26:38 -0400 X-AuthUser: davidel@xmailserver.org From: Davide Libenzi To: Linux Kernel Mailing List Cc: Andrew Morton , Linus Torvalds , Ingo Molnar , Suparna Bhattacharya , Zach Brown , Benjamin LaHaise Date: Thu, 15 Mar 2007 17:22:15 -0700 Subject: [patch 11/13] signal/timer/event fds v6 - eventfd wire up i386 arch ... MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Message-ID: Sender: linux-kernel-owner@vger.kernel.org X-Mailing-List: linux-kernel@vger.kernel.org This patch wire the eventfd system call to the i386 architecture. Signed-off-by: Davide Libenzi - Davide Index: linux-2.6.21-rc3.quilt/arch/i386/kernel/syscall_table.S =================================================================== --- linux-2.6.21-rc3.quilt.orig/arch/i386/kernel/syscall_table.S 2007-03-15 16:11:47.000000000 -0700 +++ linux-2.6.21-rc3.quilt/arch/i386/kernel/syscall_table.S 2007-03-15 16:13:40.000000000 -0700 @@ -321,3 +321,4 @@ .long sys_epoll_pwait .long sys_signalfd /* 320 */ .long sys_timerfd + .long sys_eventfd Index: linux-2.6.21-rc3.quilt/include/asm-i386/unistd.h =================================================================== --- linux-2.6.21-rc3.quilt.orig/include/asm-i386/unistd.h 2007-03-15 16:11:47.000000000 -0700 +++ linux-2.6.21-rc3.quilt/include/asm-i386/unistd.h 2007-03-15 16:13:40.000000000 -0700 @@ -327,10 +327,11 @@ #define __NR_epoll_pwait 319 #define __NR_signalfd 320 #define __NR_timerfd 321 +#define __NR_eventfd 322 #ifdef __KERNEL__ -#define NR_syscalls 322 +#define NR_syscalls 323 #define __ARCH_WANT_IPC_PARSE_VERSION #define __ARCH_WANT_OLD_READDIR