cpuset: remove redundant check in cpuset_cpus_allowed_fallback()
task_cs() will never return NULL. Signed-off-by: Li Zefan <lizefan@huawei.com> Signed-off-by: Tejun Heo <tj@kernel.org>
This commit is contained in:
parent
d5c56ced77
commit
06d6b3cbdf
|
@ -2253,8 +2253,7 @@ void cpuset_cpus_allowed_fallback(struct task_struct *tsk)
|
||||||
|
|
||||||
rcu_read_lock();
|
rcu_read_lock();
|
||||||
cs = task_cs(tsk);
|
cs = task_cs(tsk);
|
||||||
if (cs)
|
do_set_cpus_allowed(tsk, cs->cpus_allowed);
|
||||||
do_set_cpus_allowed(tsk, cs->cpus_allowed);
|
|
||||||
rcu_read_unlock();
|
rcu_read_unlock();
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
Loading…
Reference in New Issue