From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from sfi-mx-4.v28.ch3.sourceforge.com ([172.29.28.124] helo=mx.sourceforge.net) by 3yr0jf1.ch3.sourceforge.com with esmtp (Exim 4.69) (envelope-from ) id 1LNS1q-0006PU-1T for user-mode-linux-devel@lists.sourceforge.net; Thu, 15 Jan 2009 13:12:58 +0000 Received: from ti-out-0910.google.com ([209.85.142.185]) by 1b2kzd1.ch3.sourceforge.com with esmtp (Exim 4.69) id 1LNS1k-0007U5-O8 for user-mode-linux-devel@lists.sourceforge.net; Thu, 15 Jan 2009 13:12:58 +0000 Received: by ti-out-0910.google.com with SMTP id y6so770836tia.18 for ; Thu, 15 Jan 2009 05:12:50 -0800 (PST) Date: Thu, 15 Jan 2009 19:40:33 +0000 From: =?utf-8?Q?Am=C3=A9rico?= Wang Message-ID: <20090115194033.GA10926@hack.private> MIME-Version: 1.0 Content-Disposition: inline Subject: [uml-devel] [Patch] uml: fix a link error 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 Errors-To: user-mode-linux-devel-bounces@lists.sourceforge.net To: LKML Cc: Andrew Morton , jdike@addtoit.com, user-mode-linux-devel@lists.sourceforge.net This patch fixes the following link error: LD .tmp_vmlinux1 arch/um/sys-i386/built-in.o: In function sys_call_table': (.rodata+0x308): undefined reference to sys_sigprocmask' collect2: ld returned 1 exit status KSYM .tmp_kallsyms1.S nm: '.tmp_vmlinux1': No such file AS .tmp_kallsyms1.o LD .tmp_vmlinux2 arch/um/sys-i386/built-in.o: In function sys_call_table': (.rodata+0x308): undefined reference to sys_sigprocmask' collect2: ld returned 1 exit status make[1]: *** [.tmp_vmlinux2] Error 1 make: *** [sub-make] Error 2 Signed-off-by: WANG Cong Cc: Jeff Dike --- diff --git a/arch/um/sys-i386/sys_call_table.S b/arch/um/sys-i386/sys_call_table.S index 00e5f52..04147dc 100644 --- a/arch/um/sys-i386/sys_call_table.S +++ b/arch/um/sys-i386/sys_call_table.S @@ -6,6 +6,7 @@ #define sys_vm86old sys_ni_syscall #define sys_vm86 sys_ni_syscall +#define sys_sigprocmask sigprocmask #define old_mmap old_mmap_i386 ------------------------------------------------------------------------------ This SF.net email is sponsored by: SourcForge Community SourceForge wants to tell your story. http://p.sf.net/sfu/sf-spreadtheword _______________________________________________ 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 S1763645AbZAOLlz (ORCPT ); Thu, 15 Jan 2009 06:41:55 -0500 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1754500AbZAOLle (ORCPT ); Thu, 15 Jan 2009 06:41:34 -0500 Received: from ti-out-0910.google.com ([209.85.142.191]:1494 "EHLO ti-out-0910.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753772AbZAOLld (ORCPT ); Thu, 15 Jan 2009 06:41:33 -0500 DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=date:from:to:cc:subject:message-id:mime-version:content-type :content-disposition:user-agent; b=HElPYg0TcskAz/IKAldKaAFC9sriV+F+W9QHoodOzDZUJ5l2eKaJAYCQF+LhEzR1TY J/qIRCkPC67sRk5kOiXxn6e39GNxi5W7YMwS4bXuqZvtaVS996UuyqM7Kp00gFkyhgXK 6+0K3MJRFr01lTyLHY849SsIRQ7Vlb+EOqMK0= Date: Thu, 15 Jan 2009 19:40:33 +0000 From: =?utf-8?Q?Am=C3=A9rico?= Wang To: LKML Cc: jdike@addtoit.com, user-mode-linux-devel@lists.sourceforge.net, Andrew Morton Subject: [Patch] uml: fix a link error Message-ID: <20090115194033.GA10926@hack.private> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.5.18 (2008-05-17) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org This patch fixes the following link error: LD .tmp_vmlinux1 arch/um/sys-i386/built-in.o: In function sys_call_table': (.rodata+0x308): undefined reference to sys_sigprocmask' collect2: ld returned 1 exit status KSYM .tmp_kallsyms1.S nm: '.tmp_vmlinux1': No such file AS .tmp_kallsyms1.o LD .tmp_vmlinux2 arch/um/sys-i386/built-in.o: In function sys_call_table': (.rodata+0x308): undefined reference to sys_sigprocmask' collect2: ld returned 1 exit status make[1]: *** [.tmp_vmlinux2] Error 1 make: *** [sub-make] Error 2 Signed-off-by: WANG Cong Cc: Jeff Dike --- diff --git a/arch/um/sys-i386/sys_call_table.S b/arch/um/sys-i386/sys_call_table.S index 00e5f52..04147dc 100644 --- a/arch/um/sys-i386/sys_call_table.S +++ b/arch/um/sys-i386/sys_call_table.S @@ -6,6 +6,7 @@ #define sys_vm86old sys_ni_syscall #define sys_vm86 sys_ni_syscall +#define sys_sigprocmask sigprocmask #define old_mmap old_mmap_i386