mirror of https://gitee.com/openkylin/linux.git
cpumask: convert for_each_cpumask() with for_each_cpu()
Adapt new API fashion. Signed-off-by: KOSAKI Motohiro <kosaki.motohiro@jp.fujitsu.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
parent
32e107f71e
commit
95918f4a72
|
@ -30,7 +30,7 @@ int __any_online_cpu(const cpumask_t *mask)
|
|||
{
|
||||
int cpu;
|
||||
|
||||
for_each_cpu_mask(cpu, *mask) {
|
||||
for_each_cpu(cpu, mask) {
|
||||
if (cpu_online(cpu))
|
||||
break;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue