Lines Matching full:startup
183 int (*startup)(unsigned int cpu),
188 int (*startup)(unsigned int cpu),
195 * @startup: startup callback function
198 * Installs the callback functions and invokes the startup callback on
203 int (*startup)(unsigned int cpu), in cpuhp_setup_state()
206 return __cpuhp_setup_state(state, name, true, startup, teardown, false); in cpuhp_setup_state()
211 int (*startup)(unsigned int cpu), in cpuhp_setup_state_cpuslocked()
214 return __cpuhp_setup_state_cpuslocked(state, name, true, startup, in cpuhp_setup_state_cpuslocked()
223 * @startup: startup callback function
231 int (*startup)(unsigned int cpu), in cpuhp_setup_state_nocalls()
234 return __cpuhp_setup_state(state, name, false, startup, teardown, in cpuhp_setup_state_nocalls()
240 int (*startup)(unsigned int cpu), in cpuhp_setup_state_nocalls_cpuslocked()
243 return __cpuhp_setup_state_cpuslocked(state, name, false, startup, in cpuhp_setup_state_nocalls_cpuslocked()
251 * @startup: startup callback function
261 int (*startup)(unsigned int cpu, in cpuhp_setup_state_multi()
267 (void *) startup, in cpuhp_setup_state_multi()
277 * cpuhp_state_add_instance - Add an instance for a state and invoke startup
282 * Installs the instance for the @state and invokes the startup callback on
294 * invoking the startup callback.