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

	migration_init();
	spawn_ksoftirqd();
	if (!nosoftlockup)
		spawn_softlockup_task();
}
Beispiel #2
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 #3
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
    posix_cpu_thread_init();
    spawn_ksoftirqd();
    spawn_softlockup_task();
    spawn_desched_task();
}