Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
sched: Fix incorrect usage of for_each_cpu_mask() in select_fallback_…
…rq() The function for_each_cpu_mask() expects a *pointer* to struct cpumask as its second argument, whereas select_fallback_rq() passes the value itself. And moreover, for_each_cpu_mask() has been marked as obselete in include/linux/cpumask.h. So move to the more appropriate for_each_cpu() variant. Reported-by: Sasha Levin <[email protected]> Signed-off-by: Srivatsa S. Bhat <[email protected]> Acked-by: Peter Zijlstra <[email protected]> Cc: Dave Jones <[email protected]> Cc: Liu Chuansheng <[email protected]> Cc: [email protected] Cc: [email protected] Link: http://lkml.kernel.org/r/[email protected] Signed-off-by: Ingo Molnar <[email protected]>
- Loading branch information