|
@@ -9855,13 +9855,15 @@ int alloc_fair_sched_group(struct task_group *tg, struct task_group *parent)
|
|
|
se = kzalloc_node(sizeof(struct sched_entity),
|
|
|
GFP_KERNEL, cpu_to_node(i));
|
|
|
if (!se)
|
|
|
- goto err;
|
|
|
+ goto err_free_rq;
|
|
|
|
|
|
init_tg_cfs_entry(tg, cfs_rq, se, i, 0, parent->se[i]);
|
|
|
}
|
|
|
|
|
|
return 1;
|
|
|
|
|
|
+ err_free_rq:
|
|
|
+ kfree(cfs_rq);
|
|
|
err:
|
|
|
return 0;
|
|
|
}
|
|
@@ -9943,13 +9945,15 @@ int alloc_rt_sched_group(struct task_group *tg, struct task_group *parent)
|
|
|
rt_se = kzalloc_node(sizeof(struct sched_rt_entity),
|
|
|
GFP_KERNEL, cpu_to_node(i));
|
|
|
if (!rt_se)
|
|
|
- goto err;
|
|
|
+ goto err_free_rq;
|
|
|
|
|
|
init_tg_rt_entry(tg, rt_rq, rt_se, i, 0, parent->rt_se[i]);
|
|
|
}
|
|
|
|
|
|
return 1;
|
|
|
|
|
|
+ err_free_rq:
|
|
|
+ kfree(rt_rq);
|
|
|
err:
|
|
|
return 0;
|
|
|
}
|