Lines Matching full:invoke
156 * cpuhp_invoke_callback - Invoke the callbacks for a given state
207 /* State transition. Invoke on all instances */ in cpuhp_invoke_callback()
728 * Execute teardown/startup callbacks on the plugged cpu. Also used to invoke
806 /* Invoke a single callback on a remote cpu */
825 * we invoke the thread function directly. in cpuhp_invoke_ap_callback()
912 * removing of state callbacks and state instances, which invoke either the
1015 /* Invoke the former CPU_DYING callbacks */ in take_cpu_down()
1289 * notify_cpu_starting(cpu) - Invoke the callbacks on the starting CPU
1965 /* Did we invoke the startup call on that cpu ? */ in cpuhp_rollback_install()
1973 bool invoke) in __cpuhp_state_add_instance_cpuslocked() argument
1987 if (!invoke || !sp->startup.multi) in __cpuhp_state_add_instance_cpuslocked()
2017 bool invoke) in __cpuhp_state_add_instance() argument
2022 ret = __cpuhp_state_add_instance_cpuslocked(state, node, invoke); in __cpuhp_state_add_instance()
2032 * @invoke: If true, the startup function is invoked for cpus where
2047 const char *name, bool invoke, in __cpuhp_setup_state_cpuslocked() argument
2071 if (ret || !invoke || !startup) in __cpuhp_setup_state_cpuslocked()
2106 const char *name, bool invoke, in __cpuhp_setup_state() argument
2114 ret = __cpuhp_setup_state_cpuslocked(state, name, invoke, startup, in __cpuhp_setup_state()
2122 struct hlist_node *node, bool invoke) in __cpuhp_state_remove_instance() argument
2135 if (!invoke || !cpuhp_get_teardown_cb(state)) in __cpuhp_state_remove_instance()
2162 * @invoke: If true, the teardown function is invoked for cpus where
2169 void __cpuhp_remove_state_cpuslocked(enum cpuhp_state state, bool invoke) in __cpuhp_remove_state_cpuslocked() argument
2186 if (!invoke || !cpuhp_get_teardown_cb(state)) in __cpuhp_remove_state_cpuslocked()
2207 void __cpuhp_remove_state(enum cpuhp_state state, bool invoke) in __cpuhp_remove_state() argument
2210 __cpuhp_remove_state_cpuslocked(state, invoke); in __cpuhp_remove_state()
2647 * function by the reboot and kexec code which invoke it from in set_cpu_online()