Home
last modified time | relevance | path

Searched refs:nr_calls (Results 1 – 5 of 5) sorted by relevance

/linux-4.4.14/kernel/
Dcpu_pm.c28 static int cpu_pm_notify(enum cpu_pm_event event, int nr_to_call, int *nr_calls) in cpu_pm_notify() argument
33 nr_to_call, nr_calls); in cpu_pm_notify()
100 int nr_calls; in cpu_pm_enter() local
104 ret = cpu_pm_notify(CPU_PM_ENTER, -1, &nr_calls); in cpu_pm_enter()
110 cpu_pm_notify(CPU_PM_ENTER_FAILED, nr_calls - 1, NULL); in cpu_pm_enter()
159 int nr_calls; in cpu_cluster_pm_enter() local
163 ret = cpu_pm_notify(CPU_CLUSTER_PM_ENTER, -1, &nr_calls); in cpu_cluster_pm_enter()
169 cpu_pm_notify(CPU_CLUSTER_PM_ENTER_FAILED, nr_calls - 1, NULL); in cpu_cluster_pm_enter()
Dnotifier.c76 int nr_to_call, int *nr_calls) in notifier_call_chain() argument
95 if (nr_calls) in notifier_call_chain()
96 (*nr_calls)++; in notifier_call_chain()
178 int nr_to_call, int *nr_calls) in __atomic_notifier_call_chain() argument
183 ret = notifier_call_chain(&nh->head, val, v, nr_to_call, nr_calls); in __atomic_notifier_call_chain()
306 int nr_to_call, int *nr_calls) in __blocking_notifier_call_chain() argument
318 nr_calls); in __blocking_notifier_call_chain()
392 int nr_to_call, int *nr_calls) in __raw_notifier_call_chain() argument
394 return notifier_call_chain(&nh->head, val, v, nr_to_call, nr_calls); in __raw_notifier_call_chain()
492 int nr_to_call, int *nr_calls) in __srcu_notifier_call_chain() argument
[all …]
Dcpu.c211 int *nr_calls) in __cpu_notify() argument
216 nr_calls); in __cpu_notify()
341 int err, nr_calls = 0; in _cpu_down() local
357 err = __cpu_notify(CPU_DOWN_PREPARE | mod, hcpu, -1, &nr_calls); in _cpu_down()
359 nr_calls--; in _cpu_down()
360 __cpu_notify(CPU_DOWN_FAILED | mod, hcpu, nr_calls, NULL); in _cpu_down()
488 int ret, nr_calls = 0; in _cpu_up() local
510 ret = __cpu_notify(CPU_UP_PREPARE | mod, hcpu, -1, &nr_calls); in _cpu_up()
512 nr_calls--; in _cpu_up()
530 __cpu_notify(CPU_UP_CANCELED | mod, hcpu, nr_calls, NULL); in _cpu_up()
/linux-4.4.14/include/linux/
Dnotifier.h143 unsigned long val, void *v, int nr_to_call, int *nr_calls);
147 unsigned long val, void *v, int nr_to_call, int *nr_calls);
151 unsigned long val, void *v, int nr_to_call, int *nr_calls);
155 unsigned long val, void *v, int nr_to_call, int *nr_calls);
/linux-4.4.14/arch/x86/include/asm/xen/
Dhypercall.h346 HYPERVISOR_multicall(void *call_list, uint32_t nr_calls) in HYPERVISOR_multicall() argument
348 return _hypercall2(int, multicall, call_list, nr_calls); in HYPERVISOR_multicall()