Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

alpha, mm: set all online nodes in N_NORMAL_MEMORY

For alpha, N_NORMAL_MEMORY represents all nodes that have present memory
since it does not support HIGHMEM. This patch sets the bit at the time
the node is initialized.

If N_NORMAL_MEMORY is not accurate, slub may encounter errors since it
uses this nodemask to setup per-cache kmem_cache_node data structures.

Signed-off-by: David Rientjes <rientjes@google.com>
Cc: Richard Henderson <rth@twiddle.net>
Cc: Ivan Kokshaysky <ink@jurassic.park.msu.ru>
Cc: Matt Turner <mattst88@gmail.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>

authored by

David Rientjes and committed by
Linus Torvalds
ad8b4b28 0c917313

+1
+1
arch/alpha/mm/numa.c
··· 313 313 zones_size[ZONE_DMA] = dma_local_pfn; 314 314 zones_size[ZONE_NORMAL] = (end_pfn - start_pfn) - dma_local_pfn; 315 315 } 316 + node_set_state(nid, N_NORMAL_MEMORY); 316 317 free_area_init_node(nid, zones_size, start_pfn, NULL); 317 318 } 318 319