1 2 3 4 5 6 7 8 9 10
/* * Generic entry point for the idle threads */ #include <linux/sched.h> #include <linux/cpu.h> void cpu_startup_entry(enum cpuhp_state state) { cpu_idle(); }