Lines Matching refs:startup

120  * @startup:	Startup function of the step
131 } startup;
154 return bringup ? !step->startup.single : !step->teardown.single;
191 cb = bringup ? step->startup.single : step->teardown.single;
198 cbm = bringup ? step->startup.multi : step->teardown.multi;
232 cbm = !bringup ? step->startup.multi : step->teardown.multi;
862 * startup in cpuhp_online_idle() which allows to avoid
1035 * Execute teardown/startup callbacks on the plugged cpu. Also used to invoke
1220 * 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
2084 .startup.single = NULL,
2090 .startup.single = smpboot_create_threads,
2096 .startup.single = perf_event_init_cpu,
2101 .startup.single = random_prepare_cpu,
2106 .startup.single = workqueue_prepare_cpu,
2111 .startup.single = hrtimers_prepare_cpu,
2116 .startup.single = smpcfd_prepare_cpu,
2121 .startup.single = relay_prepare_cpu,
2126 .startup.single = rcutree_prepare_cpu,
2136 .startup.single = timers_prepare_cpu,
2147 .startup.single = cpuhp_kick_ap_alive,
2156 .startup.single = cpuhp_bringup_ap,
2166 .startup.single = bringup_cpu,
2186 .startup.single = sched_cpu_starting,
2191 .startup.single = NULL,
2196 .startup.single = NULL,
2201 .startup.single = NULL,
2206 .startup.single = NULL,
2220 .startup.single = NULL,
2227 .startup.single = NULL,
2234 .startup.single = smpboot_unpark_threads,
2239 .startup.single = irq_affinity_online_cpu,
2244 .startup.single = perf_event_init_cpu,
2249 .startup.single = lockup_detector_online_cpu,
2254 .startup.single = workqueue_online_cpu,
2259 .startup.single = random_online_cpu,
2264 .startup.single = rcutree_online_cpu,
2276 .startup.single = sched_cpu_activate,
2284 .startup.single = NULL,
2329 int (*startup)(unsigned int cpu),
2357 sp->startup.single = startup;
2371 * Call the startup/teardown function for a step either on the AP or
2420 /* Did we invoke the startup call on that cpu ? */
2442 if (!invoke || !sp->startup.multi)
2446 * Try to call the startup callback for each present cpu
2487 * @invoke: If true, the startup function is invoked for cpus where
2489 * @startup: startup callback function
2503 int (*startup)(unsigned int cpu),
2517 ret = cpuhp_store_callbacks(state, name, startup, teardown,
2526 if (ret || !invoke || !startup)
2530 * Try to call the startup callback for each present cpu
2562 int (*startup)(unsigned int cpu),
2569 ret = __cpuhp_setup_state_cpuslocked(state, name, invoke, startup,
2849 if (!sp->startup.single && !sp->teardown.single)