Lines Matching refs:func
143 smp_call_func_t func, void *info) in generic_exec_single() argument
154 func(info); in generic_exec_single()
165 csd->func = func; in generic_exec_single()
235 csd->func); in flush_smp_call_function_queue()
239 smp_call_func_t func = csd->func; in flush_smp_call_function_queue() local
244 func(info); in flush_smp_call_function_queue()
248 func(info); in flush_smp_call_function_queue()
269 int smp_call_function_single(int cpu, smp_call_func_t func, void *info, in smp_call_function_single() argument
308 err = generic_exec_single(cpu, csd, func, info); in smp_call_function_single()
348 err = generic_exec_single(cpu, csd, csd->func, csd->info); in smp_call_function_single_async()
370 smp_call_func_t func, void *info, int wait) in smp_call_function_any() argument
392 ret = smp_call_function_single(cpu, func, info, wait); in smp_call_function_any()
413 smp_call_func_t func, void *info, bool wait) in smp_call_function_many() argument
451 smp_call_function_single(cpu, func, info, wait); in smp_call_function_many()
471 csd->func = func; in smp_call_function_many()
506 void smp_call_function(smp_call_func_t func, void *info, int wait) in smp_call_function() argument
509 smp_call_function_many(cpu_online_mask, func, info, wait); in smp_call_function()
611 void on_each_cpu(void (*func) (void *info), void *info, int wait) in on_each_cpu()
616 smp_call_function(func, info, wait); in on_each_cpu()
618 func(info); in on_each_cpu()
640 void on_each_cpu_mask(const struct cpumask *mask, smp_call_func_t func, in on_each_cpu_mask() argument
645 smp_call_function_many(mask, func, info, wait); in on_each_cpu_mask()
649 func(info); in on_each_cpu_mask()
684 smp_call_func_t func, void *info, bool wait, in on_each_cpu_cond_mask() argument
697 on_each_cpu_mask(cpus, func, info, wait); in on_each_cpu_cond_mask()
708 ret = smp_call_function_single(cpu, func, in on_each_cpu_cond_mask()
718 smp_call_func_t func, void *info, bool wait, in on_each_cpu_cond() argument
721 on_each_cpu_cond_mask(cond_func, func, info, wait, gfp_flags, in on_each_cpu_cond()
780 int (*func)(void *); member
793 sscs->ret = sscs->func(sscs->data); in smp_call_on_cpu_callback()
800 int smp_call_on_cpu(unsigned int cpu, int (*func)(void *), void *par, bool phys) in smp_call_on_cpu()
804 .func = func, in smp_call_on_cpu()