Commit b678c91a authored by Thomas Gleixner's avatar Thomas Gleixner

Revert "x86/mm/numa: Remove numa_nodemask_from_meminfo()"

This reverts commit 474aeffd due to testing
failures.
Reported-by: default avatar"Kirill A. Shutemov" <kirill@shutemov.name>
Signed-off-by: default avatarThomas Gleixner <tglx@linutronix.de>
Cc: Wei Yang <richard.weiyang@gmail.com>
Cc: Borislav Petkov <bp@suse.de>
Link: https://lkml.kernel.org/r/20170406124459.dwn5zhpr2xqg3lqm@node.shutemov.name
parent 1d33b219
...@@ -314,6 +314,20 @@ int __init numa_cleanup_meminfo(struct numa_meminfo *mi) ...@@ -314,6 +314,20 @@ int __init numa_cleanup_meminfo(struct numa_meminfo *mi)
return 0; return 0;
} }
/*
* Set nodes, which have memory in @mi, in *@nodemask.
*/
static void __init numa_nodemask_from_meminfo(nodemask_t *nodemask,
const struct numa_meminfo *mi)
{
int i;
for (i = 0; i < ARRAY_SIZE(mi->blk); i++)
if (mi->blk[i].start != mi->blk[i].end &&
mi->blk[i].nid != NUMA_NO_NODE)
node_set(mi->blk[i].nid, *nodemask);
}
/** /**
* numa_reset_distance - Reset NUMA distance table * numa_reset_distance - Reset NUMA distance table
* *
...@@ -333,12 +347,16 @@ void __init numa_reset_distance(void) ...@@ -333,12 +347,16 @@ void __init numa_reset_distance(void)
static int __init numa_alloc_distance(void) static int __init numa_alloc_distance(void)
{ {
nodemask_t nodes_parsed;
size_t size; size_t size;
int i, j, cnt = 0; int i, j, cnt = 0;
u64 phys; u64 phys;
/* size the new table and allocate it */ /* size the new table and allocate it */
for_each_node_mask(i, numa_nodes_parsed) nodes_parsed = numa_nodes_parsed;
numa_nodemask_from_meminfo(&nodes_parsed, &numa_meminfo);
for_each_node_mask(i, nodes_parsed)
cnt = i; cnt = i;
cnt++; cnt++;
size = cnt * cnt * sizeof(numa_distance[0]); size = cnt * cnt * sizeof(numa_distance[0]);
...@@ -517,6 +535,7 @@ static int __init numa_register_memblks(struct numa_meminfo *mi) ...@@ -517,6 +535,7 @@ static int __init numa_register_memblks(struct numa_meminfo *mi)
/* Account for nodes with cpus and no memory */ /* Account for nodes with cpus and no memory */
node_possible_map = numa_nodes_parsed; node_possible_map = numa_nodes_parsed;
numa_nodemask_from_meminfo(&node_possible_map, mi);
if (WARN_ON(nodes_empty(node_possible_map))) if (WARN_ON(nodes_empty(node_possible_map)))
return -EINVAL; return -EINVAL;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment