From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755733Ab3AaWDa (ORCPT ); Thu, 31 Jan 2013 17:03:30 -0500 Received: from terminus.zytor.com ([198.137.202.10]:44596 "EHLO mail.zytor.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753547Ab3AaWD0 (ORCPT ); Thu, 31 Jan 2013 17:03:26 -0500 Message-ID: <510AEA20.8040407@zytor.com> Date: Thu, 31 Jan 2013 14:03:12 -0800 From: "H. Peter Anvin" User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:17.0) Gecko/20130110 Thunderbird/17.0.2 MIME-Version: 1.0 To: Yinghai Lu CC: Dave Hansen , linux-mm@kvack.org, linux-kernel@vger.kernel.org Subject: Re: [RFC][PATCH] rip out x86_32 NUMA remapping code References: <20130131005616.1C79F411@kernel.stglabs.ibm.com> <510AE763.6090907@zytor.com> <510AE92B.8020605@zytor.com> In-Reply-To: X-Enigmail-Version: 1.5 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 01/31/2013 02:01 PM, Yinghai Lu wrote: > On Thu, Jan 31, 2013 at 1:59 PM, H. Peter Anvin wrote: >> On 01/31/2013 01:55 PM, Yinghai Lu wrote: >>> On Thu, Jan 31, 2013 at 1:51 PM, H. Peter Anvin wrote: >>>> I get a build failure on i386 allyesconfig with this patch: >>>> >>>> arch/x86/power/built-in.o: In function `swsusp_arch_resume': >>>> (.text+0x14e4): undefined reference to `resume_map_numa_kva' >>>> >>>> It looks trivial to fix up; I assume resume_map_numa_kva() just goes >>>> away like it does in the non-NUMA case, but it would be nice if you >>>> could confirm that. >>> >>> the patches does not seem to complete. >>> >>> at least, it does not remove >>> >>> arch/x86/mm/numa.c: nd = alloc_remap(nid, nd_size); >>> >> >> ... which will just return NULL because alloc_remap turns into an inline >> just returning NULL. So the compiled code is correct, but the source >> code is needlessly messy. > > yes... > > It still left #ifdefCONFIG_HAVE_ARCH_ALLOC_REMAP there. > > #ifdef CONFIG_HAVE_ARCH_ALLOC_REMAP > extern void *alloc_remap(int nid, unsigned long size); > #else > static inline void *alloc_remap(int nid, unsigned long size) > { > return NULL; > } > #endif /* CONFIG_HAVE_ARCH_ALLOC_REMAP */ > > should throw them all away. > That is arch-independent code, and the tile architecture still uses it. Makes one wonder how much it will get tested going forward, especially with the x86-32 implementation clearly lacking in that department. -hpa