Beispiel #1
0
static void __init do_pre_smp_initcalls(void)
{
	extern int spawn_ksoftirqd(void);
#ifdef CONFIG_SMP
	extern int migration_init(void);

	migration_init();
#endif
	spawn_ksoftirqd();
	spawn_softlockup_task();
}
Beispiel #2
0
static void do_pre_smp_initcalls(void)
{
	extern int spawn_ksoftirqd(void);
	extern int spawn_desched_task(void);
#ifdef CONFIG_SMP
	extern int migration_init(void);

	migration_init();
#endif
	spawn_ksoftirqd();
	spawn_desched_task();
}