Lines Matching refs:arg
19 typedef int (*cpu_stop_fn_t)(void *arg);
26 void *arg; member
30 int stop_one_cpu(unsigned int cpu, cpu_stop_fn_t fn, void *arg);
31 int stop_two_cpus(unsigned int cpu1, unsigned int cpu2, cpu_stop_fn_t fn, void *arg);
32 void stop_one_cpu_nowait(unsigned int cpu, cpu_stop_fn_t fn, void *arg,
34 int stop_cpus(const struct cpumask *cpumask, cpu_stop_fn_t fn, void *arg);
35 int try_stop_cpus(const struct cpumask *cpumask, cpu_stop_fn_t fn, void *arg);
46 void *arg; member
49 static inline int stop_one_cpu(unsigned int cpu, cpu_stop_fn_t fn, void *arg) in stop_one_cpu() argument
54 ret = fn(arg); in stop_one_cpu()
64 stwork->fn(stwork->arg); in stop_one_cpu_nowait_workfn()
69 cpu_stop_fn_t fn, void *arg, in stop_one_cpu_nowait() argument
75 work_buf->arg = arg; in stop_one_cpu_nowait()
81 cpu_stop_fn_t fn, void *arg) in stop_cpus() argument
84 return stop_one_cpu(raw_smp_processor_id(), fn, arg); in stop_cpus()
89 cpu_stop_fn_t fn, void *arg) in try_stop_cpus() argument
91 return stop_cpus(cpumask, fn, arg); in try_stop_cpus()