Lines Matching full:startup
121 * @startup: Startup function of the step
132 } startup; member
155 return bringup ? !step->startup.single : !step->teardown.single; in cpuhp_step_empty()
192 cb = bringup ? step->startup.single : step->teardown.single; in cpuhp_invoke_callback()
199 cbm = bringup ? step->startup.multi : step->teardown.multi; in cpuhp_invoke_callback()
233 cbm = !bringup ? step->startup.multi : step->teardown.multi; in cpuhp_invoke_callback()
863 * startup in cpuhp_online_idle() which allows to avoid in bringup_cpu()
1036 * Execute teardown/startup callbacks on the plugged cpu. Also used to invoke
1221 * startup or the teardown callback of the affected state.
1862 * sends the startup IPI to the APs. The APs proceed through the low level
1866 * This avoids waiting for each AP to respond to the startup IPI in
2087 .startup.single = NULL,
2093 .startup.single = smpboot_create_threads,
2099 .startup.single = perf_event_init_cpu,
2104 .startup.single = random_prepare_cpu,
2109 .startup.single = workqueue_prepare_cpu,
2114 .startup.single = hrtimers_prepare_cpu,
2119 .startup.single = smpcfd_prepare_cpu,
2124 .startup.single = relay_prepare_cpu,
2129 .startup.single = slab_prepare_cpu,
2134 .startup.single = rcutree_prepare_cpu,
2144 .startup.single = timers_prepare_cpu,
2155 .startup.single = cpuhp_kick_ap_alive,
2164 .startup.single = cpuhp_bringup_ap,
2174 .startup.single = bringup_cpu,
2194 .startup.single = sched_cpu_starting,
2199 .startup.single = NULL,
2204 .startup.single = NULL,
2209 .startup.single = hrtimers_cpu_starting,
2224 .startup.single = NULL,
2231 .startup.single = NULL,
2238 .startup.single = smpboot_unpark_threads,
2243 .startup.single = irq_affinity_online_cpu,
2248 .startup.single = perf_event_init_cpu,
2253 .startup.single = lockup_detector_online_cpu,
2258 .startup.single = workqueue_online_cpu,
2263 .startup.single = random_online_cpu,
2268 .startup.single = rcutree_online_cpu,
2280 .startup.single = sched_cpu_activate,
2288 .startup.single = NULL,
2333 int (*startup)(unsigned int cpu), in cpuhp_store_callbacks()
2361 sp->startup.single = startup; in cpuhp_store_callbacks()
2375 * Call the startup/teardown function for a step either on the AP or
2424 /* Did we invoke the startup call on that cpu ? */ in cpuhp_rollback_install()
2446 if (!invoke || !sp->startup.multi) in __cpuhp_state_add_instance_cpuslocked()
2450 * Try to call the startup callback for each present cpu in __cpuhp_state_add_instance_cpuslocked()
2491 * @invoke: If true, the startup function is invoked for cpus where
2493 * @startup: startup callback function
2507 int (*startup)(unsigned int cpu), in __cpuhp_setup_state_cpuslocked()
2521 ret = cpuhp_store_callbacks(state, name, startup, teardown, in __cpuhp_setup_state_cpuslocked()
2530 if (ret || !invoke || !startup) in __cpuhp_setup_state_cpuslocked()
2534 * Try to call the startup callback for each present cpu in __cpuhp_setup_state_cpuslocked()
2566 int (*startup)(unsigned int cpu), in __cpuhp_setup_state()
2573 ret = __cpuhp_setup_state_cpuslocked(state, name, invoke, startup, in __cpuhp_setup_state()
2863 if (!sp->startup.single && !sp->teardown.single) in fail_store()