Lines Matching full:startup
206 int (*startup)(unsigned int cpu),
211 int (*startup)(unsigned int cpu),
218 * @startup: startup callback function
221 * Installs the callback functions and invokes the startup callback on
226 int (*startup)(unsigned int cpu), in cpuhp_setup_state()
229 return __cpuhp_setup_state(state, name, true, startup, teardown, false); in cpuhp_setup_state()
234 int (*startup)(unsigned int cpu), in cpuhp_setup_state_cpuslocked()
237 return __cpuhp_setup_state_cpuslocked(state, name, true, startup, in cpuhp_setup_state_cpuslocked()
246 * @startup: startup callback function
254 int (*startup)(unsigned int cpu), in cpuhp_setup_state_nocalls()
257 return __cpuhp_setup_state(state, name, false, startup, teardown, in cpuhp_setup_state_nocalls()
263 int (*startup)(unsigned int cpu), in cpuhp_setup_state_nocalls_cpuslocked()
266 return __cpuhp_setup_state_cpuslocked(state, name, false, startup, in cpuhp_setup_state_nocalls_cpuslocked()
274 * @startup: startup callback function
284 int (*startup)(unsigned int cpu, in cpuhp_setup_state_multi()
290 (void *) startup, in cpuhp_setup_state_multi()
300 * cpuhp_state_add_instance - Add an instance for a state and invoke startup
305 * Installs the instance for the @state and invokes the startup callback on
317 * invoking the startup callback.