Lines Matching refs:func
34 smp_call_func_t func; member
51 int smp_call_function_single(int cpuid, smp_call_func_t func, void *info,
57 void on_each_cpu(smp_call_func_t func, void *info, int wait);
63 void on_each_cpu_mask(const struct cpumask *mask, smp_call_func_t func,
71 void on_each_cpu_cond(smp_cond_func_t cond_func, smp_call_func_t func,
74 void on_each_cpu_cond_mask(smp_cond_func_t cond_func, smp_call_func_t func,
121 void smp_call_function(smp_call_func_t func, void *info, int wait);
123 smp_call_func_t func, void *info, bool wait);
126 smp_call_func_t func, void *info, int wait);
165 static inline void up_smp_call_function(smp_call_func_t func, void *info) in up_smp_call_function() argument
168 #define smp_call_function(func, info, wait) \ argument
169 (up_smp_call_function(func, info))
173 #define smp_call_function_many(mask, func, info, wait) \ argument
174 (up_smp_call_function(func, info))
178 smp_call_function_any(const struct cpumask *mask, smp_call_func_t func, in smp_call_function_any() argument
181 return smp_call_function_single(0, func, info, wait); in smp_call_function_any()
255 int smp_call_on_cpu(unsigned int cpu, int (*func)(void *), void *par,