mirror of
https://github.com/adulau/aha.git
synced 2024-12-28 11:46:19 +00:00
vmemmap: warn about page_structs with remote distance
It's insufficient to simply compare node ids when warning about offnode page_structs since it's possible to still have local affinity. Acked-by: Christoph Lameter <cl@linux-foundation.org> Signed-off-by: David Rientjes <rientjes@google.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
parent
0aedadf91a
commit
b41ad14c30
1 changed files with 1 additions and 1 deletions
|
@ -64,7 +64,7 @@ void __meminit vmemmap_verify(pte_t *pte, int node,
|
||||||
unsigned long pfn = pte_pfn(*pte);
|
unsigned long pfn = pte_pfn(*pte);
|
||||||
int actual_node = early_pfn_to_nid(pfn);
|
int actual_node = early_pfn_to_nid(pfn);
|
||||||
|
|
||||||
if (actual_node != node)
|
if (node_distance(actual_node, node) > LOCAL_DISTANCE)
|
||||||
printk(KERN_WARNING "[%lx-%lx] potential offnode "
|
printk(KERN_WARNING "[%lx-%lx] potential offnode "
|
||||||
"page_structs\n", start, end - 1);
|
"page_structs\n", start, end - 1);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue