提交 ce0d1b6f 编写于 作者: I Ingo Molnar

fix: "smp_call_function: get rid of the unused nonatomic/retry argument"

fix:

kernel/smp.c: In function 'smp_call_function_mask':
kernel/smp.c:303: error: too many arguments to function 'smp_call_function_single'
Signed-off-by: NIngo Molnar <mingo@elte.hu>
上级 127a237a
...@@ -300,7 +300,7 @@ int smp_call_function_mask(cpumask_t mask, void (*func)(void *), void *info, ...@@ -300,7 +300,7 @@ int smp_call_function_mask(cpumask_t mask, void (*func)(void *), void *info,
return 0; return 0;
else if (num_cpus == 1) { else if (num_cpus == 1) {
cpu = first_cpu(mask); cpu = first_cpu(mask);
return smp_call_function_single(cpu, func, info, 0, wait); return smp_call_function_single(cpu, func, info, wait);
} }
if (!wait) { if (!wait) {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册