Hi Andrew, On 04/09/2013 04:55 AM, Andrew Morton wrote: > On Mon, 8 Apr 2013 11:40:11 -0700 Yinghai Lu <yinghai@xxxxxxxxxx> wrote: > >> On Mon, Apr 8, 2013 at 2:56 AM, Lin Feng <linfeng@xxxxxxxxxxxxxx> wrote: >>> In hot add node(memory) case, vmemmap pages are always allocated from other >>> node, >> >> that is broken, and should be fixed. >> vmemmap should be on local node even for hot add node. >> > > That would be nice. > > I don't see much value in the added warnings, really. Because there's > nothing the user can *do* about them, apart from a) stop using NUMA, b) > stop using memory hotplug, c) become a kernel MM developer or d) switch > to Windows. > > I agree that we can't do anything helpful to response to such warnings for the moment, but maybe someone can at least take your c) measure if it's what he really cares. ;-) This patch sent because we found that on a old kernel we get such warnings but we don't on latest kernel, it appears that it has been fixed by someone but in fact it is due to sizeof(struct page) is 64bytes aligned now but not on the old kernel. Now the struct pages for a section is always 2MB in size, every time we populate vmemmap for a section we get a new pmd, so the vmemmap_verify() check is just ignored. Such phenomenon is misleading. struct page { ... } #ifdef CONFIG_HAVE_ALIGNED_STRUCT_PAGE __aligned(2 * sizeof(unsigned long)) #endif ; Anyway the current logic for vmemmap_verify() is broken :( thanks, linfeng -- To unsubscribe, send a message with 'unsubscribe linux-mm' in the body to majordomo@xxxxxxxxx. For more info on Linux MM, see: http://www.linux-mm.org/ . Don't email: <a href=mailto:"dont@xxxxxxxxx"> email@xxxxxxxxx </a>