Lines Matching refs:func
19 smp_call_func_t func; member
27 int smp_call_function_single(int cpuid, smp_call_func_t func, void *info,
33 int on_each_cpu(smp_call_func_t func, void *info, int wait);
39 void on_each_cpu_mask(const struct cpumask *mask, smp_call_func_t func,
48 smp_call_func_t func, void *info, bool wait,
95 int smp_call_function(smp_call_func_t func, void *info, int wait);
97 smp_call_func_t func, void *info, bool wait);
100 smp_call_func_t func, void *info, int wait);
131 static inline int up_smp_call_function(smp_call_func_t func, void *info) in up_smp_call_function() argument
135 #define smp_call_function(func, info, wait) \ argument
136 (up_smp_call_function(func, info))
140 #define smp_call_function_many(mask, func, info, wait) \ argument
141 (up_smp_call_function(func, info))
145 smp_call_function_any(const struct cpumask *mask, smp_call_func_t func, in smp_call_function_any() argument
148 return smp_call_function_single(0, func, info, wait); in smp_call_function_any()