提交 8fcb2312 编写于 作者: O Olof Johansson 提交者: Linus Torvalds

kernel/sched/psi.c: simplify cgroup_move_task()

The existing code triggered an invalid warning about 'rq' possibly being
used uninitialized.  Instead of doing the silly warning suppression by
initializa it to NULL, refactor the code to bail out early instead.

Warning was:

  kernel/sched/psi.c: In function `cgroup_move_task':
  kernel/sched/psi.c:639:13: warning: `rq' may be used uninitialized in this function [-Wmaybe-uninitialized]

Link: http://lkml.kernel.org/r/20181103183339.8669-1-olof@lixom.net
Fixes: 2ce7135a ("psi: cgroup support")
Signed-off-by: NOlof Johansson <olof@lixom.net>
Reviewed-by: NAndrew Morton <akpm@linux-foundation.org>
Acked-by: NJohannes Weiner <hannes@cmpxchg.org>
Cc: Ingo Molnar <mingo@redhat.com>
Cc: Peter Zijlstra <peterz@infradead.org>
Signed-off-by: NAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: NLinus Torvalds <torvalds@linux-foundation.org>
上级 ca0246bb
...@@ -633,12 +633,19 @@ void psi_cgroup_free(struct cgroup *cgroup) ...@@ -633,12 +633,19 @@ void psi_cgroup_free(struct cgroup *cgroup)
*/ */
void cgroup_move_task(struct task_struct *task, struct css_set *to) void cgroup_move_task(struct task_struct *task, struct css_set *to)
{ {
bool move_psi = !psi_disabled;
unsigned int task_flags = 0; unsigned int task_flags = 0;
struct rq_flags rf; struct rq_flags rf;
struct rq *rq; struct rq *rq;
if (move_psi) { if (psi_disabled) {
/*
* Lame to do this here, but the scheduler cannot be locked
* from the outside, so we move cgroups from inside sched/.
*/
rcu_assign_pointer(task->cgroups, to);
return;
}
rq = task_rq_lock(task, &rf); rq = task_rq_lock(task, &rf);
if (task_on_rq_queued(task)) if (task_on_rq_queued(task))
...@@ -651,20 +658,14 @@ void cgroup_move_task(struct task_struct *task, struct css_set *to) ...@@ -651,20 +658,14 @@ void cgroup_move_task(struct task_struct *task, struct css_set *to)
if (task_flags) if (task_flags)
psi_task_change(task, task_flags, 0); psi_task_change(task, task_flags, 0);
}
/* /* See comment above */
* Lame to do this here, but the scheduler cannot be locked
* from the outside, so we move cgroups from inside sched/.
*/
rcu_assign_pointer(task->cgroups, to); rcu_assign_pointer(task->cgroups, to);
if (move_psi) {
if (task_flags) if (task_flags)
psi_task_change(task, 0, task_flags); psi_task_change(task, 0, task_flags);
task_rq_unlock(rq, task, &rf); task_rq_unlock(rq, task, &rf);
}
} }
#endif /* CONFIG_CGROUPS */ #endif /* CONFIG_CGROUPS */
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册