Staging: Merge staging-next into Linus's tree
[sfrench/cifs-2.6.git] / init / main.c
1 /*
2  *  linux/init/main.c
3  *
4  *  Copyright (C) 1991, 1992  Linus Torvalds
5  *
6  *  GK 2/5/95  -  Changed to support mounting root fs via NFS
7  *  Added initrd & change_root: Werner Almesberger & Hans Lermen, Feb '96
8  *  Moan early if gcc is old, avoiding bogus kernels - Paul Gortmaker, May '96
9  *  Simplified starting of init:  Michael A. Griffith <grif@acm.org> 
10  */
11
12 #include <linux/types.h>
13 #include <linux/module.h>
14 #include <linux/proc_fs.h>
15 #include <linux/kernel.h>
16 #include <linux/syscalls.h>
17 #include <linux/stackprotector.h>
18 #include <linux/string.h>
19 #include <linux/ctype.h>
20 #include <linux/delay.h>
21 #include <linux/ioport.h>
22 #include <linux/init.h>
23 #include <linux/smp_lock.h>
24 #include <linux/initrd.h>
25 #include <linux/bootmem.h>
26 #include <linux/acpi.h>
27 #include <linux/tty.h>
28 #include <linux/percpu.h>
29 #include <linux/kmod.h>
30 #include <linux/vmalloc.h>
31 #include <linux/kernel_stat.h>
32 #include <linux/start_kernel.h>
33 #include <linux/security.h>
34 #include <linux/smp.h>
35 #include <linux/workqueue.h>
36 #include <linux/profile.h>
37 #include <linux/rcupdate.h>
38 #include <linux/moduleparam.h>
39 #include <linux/kallsyms.h>
40 #include <linux/writeback.h>
41 #include <linux/cpu.h>
42 #include <linux/cpuset.h>
43 #include <linux/cgroup.h>
44 #include <linux/efi.h>
45 #include <linux/tick.h>
46 #include <linux/interrupt.h>
47 #include <linux/taskstats_kern.h>
48 #include <linux/delayacct.h>
49 #include <linux/unistd.h>
50 #include <linux/rmap.h>
51 #include <linux/mempolicy.h>
52 #include <linux/key.h>
53 #include <linux/buffer_head.h>
54 #include <linux/page_cgroup.h>
55 #include <linux/debug_locks.h>
56 #include <linux/debugobjects.h>
57 #include <linux/lockdep.h>
58 #include <linux/kmemleak.h>
59 #include <linux/pid_namespace.h>
60 #include <linux/device.h>
61 #include <linux/kthread.h>
62 #include <linux/sched.h>
63 #include <linux/signal.h>
64 #include <linux/idr.h>
65 #include <linux/kgdb.h>
66 #include <linux/ftrace.h>
67 #include <linux/async.h>
68 #include <linux/kmemcheck.h>
69 #include <linux/kmemtrace.h>
70 #include <linux/sfi.h>
71 #include <linux/shmem_fs.h>
72 #include <linux/slab.h>
73 #include <trace/boot.h>
74
75 #include <asm/io.h>
76 #include <asm/bugs.h>
77 #include <asm/setup.h>
78 #include <asm/sections.h>
79 #include <asm/cacheflush.h>
80
81 #ifdef CONFIG_X86_LOCAL_APIC
82 #include <asm/smp.h>
83 #endif
84
85 static int kernel_init(void *);
86
87 extern void init_IRQ(void);
88 extern void fork_init(unsigned long);
89 extern void mca_init(void);
90 extern void sbus_init(void);
91 extern void prio_tree_init(void);
92 extern void radix_tree_init(void);
93 extern void free_initmem(void);
94 #ifndef CONFIG_DEBUG_RODATA
95 static inline void mark_rodata_ro(void) { }
96 #endif
97
98 #ifdef CONFIG_TC
99 extern void tc_init(void);
100 #endif
101
102 enum system_states system_state __read_mostly;
103 EXPORT_SYMBOL(system_state);
104
105 /*
106  * Boot command-line arguments
107  */
108 #define MAX_INIT_ARGS CONFIG_INIT_ENV_ARG_LIMIT
109 #define MAX_INIT_ENVS CONFIG_INIT_ENV_ARG_LIMIT
110
111 extern void time_init(void);
112 /* Default late time init is NULL. archs can override this later. */
113 void (*__initdata late_time_init)(void);
114 extern void softirq_init(void);
115
116 /* Untouched command line saved by arch-specific code. */
117 char __initdata boot_command_line[COMMAND_LINE_SIZE];
118 /* Untouched saved command line (eg. for /proc) */
119 char *saved_command_line;
120 /* Command line for parameter parsing */
121 static char *static_command_line;
122
123 static char *execute_command;
124 static char *ramdisk_execute_command;
125
126 #ifdef CONFIG_SMP
127 /* Setup configured maximum number of CPUs to activate */
128 unsigned int setup_max_cpus = NR_CPUS;
129 EXPORT_SYMBOL(setup_max_cpus);
130
131
132 /*
133  * Setup routine for controlling SMP activation
134  *
135  * Command-line option of "nosmp" or "maxcpus=0" will disable SMP
136  * activation entirely (the MPS table probe still happens, though).
137  *
138  * Command-line option of "maxcpus=<NUM>", where <NUM> is an integer
139  * greater than 0, limits the maximum number of CPUs activated in
140  * SMP mode to <NUM>.
141  */
142
143 void __weak arch_disable_smp_support(void) { }
144
145 static int __init nosmp(char *str)
146 {
147         setup_max_cpus = 0;
148         arch_disable_smp_support();
149
150         return 0;
151 }
152
153 early_param("nosmp", nosmp);
154
155 /* this is hard limit */
156 static int __init nrcpus(char *str)
157 {
158         int nr_cpus;
159
160         get_option(&str, &nr_cpus);
161         if (nr_cpus > 0 && nr_cpus < nr_cpu_ids)
162                 nr_cpu_ids = nr_cpus;
163
164         return 0;
165 }
166
167 early_param("nr_cpus", nrcpus);
168
169 static int __init maxcpus(char *str)
170 {
171         get_option(&str, &setup_max_cpus);
172         if (setup_max_cpus == 0)
173                 arch_disable_smp_support();
174
175         return 0;
176 }
177
178 early_param("maxcpus", maxcpus);
179 #else
180 static const unsigned int setup_max_cpus = NR_CPUS;
181 #endif
182
183 /*
184  * If set, this is an indication to the drivers that reset the underlying
185  * device before going ahead with the initialization otherwise driver might
186  * rely on the BIOS and skip the reset operation.
187  *
188  * This is useful if kernel is booting in an unreliable environment.
189  * For ex. kdump situaiton where previous kernel has crashed, BIOS has been
190  * skipped and devices will be in unknown state.
191  */
192 unsigned int reset_devices;
193 EXPORT_SYMBOL(reset_devices);
194
195 static int __init set_reset_devices(char *str)
196 {
197         reset_devices = 1;
198         return 1;
199 }
200
201 __setup("reset_devices", set_reset_devices);
202
203 static char * argv_init[MAX_INIT_ARGS+2] = { "init", NULL, };
204 char * envp_init[MAX_INIT_ENVS+2] = { "HOME=/", "TERM=linux", NULL, };
205 static const char *panic_later, *panic_param;
206
207 extern struct obs_kernel_param __setup_start[], __setup_end[];
208
209 static int __init obsolete_checksetup(char *line)
210 {
211         struct obs_kernel_param *p;
212         int had_early_param = 0;
213
214         p = __setup_start;
215         do {
216                 int n = strlen(p->str);
217                 if (!strncmp(line, p->str, n)) {
218                         if (p->early) {
219                                 /* Already done in parse_early_param?
220                                  * (Needs exact match on param part).
221                                  * Keep iterating, as we can have early
222                                  * params and __setups of same names 8( */
223                                 if (line[n] == '\0' || line[n] == '=')
224                                         had_early_param = 1;
225                         } else if (!p->setup_func) {
226                                 printk(KERN_WARNING "Parameter %s is obsolete,"
227                                        " ignored\n", p->str);
228                                 return 1;
229                         } else if (p->setup_func(line + n))
230                                 return 1;
231                 }
232                 p++;
233         } while (p < __setup_end);
234
235         return had_early_param;
236 }
237
238 /*
239  * This should be approx 2 Bo*oMips to start (note initial shift), and will
240  * still work even if initially too large, it will just take slightly longer
241  */
242 unsigned long loops_per_jiffy = (1<<12);
243
244 EXPORT_SYMBOL(loops_per_jiffy);
245
246 static int __init debug_kernel(char *str)
247 {
248         console_loglevel = 10;
249         return 0;
250 }
251
252 static int __init quiet_kernel(char *str)
253 {
254         console_loglevel = 4;
255         return 0;
256 }
257
258 early_param("debug", debug_kernel);
259 early_param("quiet", quiet_kernel);
260
261 static int __init loglevel(char *str)
262 {
263         get_option(&str, &console_loglevel);
264         return 0;
265 }
266
267 early_param("loglevel", loglevel);
268
269 /*
270  * Unknown boot options get handed to init, unless they look like
271  * unused parameters (modprobe will find them in /proc/cmdline).
272  */
273 static int __init unknown_bootoption(char *param, char *val)
274 {
275         /* Change NUL term back to "=", to make "param" the whole string. */
276         if (val) {
277                 /* param=val or param="val"? */
278                 if (val == param+strlen(param)+1)
279                         val[-1] = '=';
280                 else if (val == param+strlen(param)+2) {
281                         val[-2] = '=';
282                         memmove(val-1, val, strlen(val)+1);
283                         val--;
284                 } else
285                         BUG();
286         }
287
288         /* Handle obsolete-style parameters */
289         if (obsolete_checksetup(param))
290                 return 0;
291
292         /* Unused module parameter. */
293         if (strchr(param, '.') && (!val || strchr(param, '.') < val))
294                 return 0;
295
296         if (panic_later)
297                 return 0;
298
299         if (val) {
300                 /* Environment option */
301                 unsigned int i;
302                 for (i = 0; envp_init[i]; i++) {
303                         if (i == MAX_INIT_ENVS) {
304                                 panic_later = "Too many boot env vars at `%s'";
305                                 panic_param = param;
306                         }
307                         if (!strncmp(param, envp_init[i], val - param))
308                                 break;
309                 }
310                 envp_init[i] = param;
311         } else {
312                 /* Command line option */
313                 unsigned int i;
314                 for (i = 0; argv_init[i]; i++) {
315                         if (i == MAX_INIT_ARGS) {
316                                 panic_later = "Too many boot init vars at `%s'";
317                                 panic_param = param;
318                         }
319                 }
320                 argv_init[i] = param;
321         }
322         return 0;
323 }
324
325 #ifdef CONFIG_DEBUG_PAGEALLOC
326 int __read_mostly debug_pagealloc_enabled = 0;
327 #endif
328
329 static int __init init_setup(char *str)
330 {
331         unsigned int i;
332
333         execute_command = str;
334         /*
335          * In case LILO is going to boot us with default command line,
336          * it prepends "auto" before the whole cmdline which makes
337          * the shell think it should execute a script with such name.
338          * So we ignore all arguments entered _before_ init=... [MJ]
339          */
340         for (i = 1; i < MAX_INIT_ARGS; i++)
341                 argv_init[i] = NULL;
342         return 1;
343 }
344 __setup("init=", init_setup);
345
346 static int __init rdinit_setup(char *str)
347 {
348         unsigned int i;
349
350         ramdisk_execute_command = str;
351         /* See "auto" comment in init_setup */
352         for (i = 1; i < MAX_INIT_ARGS; i++)
353                 argv_init[i] = NULL;
354         return 1;
355 }
356 __setup("rdinit=", rdinit_setup);
357
358 #ifndef CONFIG_SMP
359
360 #ifdef CONFIG_X86_LOCAL_APIC
361 static void __init smp_init(void)
362 {
363         APIC_init_uniprocessor();
364 }
365 #else
366 #define smp_init()      do { } while (0)
367 #endif
368
369 static inline void setup_nr_cpu_ids(void) { }
370 static inline void smp_prepare_cpus(unsigned int maxcpus) { }
371
372 #else
373
374 /* Setup number of possible processor ids */
375 int nr_cpu_ids __read_mostly = NR_CPUS;
376 EXPORT_SYMBOL(nr_cpu_ids);
377
378 /* An arch may set nr_cpu_ids earlier if needed, so this would be redundant */
379 static void __init setup_nr_cpu_ids(void)
380 {
381         nr_cpu_ids = find_last_bit(cpumask_bits(cpu_possible_mask),NR_CPUS) + 1;
382 }
383
384 /* Called by boot processor to activate the rest. */
385 static void __init smp_init(void)
386 {
387         unsigned int cpu;
388
389         /* FIXME: This should be done in userspace --RR */
390         for_each_present_cpu(cpu) {
391                 if (num_online_cpus() >= setup_max_cpus)
392                         break;
393                 if (!cpu_online(cpu))
394                         cpu_up(cpu);
395         }
396
397         /* Any cleanup work */
398         printk(KERN_INFO "Brought up %ld CPUs\n", (long)num_online_cpus());
399         smp_cpus_done(setup_max_cpus);
400 }
401
402 #endif
403
404 /*
405  * We need to store the untouched command line for future reference.
406  * We also need to store the touched command line since the parameter
407  * parsing is performed in place, and we should allow a component to
408  * store reference of name/value for future reference.
409  */
410 static void __init setup_command_line(char *command_line)
411 {
412         saved_command_line = alloc_bootmem(strlen (boot_command_line)+1);
413         static_command_line = alloc_bootmem(strlen (command_line)+1);
414         strcpy (saved_command_line, boot_command_line);
415         strcpy (static_command_line, command_line);
416 }
417
418 /*
419  * We need to finalize in a non-__init function or else race conditions
420  * between the root thread and the init thread may cause start_kernel to
421  * be reaped by free_initmem before the root thread has proceeded to
422  * cpu_idle.
423  *
424  * gcc-3.4 accidentally inlines this function, so use noinline.
425  */
426
427 static __initdata DECLARE_COMPLETION(kthreadd_done);
428
429 static noinline void __init_refok rest_init(void)
430         __releases(kernel_lock)
431 {
432         int pid;
433
434         rcu_scheduler_starting();
435         /*
436          * We need to spawn init first so that it obtains pid 1, however
437          * the init task will end up wanting to create kthreads, which, if
438          * we schedule it before we create kthreadd, will OOPS.
439          */
440         kernel_thread(kernel_init, NULL, CLONE_FS | CLONE_SIGHAND);
441         numa_default_policy();
442         pid = kernel_thread(kthreadd, NULL, CLONE_FS | CLONE_FILES);
443         rcu_read_lock();
444         kthreadd_task = find_task_by_pid_ns(pid, &init_pid_ns);
445         rcu_read_unlock();
446         complete(&kthreadd_done);
447         unlock_kernel();
448
449         /*
450          * The boot idle thread must execute schedule()
451          * at least once to get things moving:
452          */
453         init_idle_bootup_task(current);
454         preempt_enable_no_resched();
455         schedule();
456         preempt_disable();
457
458         /* Call into cpu_idle with preempt disabled */
459         cpu_idle();
460 }
461
462 /* Check for early params. */
463 static int __init do_early_param(char *param, char *val)
464 {
465         struct obs_kernel_param *p;
466
467         for (p = __setup_start; p < __setup_end; p++) {
468                 if ((p->early && strcmp(param, p->str) == 0) ||
469                     (strcmp(param, "console") == 0 &&
470                      strcmp(p->str, "earlycon") == 0)
471                 ) {
472                         if (p->setup_func(val) != 0)
473                                 printk(KERN_WARNING
474                                        "Malformed early option '%s'\n", param);
475                 }
476         }
477         /* We accept everything at this stage. */
478         return 0;
479 }
480
481 void __init parse_early_options(char *cmdline)
482 {
483         parse_args("early options", cmdline, NULL, 0, do_early_param);
484 }
485
486 /* Arch code calls this early on, or if not, just before other parsing. */
487 void __init parse_early_param(void)
488 {
489         static __initdata int done = 0;
490         static __initdata char tmp_cmdline[COMMAND_LINE_SIZE];
491
492         if (done)
493                 return;
494
495         /* All fall through to do_early_param. */
496         strlcpy(tmp_cmdline, boot_command_line, COMMAND_LINE_SIZE);
497         parse_early_options(tmp_cmdline);
498         done = 1;
499 }
500
501 /*
502  *      Activate the first processor.
503  */
504
505 static void __init boot_cpu_init(void)
506 {
507         int cpu = smp_processor_id();
508         /* Mark the boot cpu "present", "online" etc for SMP and UP case */
509         set_cpu_online(cpu, true);
510         set_cpu_active(cpu, true);
511         set_cpu_present(cpu, true);
512         set_cpu_possible(cpu, true);
513 }
514
515 void __init __weak smp_setup_processor_id(void)
516 {
517 }
518
519 void __init __weak thread_info_cache_init(void)
520 {
521 }
522
523 /*
524  * Set up kernel memory allocators
525  */
526 static void __init mm_init(void)
527 {
528         /*
529          * page_cgroup requires countinous pages as memmap
530          * and it's bigger than MAX_ORDER unless SPARSEMEM.
531          */
532         page_cgroup_init_flatmem();
533         mem_init();
534         kmem_cache_init();
535         percpu_init_late();
536         pgtable_cache_init();
537         vmalloc_init();
538 }
539
540 asmlinkage void __init start_kernel(void)
541 {
542         char * command_line;
543         extern struct kernel_param __start___param[], __stop___param[];
544
545         smp_setup_processor_id();
546
547         /*
548          * Need to run as early as possible, to initialize the
549          * lockdep hash:
550          */
551         lockdep_init();
552         debug_objects_early_init();
553
554         /*
555          * Set up the the initial canary ASAP:
556          */
557         boot_init_stack_canary();
558
559         cgroup_init_early();
560
561         local_irq_disable();
562         early_boot_irqs_off();
563         early_init_irq_lock_class();
564
565 /*
566  * Interrupts are still disabled. Do necessary setups, then
567  * enable them
568  */
569         lock_kernel();
570         tick_init();
571         boot_cpu_init();
572         page_address_init();
573         printk(KERN_NOTICE "%s", linux_banner);
574         setup_arch(&command_line);
575         mm_init_owner(&init_mm, &init_task);
576         setup_command_line(command_line);
577         setup_nr_cpu_ids();
578         setup_per_cpu_areas();
579         smp_prepare_boot_cpu(); /* arch-specific boot-cpu hooks */
580
581         build_all_zonelists(NULL);
582         page_alloc_init();
583
584         printk(KERN_NOTICE "Kernel command line: %s\n", boot_command_line);
585         parse_early_param();
586         parse_args("Booting kernel", static_command_line, __start___param,
587                    __stop___param - __start___param,
588                    &unknown_bootoption);
589         /*
590          * These use large bootmem allocations and must precede
591          * kmem_cache_init()
592          */
593         pidhash_init();
594         vfs_caches_init_early();
595         sort_main_extable();
596         trap_init();
597         mm_init();
598         /*
599          * Set up the scheduler prior starting any interrupts (such as the
600          * timer interrupt). Full topology setup happens at smp_init()
601          * time - but meanwhile we still have a functioning scheduler.
602          */
603         sched_init();
604         /*
605          * Disable preemption - early bootup scheduling is extremely
606          * fragile until we cpu_idle() for the first time.
607          */
608         preempt_disable();
609         if (!irqs_disabled()) {
610                 printk(KERN_WARNING "start_kernel(): bug: interrupts were "
611                                 "enabled *very* early, fixing it\n");
612                 local_irq_disable();
613         }
614         rcu_init();
615         radix_tree_init();
616         /* init some links before init_ISA_irqs() */
617         early_irq_init();
618         init_IRQ();
619         prio_tree_init();
620         init_timers();
621         hrtimers_init();
622         softirq_init();
623         timekeeping_init();
624         time_init();
625         profile_init();
626         if (!irqs_disabled())
627                 printk(KERN_CRIT "start_kernel(): bug: interrupts were "
628                                  "enabled early\n");
629         early_boot_irqs_on();
630         local_irq_enable();
631
632         /* Interrupts are enabled now so all GFP allocations are safe. */
633         gfp_allowed_mask = __GFP_BITS_MASK;
634
635         kmem_cache_init_late();
636
637         /*
638          * HACK ALERT! This is early. We're enabling the console before
639          * we've done PCI setups etc, and console_init() must be aware of
640          * this. But we do want output early, in case something goes wrong.
641          */
642         console_init();
643         if (panic_later)
644                 panic(panic_later, panic_param);
645
646         lockdep_info();
647
648         /*
649          * Need to run this when irqs are enabled, because it wants
650          * to self-test [hard/soft]-irqs on/off lock inversion bugs
651          * too:
652          */
653         locking_selftest();
654
655 #ifdef CONFIG_BLK_DEV_INITRD
656         if (initrd_start && !initrd_below_start_ok &&
657             page_to_pfn(virt_to_page((void *)initrd_start)) < min_low_pfn) {
658                 printk(KERN_CRIT "initrd overwritten (0x%08lx < 0x%08lx) - "
659                     "disabling it.\n",
660                     page_to_pfn(virt_to_page((void *)initrd_start)),
661                     min_low_pfn);
662                 initrd_start = 0;
663         }
664 #endif
665         page_cgroup_init();
666         enable_debug_pagealloc();
667         kmemtrace_init();
668         kmemleak_init();
669         debug_objects_mem_init();
670         idr_init_cache();
671         setup_per_cpu_pageset();
672         numa_policy_init();
673         if (late_time_init)
674                 late_time_init();
675         sched_clock_init();
676         calibrate_delay();
677         pidmap_init();
678         anon_vma_init();
679 #ifdef CONFIG_X86
680         if (efi_enabled)
681                 efi_enter_virtual_mode();
682 #endif
683         thread_info_cache_init();
684         cred_init();
685         fork_init(totalram_pages);
686         proc_caches_init();
687         buffer_init();
688         key_init();
689         security_init();
690         dbg_late_init();
691         vfs_caches_init(totalram_pages);
692         signals_init();
693         /* rootfs populating might need page-writeback */
694         page_writeback_init();
695 #ifdef CONFIG_PROC_FS
696         proc_root_init();
697 #endif
698         cgroup_init();
699         cpuset_init();
700         taskstats_init_early();
701         delayacct_init();
702
703         check_bugs();
704
705         acpi_early_init(); /* before LAPIC and SMP init */
706         sfi_init_late();
707
708         ftrace_init();
709
710         /* Do the rest non-__init'ed, we're now alive */
711         rest_init();
712 }
713
714 /* Call all constructor functions linked into the kernel. */
715 static void __init do_ctors(void)
716 {
717 #ifdef CONFIG_CONSTRUCTORS
718         ctor_fn_t *fn = (ctor_fn_t *) __ctors_start;
719
720         for (; fn < (ctor_fn_t *) __ctors_end; fn++)
721                 (*fn)();
722 #endif
723 }
724
725 int initcall_debug;
726 core_param(initcall_debug, initcall_debug, bool, 0644);
727
728 static char msgbuf[64];
729 static struct boot_trace_call call;
730 static struct boot_trace_ret ret;
731
732 int do_one_initcall(initcall_t fn)
733 {
734         int count = preempt_count();
735         ktime_t calltime, delta, rettime;
736
737         if (initcall_debug) {
738                 call.caller = task_pid_nr(current);
739                 printk("calling  %pF @ %i\n", fn, call.caller);
740                 calltime = ktime_get();
741                 trace_boot_call(&call, fn);
742                 enable_boot_trace();
743         }
744
745         ret.result = fn();
746
747         if (initcall_debug) {
748                 disable_boot_trace();
749                 rettime = ktime_get();
750                 delta = ktime_sub(rettime, calltime);
751                 ret.duration = (unsigned long long) ktime_to_ns(delta) >> 10;
752                 trace_boot_ret(&ret, fn);
753                 printk("initcall %pF returned %d after %Ld usecs\n", fn,
754                         ret.result, ret.duration);
755         }
756
757         msgbuf[0] = 0;
758
759         if (ret.result && ret.result != -ENODEV && initcall_debug)
760                 sprintf(msgbuf, "error code %d ", ret.result);
761
762         if (preempt_count() != count) {
763                 strlcat(msgbuf, "preemption imbalance ", sizeof(msgbuf));
764                 preempt_count() = count;
765         }
766         if (irqs_disabled()) {
767                 strlcat(msgbuf, "disabled interrupts ", sizeof(msgbuf));
768                 local_irq_enable();
769         }
770         if (msgbuf[0]) {
771                 printk("initcall %pF returned with %s\n", fn, msgbuf);
772         }
773
774         return ret.result;
775 }
776
777
778 extern initcall_t __initcall_start[], __initcall_end[], __early_initcall_end[];
779
780 static void __init do_initcalls(void)
781 {
782         initcall_t *fn;
783
784         for (fn = __early_initcall_end; fn < __initcall_end; fn++)
785                 do_one_initcall(*fn);
786
787         /* Make sure there is no pending stuff from the initcall sequence */
788         flush_scheduled_work();
789 }
790
791 /*
792  * Ok, the machine is now initialized. None of the devices
793  * have been touched yet, but the CPU subsystem is up and
794  * running, and memory and process management works.
795  *
796  * Now we can finally start doing some real work..
797  */
798 static void __init do_basic_setup(void)
799 {
800         init_workqueues();
801         cpuset_init_smp();
802         usermodehelper_init();
803         init_tmpfs();
804         driver_init();
805         init_irq_proc();
806         do_ctors();
807         do_initcalls();
808 }
809
810 static void __init do_pre_smp_initcalls(void)
811 {
812         initcall_t *fn;
813
814         for (fn = __initcall_start; fn < __early_initcall_end; fn++)
815                 do_one_initcall(*fn);
816 }
817
818 static void run_init_process(char *init_filename)
819 {
820         argv_init[0] = init_filename;
821         kernel_execve(init_filename, argv_init, envp_init);
822 }
823
824 /* This is a non __init function. Force it to be noinline otherwise gcc
825  * makes it inline to init() and it becomes part of init.text section
826  */
827 static noinline int init_post(void)
828         __releases(kernel_lock)
829 {
830         /* need to finish all async __init code before freeing the memory */
831         async_synchronize_full();
832         free_initmem();
833         unlock_kernel();
834         mark_rodata_ro();
835         system_state = SYSTEM_RUNNING;
836         numa_default_policy();
837
838
839         current->signal->flags |= SIGNAL_UNKILLABLE;
840
841         if (ramdisk_execute_command) {
842                 run_init_process(ramdisk_execute_command);
843                 printk(KERN_WARNING "Failed to execute %s\n",
844                                 ramdisk_execute_command);
845         }
846
847         /*
848          * We try each of these until one succeeds.
849          *
850          * The Bourne shell can be used instead of init if we are
851          * trying to recover a really broken machine.
852          */
853         if (execute_command) {
854                 run_init_process(execute_command);
855                 printk(KERN_WARNING "Failed to execute %s.  Attempting "
856                                         "defaults...\n", execute_command);
857         }
858         run_init_process("/sbin/init");
859         run_init_process("/etc/init");
860         run_init_process("/bin/init");
861         run_init_process("/bin/sh");
862
863         panic("No init found.  Try passing init= option to kernel. "
864               "See Linux Documentation/init.txt for guidance.");
865 }
866
867 static int __init kernel_init(void * unused)
868 {
869         /*
870          * Wait until kthreadd is all set-up.
871          */
872         wait_for_completion(&kthreadd_done);
873         lock_kernel();
874
875         /*
876          * init can allocate pages on any node
877          */
878         set_mems_allowed(node_states[N_HIGH_MEMORY]);
879         /*
880          * init can run on any cpu.
881          */
882         set_cpus_allowed_ptr(current, cpu_all_mask);
883         /*
884          * Tell the world that we're going to be the grim
885          * reaper of innocent orphaned children.
886          *
887          * We don't want people to have to make incorrect
888          * assumptions about where in the task array this
889          * can be found.
890          */
891         init_pid_ns.child_reaper = current;
892
893         cad_pid = task_pid(current);
894
895         smp_prepare_cpus(setup_max_cpus);
896
897         do_pre_smp_initcalls();
898         start_boot_trace();
899
900         smp_init();
901         sched_init_smp();
902
903         do_basic_setup();
904
905         /* Open the /dev/console on the rootfs, this should never fail */
906         if (sys_open((const char __user *) "/dev/console", O_RDWR, 0) < 0)
907                 printk(KERN_WARNING "Warning: unable to open an initial console.\n");
908
909         (void) sys_dup(0);
910         (void) sys_dup(0);
911         /*
912          * check if there is an early userspace init.  If yes, let it do all
913          * the work
914          */
915
916         if (!ramdisk_execute_command)
917                 ramdisk_execute_command = "/init";
918
919         if (sys_access((const char __user *) ramdisk_execute_command, 0) != 0) {
920                 ramdisk_execute_command = NULL;
921                 prepare_namespace();
922         }
923
924         /*
925          * Ok, we have completed the initial bootup, and
926          * we're essentially up and running. Get rid of the
927          * initmem segments and start the user-mode stuff..
928          */
929
930         init_post();
931         return 0;
932 }