Lines Matching full:startup
204 int (*startup)(unsigned int cpu),
209 int (*startup)(unsigned int cpu),
216 * @startup: startup callback function
219 * Installs the callback functions and invokes the startup callback on
224 int (*startup)(unsigned int cpu), in cpuhp_setup_state()
227 return __cpuhp_setup_state(state, name, true, startup, teardown, false); in cpuhp_setup_state()
232 int (*startup)(unsigned int cpu), in cpuhp_setup_state_cpuslocked()
235 return __cpuhp_setup_state_cpuslocked(state, name, true, startup, in cpuhp_setup_state_cpuslocked()
244 * @startup: startup callback function
252 int (*startup)(unsigned int cpu), in cpuhp_setup_state_nocalls()
255 return __cpuhp_setup_state(state, name, false, startup, teardown, in cpuhp_setup_state_nocalls()
261 int (*startup)(unsigned int cpu), in cpuhp_setup_state_nocalls_cpuslocked()
264 return __cpuhp_setup_state_cpuslocked(state, name, false, startup, in cpuhp_setup_state_nocalls_cpuslocked()
272 * @startup: startup callback function
282 int (*startup)(unsigned int cpu, in cpuhp_setup_state_multi()
288 (void *) startup, in cpuhp_setup_state_multi()
298 * cpuhp_state_add_instance - Add an instance for a state and invoke startup
303 * Installs the instance for the @state and invokes the startup callback on
315 * invoking the startup callback.