Received: from mnm [127.0.0.1] by localhost with POP3 (fetchmail-5.9.0) for akpm@localhost (single-drop); Fri, 07 Mar 2003 20:27:17 -0800 (PST) Received: from digeo-e2k04.digeo.com ([192.168.2.24]) by pao-ex01.pao.digeo.com with Microsoft SMTPSVC(5.0.2195.5329); Fri, 7 Mar 2003 20:22:15 -0800 Received: from digeo-nav01.digeo.com ([192.168.1.233]) by digeo-e2k04.digeo.com with Microsoft SMTPSVC(5.0.2195.5329); Fri, 7 Mar 2003 20:22:15 -0800 Received: from packet.digeo.com ([192.168.17.15]) by digeo-nav01.digeo.com (NAVGW 2.5.2.12) with SMTP id M2003030720241102116 for ; Fri, 07 Mar 2003 20:24:11 -0800 Received: from svr-ganmtc-appserv-mgmt.ncf.coxexpress.com (svr-ganmtc-appserv-mgmt.ncf.coxexpress.com [24.136.46.5]) by packet.digeo.com (8.9.3+Sun/8.9.3) with ESMTP id UAA26287 for ; Fri, 7 Mar 2003 20:22:13 -0800 (PST) Received: from phantasy.awol.org (cpe-gan-68-101-83-201-cmcpe.ncf.coxexpress.com [68.101.83.201]) by svr-ganmtc-appserv-mgmt.ncf.coxexpress.com (8.11.4/8.11.4) with ESMTP id h2852PH20154; Sat, 8 Mar 2003 00:02:25 -0500 Subject: Re: 2.5.64-mm2 From: Robert Love To: Shawn , Andrew Morton Cc: "linux-kernel@vger.kernel.org" , linux-mm@kvack.org In-Reply-To: <1047096093.3483.4.camel@localhost.localdomain> References: <20030307185116.0c53e442.akpm@digeo.com> <1047095352.3483.0.camel@localhost.localdomain> <1047096331.727.14.camel@phantasy.awol.org> <1047096093.3483.4.camel@localhost.localdomain> Content-Type: text/plain Organization: Message-Id: <1047097353.727.18.camel@phantasy.awol.org> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.2.2 (1.2.2-3) Date: 07 Mar 2003 23:22:33 -0500 Content-Transfer-Encoding: 7bit Return-Path: rml@tech9.net X-OriginalArrivalTime: 08 Mar 2003 04:22:15.0163 (UTC) FILETIME=[4C5214B0:01C2E52A] X-Spam-Status: No, hits=-8.4 required=6.0 tests=IN_REP_TO,UNIFIED_PATCH version=2.31 X-Spam-Level: On Fri, 2003-03-07 at 23:01, Shawn wrote: > Here's my .config. I am not SMP. > > I suspected the distclean thing, but I made "Mr. Proper" too just in > case. Oh. Its those damn modules. The bane of my existence. Problem is, ksyms.c is exporting kernel_flag under PREEMPT. Now we just need it exported under SMP. Andrew, would you mind appending this to the current patch? Sorry. Everyone else, you need this if you are UP+PREEMPT+MODULES. Robert Love kernel/ksyms.c | 2 +- 1 files changed, 1 insertion(+), 1 deletion(-) diff -urN linux-2.5.64-mm2/kernel/ksyms.c linux/kernel/ksyms.c --- linux-2.5.64-mm2/kernel/ksyms.c 2003-03-07 22:08:04.000000000 -0500 +++ linux/kernel/ksyms.c 2003-03-07 23:19:32.098500176 -0500 @@ -488,7 +488,7 @@ #if CONFIG_SMP EXPORT_SYMBOL_GPL(set_cpus_allowed); #endif -#if CONFIG_SMP || CONFIG_PREEMPT +#if CONFIG_SMP EXPORT_SYMBOL(kernel_flag); #endif EXPORT_SYMBOL(jiffies);