Lines Matching full:startup
200 int (*startup)(unsigned int cpu),
205 int (*startup)(unsigned int cpu),
212 * @startup: startup callback function
215 * Installs the callback functions and invokes the startup callback on
220 int (*startup)(unsigned int cpu), in cpuhp_setup_state()
223 return __cpuhp_setup_state(state, name, true, startup, teardown, false); in cpuhp_setup_state()
228 int (*startup)(unsigned int cpu), in cpuhp_setup_state_cpuslocked()
231 return __cpuhp_setup_state_cpuslocked(state, name, true, startup, in cpuhp_setup_state_cpuslocked()
240 * @startup: startup callback function
248 int (*startup)(unsigned int cpu), in cpuhp_setup_state_nocalls()
251 return __cpuhp_setup_state(state, name, false, startup, teardown, in cpuhp_setup_state_nocalls()
257 int (*startup)(unsigned int cpu), in cpuhp_setup_state_nocalls_cpuslocked()
260 return __cpuhp_setup_state_cpuslocked(state, name, false, startup, in cpuhp_setup_state_nocalls_cpuslocked()
268 * @startup: startup callback function
278 int (*startup)(unsigned int cpu, in cpuhp_setup_state_multi()
284 (void *) startup, in cpuhp_setup_state_multi()
294 * cpuhp_state_add_instance - Add an instance for a state and invoke startup
299 * Installs the instance for the @state and invokes the startup callback on
311 * invoking the startup callback.