From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from sc8-sf-mx1-b.sourceforge.net ([10.3.1.91] helo=mail.sourceforge.net) by sc8-sf-list1-new.sourceforge.net with esmtp (Exim 4.43) id 1GNWPk-0004Tr-83 for user-mode-linux-devel@lists.sourceforge.net; Wed, 13 Sep 2006 08:12:36 -0700 Received: from saraswathi.solana.com ([198.99.130.12]) by mail.sourceforge.net with esmtps (TLSv1:AES256-SHA:256) (Exim 4.44) id 1GNWPi-0003FS-Gt for user-mode-linux-devel@lists.sourceforge.net; Wed, 13 Sep 2006 08:12:36 -0700 Message-Id: <200609131510.k8DFAvIM004159@ccure.user-mode-linux.org> Mime-Version: 1.0 Date: Wed, 13 Sep 2006 11:10:57 -0400 From: Jeff Dike Subject: [uml-devel] [PATCH] Properly export ptrace-abi.h List-Id: The user-mode Linux development list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Sender: user-mode-linux-devel-bounces@lists.sourceforge.net Errors-To: user-mode-linux-devel-bounces@lists.sourceforge.net To: akpm@osdl.org, David Woodhouse Cc: zach@vmware.com, jeremy@xensource.com, user-mode-linux-devel@lists.sourceforge.net, rusty@rustcorp.com.au, linux-kernel@vger.kernel.org, ak@muc.de, 76306.1226@compuserve.com The ptrace.h splitting patch neglected to add the new, userspace-usable header to the appropriate header export lists. This patch does so. Signed-off-by: Jeff Dike Index: linux-2.6.18-mm/include/asm-i386/Kbuild =================================================================== --- linux-2.6.18-mm.orig/include/asm-i386/Kbuild 2006-09-12 10:43:40.000000000 -0400 +++ linux-2.6.18-mm/include/asm-i386/Kbuild 2006-09-13 11:03:48.000000000 -0400 @@ -1,5 +1,5 @@ include include/asm-generic/Kbuild.asm -header-y += boot.h debugreg.h ldt.h ucontext.h +header-y += boot.h debugreg.h ldt.h ptrace-abi.h ucontext.h unifdef-y += mtrr.h setup.h vm86.h Index: linux-2.6.18-mm/include/asm-x86_64/Kbuild =================================================================== --- linux-2.6.18-mm.orig/include/asm-x86_64/Kbuild 2006-09-11 10:47:53.000000000 -0400 +++ linux-2.6.18-mm/include/asm-x86_64/Kbuild 2006-09-13 11:04:03.000000000 -0400 @@ -5,7 +5,7 @@ ARCHDEF := defined __x86_64__ ALTARCHDEF := defined __i386__ header-y += boot.h bootsetup.h cpufeature.h debugreg.h ldt.h \ - msr.h prctl.h setup.h sigcontext32.h ucontext.h \ + msr.h prctl.h ptrace-abi.h setup.h sigcontext32.h ucontext.h \ vsyscall32.h unifdef-y += mce.h mtrr.h vsyscall.h ------------------------------------------------------------------------- Using Tomcat but need to do more? Need to support web services, security? Get stuff done quickly with pre-integrated technology to make your job easier Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 _______________________________________________ User-mode-linux-devel mailing list User-mode-linux-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/user-mode-linux-devel From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1750880AbWIMPNH (ORCPT ); Wed, 13 Sep 2006 11:13:07 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1750894AbWIMPNH (ORCPT ); Wed, 13 Sep 2006 11:13:07 -0400 Received: from saraswathi.solana.com ([198.99.130.12]:61403 "EHLO saraswathi.solana.com") by vger.kernel.org with ESMTP id S1750880AbWIMPNG (ORCPT ); Wed, 13 Sep 2006 11:13:06 -0400 Message-Id: <200609131510.k8DFAvIM004159@ccure.user-mode-linux.org> X-Mailer: exmh version 2.7.2 01/07/2005 with nmh-1.0.4 To: akpm@osdl.org, David Woodhouse cc: linux-kernel@vger.kernel.org, user-mode-linux-devel@lists.sourceforge.net, 76306.1226@compuserve.com, ak@muc.de, jeremy@xensource.com, rusty@rustcorp.com.au, zach@vmware.com Subject: [PATCH] Properly export ptrace-abi.h Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Wed, 13 Sep 2006 11:10:57 -0400 From: Jeff Dike Sender: linux-kernel-owner@vger.kernel.org X-Mailing-List: linux-kernel@vger.kernel.org The ptrace.h splitting patch neglected to add the new, userspace-usable header to the appropriate header export lists. This patch does so. Signed-off-by: Jeff Dike Index: linux-2.6.18-mm/include/asm-i386/Kbuild =================================================================== --- linux-2.6.18-mm.orig/include/asm-i386/Kbuild 2006-09-12 10:43:40.000000000 -0400 +++ linux-2.6.18-mm/include/asm-i386/Kbuild 2006-09-13 11:03:48.000000000 -0400 @@ -1,5 +1,5 @@ include include/asm-generic/Kbuild.asm -header-y += boot.h debugreg.h ldt.h ucontext.h +header-y += boot.h debugreg.h ldt.h ptrace-abi.h ucontext.h unifdef-y += mtrr.h setup.h vm86.h Index: linux-2.6.18-mm/include/asm-x86_64/Kbuild =================================================================== --- linux-2.6.18-mm.orig/include/asm-x86_64/Kbuild 2006-09-11 10:47:53.000000000 -0400 +++ linux-2.6.18-mm/include/asm-x86_64/Kbuild 2006-09-13 11:04:03.000000000 -0400 @@ -5,7 +5,7 @@ ARCHDEF := defined __x86_64__ ALTARCHDEF := defined __i386__ header-y += boot.h bootsetup.h cpufeature.h debugreg.h ldt.h \ - msr.h prctl.h setup.h sigcontext32.h ucontext.h \ + msr.h prctl.h ptrace-abi.h setup.h sigcontext32.h ucontext.h \ vsyscall32.h unifdef-y += mce.h mtrr.h vsyscall.h