Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754835AbYCKKQp (ORCPT ); Tue, 11 Mar 2008 06:16:45 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1752705AbYCKKQg (ORCPT ); Tue, 11 Mar 2008 06:16:36 -0400 Received: from E23SMTP03.au.ibm.com ([202.81.18.172]:34010 "EHLO e23smtp03.au.ibm.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752702AbYCKKQf (ORCPT ); Tue, 11 Mar 2008 06:16:35 -0400 Date: Tue, 11 Mar 2008 15:46:30 +0530 From: Kamalesh Babulal To: Andrew Morton Cc: linux-kernel@vger.kernel.org, reiserfs-devel@vger.kernel.org, apw@shadowen.org, balbir@linux.vnet.ibm.com Subject: [Build Faliure] 2.6.25-rc5-mm1 build fails Message-ID: <20080311101630.GA23757@linux.vnet.ibm.com> Reply-To: Kamalesh Babulal References: <20080311011434.ad8c8d7d.akpm@linux-foundation.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20080311011434.ad8c8d7d.akpm@linux-foundation.org> User-Agent: Mutt/1.5.13 (2006-08-11) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1153 Lines: 36 Hi Andrew, The 2.6.25-rc5-mm1 kernel build fails with allyesconfig LD .tmp_vmlinux1 fs/built-in.o: In function `reiser4_debugtrap': /root/kernels/linux-2.6.25-rc5/fs/reiser4/debug.c:295: undefined reference to `breakpoint' make: *** [.tmp_vmlinux1] Error 1 This build failure has been introduced by reiser4.patch, i think the breakpoint() have been used instead of kgdb_breakpoint(). --- linux-2.6.25-rc5/fs/reiser4/debug.c 2008-03-11 22:12:45.000000000 +0530 +++ linux-2.6.25-rc5/fs/reiser4/~debug.c 2008-03-11 23:14:54.000000000 +0530 @@ -291,8 +291,8 @@ void reiser4_debugtrap(void) { /* do nothing. Put break point here. */ #if defined(CONFIG_KGDB) && !defined(CONFIG_REISER4_FS_MODULE) - extern void breakpoint(void); - breakpoint(); + extern void kgdb_breakpoint(void); + kgdb_breakpoint(); #endif } #endif -- Thanks & Regards, Kamalesh Babulal, Linux Technology Center, IBM, ISTL. -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/