dect
/
linux-2.6
Archived
13
0
Fork 0

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: Ingo Molnar <mingo@elte.hu>
This commit is contained in:
Ingo Molnar 2008-06-27 11:50:32 +02:00
parent 127a237a1f
commit ce0d1b6f73
1 changed files with 1 additions and 1 deletions

View File

@ -300,7 +300,7 @@ int smp_call_function_mask(cpumask_t mask, void (*func)(void *), void *info,
return 0;
else if (num_cpus == 1) {
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) {