When CONFIG_HAVE_MEMORYLESS_NODES is enabled, cpu_to_node()/numa_node_id()
may return a node without memory, and later cause system failure/panic
when calling kmalloc_node() and friends with returned node id.
So use cpu_to_mem()/numa_mem_id() instead to get the nearest node with
memory for the/current cpu.

If CONFIG_HAVE_MEMORYLESS_NODES is disabled, cpu_to_mem()/numa_mem_id()
is the same as cpu_to_node()/numa_node_id().

Signed-off-by: Jiang Liu <[email protected]>
---
 kernel/sched/core.c     |    8 ++++----
 kernel/sched/deadline.c |    2 +-
 kernel/sched/fair.c     |    4 ++--
 kernel/sched/rt.c       |    6 +++---
 4 files changed, 10 insertions(+), 10 deletions(-)

diff --git a/kernel/sched/core.c b/kernel/sched/core.c
index 3bdf01b494fe..27e3af246310 100644
--- a/kernel/sched/core.c
+++ b/kernel/sched/core.c
@@ -5743,7 +5743,7 @@ build_overlap_sched_groups(struct sched_domain *sd, int 
cpu)
                        continue;
 
                sg = kzalloc_node(sizeof(struct sched_group) + cpumask_size(),
-                               GFP_KERNEL, cpu_to_node(cpu));
+                               GFP_KERNEL, cpu_to_mem(cpu));
 
                if (!sg)
                        goto fail;
@@ -6397,14 +6397,14 @@ static int __sdt_alloc(const struct cpumask *cpu_map)
                        struct sched_group_capacity *sgc;
 
                        sd = kzalloc_node(sizeof(struct sched_domain) + 
cpumask_size(),
-                                       GFP_KERNEL, cpu_to_node(j));
+                                       GFP_KERNEL, cpu_to_mem(j));
                        if (!sd)
                                return -ENOMEM;
 
                        *per_cpu_ptr(sdd->sd, j) = sd;
 
                        sg = kzalloc_node(sizeof(struct sched_group) + 
cpumask_size(),
-                                       GFP_KERNEL, cpu_to_node(j));
+                                       GFP_KERNEL, cpu_to_mem(j));
                        if (!sg)
                                return -ENOMEM;
 
@@ -6413,7 +6413,7 @@ static int __sdt_alloc(const struct cpumask *cpu_map)
                        *per_cpu_ptr(sdd->sg, j) = sg;
 
                        sgc = kzalloc_node(sizeof(struct sched_group_capacity) 
+ cpumask_size(),
-                                       GFP_KERNEL, cpu_to_node(j));
+                                       GFP_KERNEL, cpu_to_mem(j));
                        if (!sgc)
                                return -ENOMEM;
 
diff --git a/kernel/sched/deadline.c b/kernel/sched/deadline.c
index fc4f98b1258f..95104d363a8c 100644
--- a/kernel/sched/deadline.c
+++ b/kernel/sched/deadline.c
@@ -1559,7 +1559,7 @@ void init_sched_dl_class(void)
 
        for_each_possible_cpu(i)
                zalloc_cpumask_var_node(&per_cpu(local_cpu_mask_dl, i),
-                                       GFP_KERNEL, cpu_to_node(i));
+                                       GFP_KERNEL, cpu_to_mem(i));
 }
 
 #endif /* CONFIG_SMP */
diff --git a/kernel/sched/fair.c b/kernel/sched/fair.c
index fea7d3335e1f..26e75b8a52e6 100644
--- a/kernel/sched/fair.c
+++ b/kernel/sched/fair.c
@@ -7611,12 +7611,12 @@ int alloc_fair_sched_group(struct task_group *tg, 
struct task_group *parent)
 
        for_each_possible_cpu(i) {
                cfs_rq = kzalloc_node(sizeof(struct cfs_rq),
-                                     GFP_KERNEL, cpu_to_node(i));
+                                     GFP_KERNEL, cpu_to_mem(i));
                if (!cfs_rq)
                        goto err;
 
                se = kzalloc_node(sizeof(struct sched_entity),
-                                 GFP_KERNEL, cpu_to_node(i));
+                                 GFP_KERNEL, cpu_to_mem(i));
                if (!se)
                        goto err_free_rq;
 
diff --git a/kernel/sched/rt.c b/kernel/sched/rt.c
index a49083192c64..88d1315c6223 100644
--- a/kernel/sched/rt.c
+++ b/kernel/sched/rt.c
@@ -184,12 +184,12 @@ int alloc_rt_sched_group(struct task_group *tg, struct 
task_group *parent)
 
        for_each_possible_cpu(i) {
                rt_rq = kzalloc_node(sizeof(struct rt_rq),
-                                    GFP_KERNEL, cpu_to_node(i));
+                                    GFP_KERNEL, cpu_to_mem(i));
                if (!rt_rq)
                        goto err;
 
                rt_se = kzalloc_node(sizeof(struct sched_rt_entity),
-                                    GFP_KERNEL, cpu_to_node(i));
+                                    GFP_KERNEL, cpu_to_mem(i));
                if (!rt_se)
                        goto err_free_rq;
 
@@ -1945,7 +1945,7 @@ void __init init_sched_rt_class(void)
 
        for_each_possible_cpu(i) {
                zalloc_cpumask_var_node(&per_cpu(local_cpu_mask, i),
-                                       GFP_KERNEL, cpu_to_node(i));
+                                       GFP_KERNEL, cpu_to_mem(i));
        }
 }
 #endif /* CONFIG_SMP */
-- 
1.7.10.4

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [email protected]
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Reply via email to