@@ -163,8 +163,7 @@ static void unmap_cpu_from_node(unsigned long cpu)if(cpumask_test_cpu(cpu,node_to_cpumask_map[node])){cpumask_clear_cpu(cpu,node_to_cpumask_map[node]);}else{-printk(KERN_ERR"WARNING: cpu %lu not found in node %d\n",-cpu,node);+pr_warn("WARNING: cpu %lu not found in node %d\n",cpu,node);}}#endif /* CONFIG_HOTPLUG_CPU || CONFIG_PPC_SPLPAR */
printk() in unmap_cpu_from_node() uses KERN_ERR message severity,
for a WARNING message. Change it to pr_warn().
Signed-off-by: Vipin K Parashar <redacted>
@@ -163,8 +163,7 @@ static void unmap_cpu_from_node(unsigned long cpu)if(cpumask_test_cpu(cpu,node_to_cpumask_map[node])){cpumask_clear_cpu(cpu,node_to_cpumask_map[node]);}else{-printk(KERN_ERR"WARNING: cpu %lu not found in node %d\n",-cpu,node);+pr_warn("WARNING: cpu %lu not found in node %d\n",cpu,node);}}#endif /* CONFIG_HOTPLUG_CPU || CONFIG_PPC_SPLPAR */
From: Vipin K Parashar <hidden> Date: 2018-05-30 06:43:35
Hi,
Any progress/update with this patch ?
Please do let know, if something more is needed here.
Regards,
Vipin
On Wednesday 14 March 2018 01:22 PM, Vipin K Parashar wrote:
quoted hunk
printk() in unmap_cpu_from_node() uses KERN_ERR message severity,
for a WARNING message. Change it to pr_warn().
Signed-off-by: Vipin K Parashar <redacted>
---
arch/powerpc/mm/numa.c | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
@@ -163,8 +163,7 @@ static void unmap_cpu_from_node(unsigned long cpu)if(cpumask_test_cpu(cpu,node_to_cpumask_map[node])){cpumask_clear_cpu(cpu,node_to_cpumask_map[node]);}else{-printk(KERN_ERR"WARNING: cpu %lu not found in node %d\n",-cpu,node);+pr_warn("WARNING: cpu %lu not found in node %d\n",cpu,node);}}#endif /* CONFIG_HOTPLUG_CPU || CONFIG_PPC_SPLPAR */
@@ -163,8 +163,7 @@ static void unmap_cpu_from_node(unsigned long cpu)if(cpumask_test_cpu(cpu,node_to_cpumask_map[node])){cpumask_clear_cpu(cpu,node_to_cpumask_map[node]);}else{-printk(KERN_ERR"WARNING: cpu %lu not found in node %d\n",-cpu,node);+pr_warn("WARNING: cpu %lu not found in node %d\n",cpu,node);}}
The full function is:
static void unmap_cpu_from_node(unsigned long cpu)
{
int node = numa_cpu_lookup_table[cpu];
dbg("removing cpu %lu from node %d\n", cpu, node);
if (cpumask_test_cpu(cpu, node_to_cpumask_map[node])) {
cpumask_clear_cpu(cpu, node_to_cpumask_map[node]);
} else {
printk(KERN_ERR "WARNING: cpu %lu not found in node %d\n",
cpu, node);
}
}
So we look up what node the CPU is on, and then we lookup the set of
CPUs on that node, and they don't match.
That seems like a bug, not a warning.
Have you looked at why we're seeing this warning? It seems like maybe
something else is going wrong to get us into this situation to begin
with.
If there's some good reason why this is happening, and it's truly
harmless, then we can just remove the printk() entirely.
cheers