]> bbs.cooldavid.org Git - net-next-2.6.git/blame - init/main.c
[POWERPC] Fix kernel stack allocation alignment
[net-next-2.6.git] / init / main.c
CommitLineData
1da177e4
LT
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
1da177e4
LT
12#include <linux/types.h>
13#include <linux/module.h>
14#include <linux/proc_fs.h>
1da177e4
LT
15#include <linux/kernel.h>
16#include <linux/syscalls.h>
17#include <linux/string.h>
18#include <linux/ctype.h>
19#include <linux/delay.h>
20#include <linux/utsname.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/hdreg.h>
26#include <linux/bootmem.h>
27#include <linux/tty.h>
28#include <linux/gfp.h>
29#include <linux/percpu.h>
30#include <linux/kmod.h>
31#include <linux/kernel_stat.h>
d7cd5611 32#include <linux/start_kernel.h>
1da177e4
LT
33#include <linux/security.h>
34#include <linux/workqueue.h>
35#include <linux/profile.h>
36#include <linux/rcupdate.h>
37#include <linux/moduleparam.h>
38#include <linux/kallsyms.h>
39#include <linux/writeback.h>
40#include <linux/cpu.h>
41#include <linux/cpuset.h>
ddbcc7e8 42#include <linux/cgroup.h>
1da177e4 43#include <linux/efi.h>
906568c9 44#include <linux/tick.h>
6168a702 45#include <linux/interrupt.h>
c757249a 46#include <linux/taskstats_kern.h>
ca74e92b 47#include <linux/delayacct.h>
1da177e4
LT
48#include <linux/unistd.h>
49#include <linux/rmap.h>
50#include <linux/mempolicy.h>
51#include <linux/key.h>
4552d5dc 52#include <linux/unwind.h>
b6cd0b77 53#include <linux/buffer_head.h>
9a11b49a 54#include <linux/debug_locks.h>
fbb9ce95 55#include <linux/lockdep.h>
84d73786 56#include <linux/pid_namespace.h>
1f21782e 57#include <linux/device.h>
73c27992 58#include <linux/kthread.h>
e6fe6649 59#include <linux/sched.h>
a1c9eea9 60#include <linux/signal.h>
1da177e4
LT
61
62#include <asm/io.h>
63#include <asm/bugs.h>
64#include <asm/setup.h>
a940199f 65#include <asm/sections.h>
37b73c82 66#include <asm/cacheflush.h>
1da177e4 67
1da177e4
LT
68#ifdef CONFIG_X86_LOCAL_APIC
69#include <asm/smp.h>
70#endif
71
72/*
69c99ac1
CQH
73 * This is one of the first .c files built. Error out early if we have compiler
74 * trouble.
1da177e4 75 */
1da177e4 76
f1a60dbf
AM
77#if __GNUC__ == 4 && __GNUC_MINOR__ == 1 && __GNUC_PATCHLEVEL__ == 0
78#warning gcc-4.1.0 is known to miscompile the kernel. A different compiler version is recommended.
79#endif
80
aae5f662 81static int kernel_init(void *);
1da177e4
LT
82
83extern void init_IRQ(void);
1da177e4
LT
84extern void fork_init(unsigned long);
85extern void mca_init(void);
86extern void sbus_init(void);
1da177e4
LT
87extern void pidhash_init(void);
88extern void pidmap_init(void);
89extern void prio_tree_init(void);
90extern void radix_tree_init(void);
91extern void free_initmem(void);
1da177e4
LT
92#ifdef CONFIG_ACPI
93extern void acpi_early_init(void);
94#else
95static inline void acpi_early_init(void) { }
96#endif
37b73c82
AV
97#ifndef CONFIG_DEBUG_RODATA
98static inline void mark_rodata_ro(void) { }
99#endif
1da177e4
LT
100
101#ifdef CONFIG_TC
102extern void tc_init(void);
103#endif
104
105enum system_states system_state;
106EXPORT_SYMBOL(system_state);
107
108/*
109 * Boot command-line arguments
110 */
111#define MAX_INIT_ARGS CONFIG_INIT_ENV_ARG_LIMIT
112#define MAX_INIT_ENVS CONFIG_INIT_ENV_ARG_LIMIT
113
114extern void time_init(void);
115/* Default late time init is NULL. archs can override this later. */
116void (*late_time_init)(void);
117extern void softirq_init(void);
118
30d7e0d4
ABL
119/* Untouched command line saved by arch-specific code. */
120char __initdata boot_command_line[COMMAND_LINE_SIZE];
121/* Untouched saved command line (eg. for /proc) */
122char *saved_command_line;
123/* Command line for parameter parsing */
124static char *static_command_line;
1da177e4
LT
125
126static char *execute_command;
ffdfc409 127static char *ramdisk_execute_command;
1da177e4 128
8b3b2955 129#ifdef CONFIG_SMP
1da177e4 130/* Setup configured maximum number of CPUs to activate */
ca74a6f8 131unsigned int __initdata setup_max_cpus = NR_CPUS;
7e96287d 132
1da177e4
LT
133/*
134 * Setup routine for controlling SMP activation
135 *
136 * Command-line option of "nosmp" or "maxcpus=0" will disable SMP
137 * activation entirely (the MPS table probe still happens, though).
138 *
139 * Command-line option of "maxcpus=<NUM>", where <NUM> is an integer
140 * greater than 0, limits the maximum number of CPUs activated in
141 * SMP mode to <NUM>.
142 */
61ec7567
LB
143#ifndef CONFIG_X86_IO_APIC
144static inline void disable_ioapic_setup(void) {};
145#endif
146
1da177e4
LT
147static int __init nosmp(char *str)
148{
ca74a6f8 149 setup_max_cpus = 0;
61ec7567 150 disable_ioapic_setup();
8b3b2955 151 return 0;
1da177e4
LT
152}
153
8b3b2955 154early_param("nosmp", nosmp);
1da177e4
LT
155
156static int __init maxcpus(char *str)
157{
ca74a6f8
AK
158 get_option(&str, &setup_max_cpus);
159 if (setup_max_cpus == 0)
61ec7567
LB
160 disable_ioapic_setup();
161
162 return 0;
1da177e4
LT
163}
164
81340977 165early_param("maxcpus", maxcpus);
8b3b2955 166#else
ca74a6f8 167#define setup_max_cpus NR_CPUS
8b3b2955
JB
168#endif
169
170/*
171 * If set, this is an indication to the drivers that reset the underlying
172 * device before going ahead with the initialization otherwise driver might
173 * rely on the BIOS and skip the reset operation.
174 *
175 * This is useful if kernel is booting in an unreliable environment.
176 * For ex. kdump situaiton where previous kernel has crashed, BIOS has been
177 * skipped and devices will be in unknown state.
178 */
179unsigned int reset_devices;
180EXPORT_SYMBOL(reset_devices);
1da177e4 181
7e96287d
VG
182static int __init set_reset_devices(char *str)
183{
184 reset_devices = 1;
185 return 1;
186}
187
188__setup("reset_devices", set_reset_devices);
189
1da177e4
LT
190static char * argv_init[MAX_INIT_ARGS+2] = { "init", NULL, };
191char * envp_init[MAX_INIT_ENVS+2] = { "HOME=/", "TERM=linux", NULL, };
192static const char *panic_later, *panic_param;
193
194extern struct obs_kernel_param __setup_start[], __setup_end[];
195
196static int __init obsolete_checksetup(char *line)
197{
198 struct obs_kernel_param *p;
33df0d19 199 int had_early_param = 0;
1da177e4
LT
200
201 p = __setup_start;
202 do {
203 int n = strlen(p->str);
204 if (!strncmp(line, p->str, n)) {
205 if (p->early) {
33df0d19
RR
206 /* Already done in parse_early_param?
207 * (Needs exact match on param part).
208 * Keep iterating, as we can have early
209 * params and __setups of same names 8( */
1da177e4 210 if (line[n] == '\0' || line[n] == '=')
33df0d19 211 had_early_param = 1;
1da177e4
LT
212 } else if (!p->setup_func) {
213 printk(KERN_WARNING "Parameter %s is obsolete,"
214 " ignored\n", p->str);
215 return 1;
216 } else if (p->setup_func(line + n))
217 return 1;
218 }
219 p++;
220 } while (p < __setup_end);
33df0d19
RR
221
222 return had_early_param;
1da177e4
LT
223}
224
225/*
226 * This should be approx 2 Bo*oMips to start (note initial shift), and will
227 * still work even if initially too large, it will just take slightly longer
228 */
229unsigned long loops_per_jiffy = (1<<12);
230
231EXPORT_SYMBOL(loops_per_jiffy);
232
233static int __init debug_kernel(char *str)
234{
1da177e4 235 console_loglevel = 10;
f6f21c81 236 return 0;
1da177e4
LT
237}
238
239static int __init quiet_kernel(char *str)
240{
1da177e4 241 console_loglevel = 4;
f6f21c81 242 return 0;
1da177e4
LT
243}
244
f6f21c81
YL
245early_param("debug", debug_kernel);
246early_param("quiet", quiet_kernel);
1da177e4
LT
247
248static int __init loglevel(char *str)
249{
250 get_option(&str, &console_loglevel);
d9d4fcfe 251 return 0;
1da177e4
LT
252}
253
f6f21c81 254early_param("loglevel", loglevel);
1da177e4
LT
255
256/*
257 * Unknown boot options get handed to init, unless they look like
258 * failed parameters
259 */
260static int __init unknown_bootoption(char *param, char *val)
261{
262 /* Change NUL term back to "=", to make "param" the whole string. */
263 if (val) {
264 /* param=val or param="val"? */
265 if (val == param+strlen(param)+1)
266 val[-1] = '=';
267 else if (val == param+strlen(param)+2) {
268 val[-2] = '=';
269 memmove(val-1, val, strlen(val)+1);
270 val--;
271 } else
272 BUG();
273 }
274
275 /* Handle obsolete-style parameters */
276 if (obsolete_checksetup(param))
277 return 0;
278
279 /*
211fee8a 280 * Preemptive maintenance for "why didn't my misspelled command
1da177e4
LT
281 * line work?"
282 */
283 if (strchr(param, '.') && (!val || strchr(param, '.') < val)) {
284 printk(KERN_ERR "Unknown boot option `%s': ignoring\n", param);
285 return 0;
286 }
287
288 if (panic_later)
289 return 0;
290
291 if (val) {
292 /* Environment option */
293 unsigned int i;
294 for (i = 0; envp_init[i]; i++) {
295 if (i == MAX_INIT_ENVS) {
296 panic_later = "Too many boot env vars at `%s'";
297 panic_param = param;
298 }
299 if (!strncmp(param, envp_init[i], val - param))
300 break;
301 }
302 envp_init[i] = param;
303 } else {
304 /* Command line option */
305 unsigned int i;
306 for (i = 0; argv_init[i]; i++) {
307 if (i == MAX_INIT_ARGS) {
308 panic_later = "Too many boot init vars at `%s'";
309 panic_param = param;
310 }
311 }
312 argv_init[i] = param;
313 }
314 return 0;
315}
316
12d6f21e
IM
317#ifdef CONFIG_DEBUG_PAGEALLOC
318int __read_mostly debug_pagealloc_enabled = 0;
319#endif
320
1da177e4
LT
321static int __init init_setup(char *str)
322{
323 unsigned int i;
324
325 execute_command = str;
326 /*
327 * In case LILO is going to boot us with default command line,
328 * it prepends "auto" before the whole cmdline which makes
329 * the shell think it should execute a script with such name.
330 * So we ignore all arguments entered _before_ init=... [MJ]
331 */
332 for (i = 1; i < MAX_INIT_ARGS; i++)
333 argv_init[i] = NULL;
334 return 1;
335}
336__setup("init=", init_setup);
337
ffdfc409
OJ
338static int __init rdinit_setup(char *str)
339{
340 unsigned int i;
341
342 ramdisk_execute_command = str;
343 /* See "auto" comment in init_setup */
344 for (i = 1; i < MAX_INIT_ARGS; i++)
345 argv_init[i] = NULL;
346 return 1;
347}
348__setup("rdinit=", rdinit_setup);
349
1da177e4
LT
350#ifndef CONFIG_SMP
351
352#ifdef CONFIG_X86_LOCAL_APIC
353static void __init smp_init(void)
354{
355 APIC_init_uniprocessor();
356}
357#else
358#define smp_init() do { } while (0)
359#endif
360
361static inline void setup_per_cpu_areas(void) { }
e0982e90 362static inline void setup_nr_cpu_ids(void) { }
1da177e4
LT
363static inline void smp_prepare_cpus(unsigned int maxcpus) { }
364
365#else
366
321a8e9d
MT
367#if NR_CPUS > BITS_PER_LONG
368cpumask_t cpu_mask_all __read_mostly = CPU_MASK_ALL;
369EXPORT_SYMBOL(cpu_mask_all);
370#endif
371
e0982e90
MT
372/* Setup number of possible processor ids */
373int nr_cpu_ids __read_mostly = NR_CPUS;
374EXPORT_SYMBOL(nr_cpu_ids);
375
376/* An arch may set nr_cpu_ids earlier if needed, so this would be redundant */
377static void __init setup_nr_cpu_ids(void)
378{
379 int cpu, highest_cpu = 0;
380
381 for_each_possible_cpu(cpu)
382 highest_cpu = cpu;
383
384 nr_cpu_ids = highest_cpu + 1;
385}
386
dd5af90a 387#ifndef CONFIG_HAVE_SETUP_PER_CPU_AREA
b73b459f 388unsigned long __per_cpu_offset[NR_CPUS] __read_mostly;
1da177e4
LT
389
390EXPORT_SYMBOL(__per_cpu_offset);
391
392static void __init setup_per_cpu_areas(void)
393{
394 unsigned long size, i;
395 char *ptr;
63872f87 396 unsigned long nr_possible_cpus = num_possible_cpus();
1da177e4
LT
397
398 /* Copy section for each CPU (we discard the original) */
b6e3590f
JF
399 size = ALIGN(PERCPU_ENOUGH_ROOM, PAGE_SIZE);
400 ptr = alloc_bootmem_pages(size * nr_possible_cpus);
1da177e4 401
0a945022 402 for_each_possible_cpu(i) {
1da177e4
LT
403 __per_cpu_offset[i] = ptr - __per_cpu_start;
404 memcpy(ptr, __per_cpu_start, __per_cpu_end - __per_cpu_start);
63872f87 405 ptr += size;
1da177e4
LT
406 }
407}
dd5af90a 408#endif /* CONFIG_HAVE_SETUP_PER_CPU_AREA */
1da177e4
LT
409
410/* Called by boot processor to activate the rest. */
411static void __init smp_init(void)
412{
53b8a315 413 unsigned int cpu;
1da177e4
LT
414
415 /* FIXME: This should be done in userspace --RR */
53b8a315 416 for_each_present_cpu(cpu) {
ca74a6f8 417 if (num_online_cpus() >= setup_max_cpus)
1da177e4 418 break;
53b8a315
CL
419 if (!cpu_online(cpu))
420 cpu_up(cpu);
1da177e4
LT
421 }
422
423 /* Any cleanup work */
424 printk(KERN_INFO "Brought up %ld CPUs\n", (long)num_online_cpus());
ca74a6f8 425 smp_cpus_done(setup_max_cpus);
1da177e4
LT
426}
427
428#endif
429
30d7e0d4
ABL
430/*
431 * We need to store the untouched command line for future reference.
432 * We also need to store the touched command line since the parameter
433 * parsing is performed in place, and we should allow a component to
434 * store reference of name/value for future reference.
435 */
436static void __init setup_command_line(char *command_line)
437{
438 saved_command_line = alloc_bootmem(strlen (boot_command_line)+1);
439 static_command_line = alloc_bootmem(strlen (command_line)+1);
440 strcpy (saved_command_line, boot_command_line);
441 strcpy (static_command_line, command_line);
442}
443
1da177e4
LT
444/*
445 * We need to finalize in a non-__init function or else race conditions
446 * between the root thread and the init thread may cause start_kernel to
447 * be reaped by free_initmem before the root thread has proceeded to
448 * cpu_idle.
449 *
450 * gcc-3.4 accidentally inlines this function, so use noinline.
451 */
452
92080309 453static void noinline __init_refok rest_init(void)
1da177e4
LT
454 __releases(kernel_lock)
455{
73c27992
EB
456 int pid;
457
aae5f662 458 kernel_thread(kernel_init, NULL, CLONE_FS | CLONE_SIGHAND);
1da177e4 459 numa_default_policy();
73c27992
EB
460 pid = kernel_thread(kthreadd, NULL, CLONE_FS | CLONE_FILES);
461 kthreadd_task = find_task_by_pid(pid);
1da177e4 462 unlock_kernel();
f340c0d1
IM
463
464 /*
465 * The boot idle thread must execute schedule()
1df21055 466 * at least once to get things moving:
f340c0d1 467 */
1df21055 468 init_idle_bootup_task(current);
5bfb5d69 469 preempt_enable_no_resched();
f340c0d1 470 schedule();
5bfb5d69 471 preempt_disable();
f340c0d1 472
5bfb5d69 473 /* Call into cpu_idle with preempt disabled */
1da177e4 474 cpu_idle();
1df21055 475}
1da177e4
LT
476
477/* Check for early params. */
478static int __init do_early_param(char *param, char *val)
479{
480 struct obs_kernel_param *p;
481
482 for (p = __setup_start; p < __setup_end; p++) {
18a8bd94
YL
483 if ((p->early && strcmp(param, p->str) == 0) ||
484 (strcmp(param, "console") == 0 &&
485 strcmp(p->str, "earlycon") == 0)
486 ) {
1da177e4
LT
487 if (p->setup_func(val) != 0)
488 printk(KERN_WARNING
489 "Malformed early option '%s'\n", param);
490 }
491 }
492 /* We accept everything at this stage. */
493 return 0;
494}
495
496/* Arch code calls this early on, or if not, just before other parsing. */
497void __init parse_early_param(void)
498{
499 static __initdata int done = 0;
500 static __initdata char tmp_cmdline[COMMAND_LINE_SIZE];
501
502 if (done)
503 return;
504
505 /* All fall through to do_early_param. */
30d7e0d4 506 strlcpy(tmp_cmdline, boot_command_line, COMMAND_LINE_SIZE);
1da177e4
LT
507 parse_args("early options", tmp_cmdline, NULL, 0, do_early_param);
508 done = 1;
509}
510
511/*
512 * Activate the first processor.
513 */
514
44fd2299
SS
515static void __init boot_cpu_init(void)
516{
517 int cpu = smp_processor_id();
518 /* Mark the boot cpu "present", "online" etc for SMP and UP case */
519 cpu_set(cpu, cpu_online_map);
520 cpu_set(cpu, cpu_present_map);
521 cpu_set(cpu, cpu_possible_map);
522}
523
033ab7f8
AM
524void __init __attribute__((weak)) smp_setup_processor_id(void)
525{
526}
527
8c9843e5
BH
528void __init __weak thread_info_cache_init(void)
529{
530}
531
1da177e4
LT
532asmlinkage void __init start_kernel(void)
533{
534 char * command_line;
535 extern struct kernel_param __start___param[], __stop___param[];
033ab7f8
AM
536
537 smp_setup_processor_id();
538
fbb9ce95
IM
539 /*
540 * Need to run as early as possible, to initialize the
541 * lockdep hash:
542 */
c9538ed4 543 unwind_init();
fbb9ce95 544 lockdep_init();
ddbcc7e8 545 cgroup_init_early();
fbb9ce95
IM
546
547 local_irq_disable();
548 early_boot_irqs_off();
243c7621 549 early_init_irq_lock_class();
fbb9ce95 550
1da177e4
LT
551/*
552 * Interrupts are still disabled. Do necessary setups, then
553 * enable them
554 */
555 lock_kernel();
906568c9 556 tick_init();
44fd2299 557 boot_cpu_init();
1da177e4
LT
558 page_address_init();
559 printk(KERN_NOTICE);
8993780a 560 printk(linux_banner);
1da177e4 561 setup_arch(&command_line);
30d7e0d4 562 setup_command_line(command_line);
690a973f 563 unwind_setup();
1da177e4 564 setup_per_cpu_areas();
e0982e90 565 setup_nr_cpu_ids();
44fd2299 566 smp_prepare_boot_cpu(); /* arch-specific boot-cpu hooks */
1da177e4
LT
567
568 /*
569 * Set up the scheduler prior starting any interrupts (such as the
570 * timer interrupt). Full topology setup happens at smp_init()
571 * time - but meanwhile we still have a functioning scheduler.
572 */
573 sched_init();
574 /*
575 * Disable preemption - early bootup scheduling is extremely
576 * fragile until we cpu_idle() for the first time.
577 */
578 preempt_disable();
579 build_all_zonelists();
580 page_alloc_init();
30d7e0d4 581 printk(KERN_NOTICE "Kernel command line: %s\n", boot_command_line);
1da177e4 582 parse_early_param();
30d7e0d4 583 parse_args("Booting kernel", static_command_line, __start___param,
1da177e4
LT
584 __stop___param - __start___param,
585 &unknown_bootoption);
c4a68306
AB
586 if (!irqs_disabled()) {
587 printk(KERN_WARNING "start_kernel(): bug: interrupts were "
588 "enabled *very* early, fixing it\n");
589 local_irq_disable();
590 }
1da177e4
LT
591 sort_main_extable();
592 trap_init();
593 rcu_init();
594 init_IRQ();
595 pidhash_init();
596 init_timers();
c0a31329 597 hrtimers_init();
1da177e4 598 softirq_init();
ad596171 599 timekeeping_init();
88fecaa2 600 time_init();
93e02814
HC
601 profile_init();
602 if (!irqs_disabled())
603 printk("start_kernel(): bug: interrupts were enabled early\n");
fbb9ce95 604 early_boot_irqs_on();
93e02814 605 local_irq_enable();
1da177e4
LT
606
607 /*
608 * HACK ALERT! This is early. We're enabling the console before
609 * we've done PCI setups etc, and console_init() must be aware of
610 * this. But we do want output early, in case something goes wrong.
611 */
612 console_init();
613 if (panic_later)
614 panic(panic_later, panic_param);
fbb9ce95
IM
615
616 lockdep_info();
617
9a11b49a
IM
618 /*
619 * Need to run this when irqs are enabled, because it wants
620 * to self-test [hard/soft]-irqs on/off lock inversion bugs
621 * too:
622 */
623 locking_selftest();
624
1da177e4
LT
625#ifdef CONFIG_BLK_DEV_INITRD
626 if (initrd_start && !initrd_below_start_ok &&
627 initrd_start < min_low_pfn << PAGE_SHIFT) {
628 printk(KERN_CRIT "initrd overwritten (0x%08lx < 0x%08lx) - "
629 "disabling it.\n",initrd_start,min_low_pfn << PAGE_SHIFT);
630 initrd_start = 0;
631 }
632#endif
633 vfs_caches_init_early();
c417f024 634 cpuset_init_early();
1da177e4 635 mem_init();
a03c2a48 636 enable_debug_pagealloc();
d221938c 637 cpu_hotplug_init();
1da177e4 638 kmem_cache_init();
e7c8d5c9 639 setup_per_cpu_pageset();
1da177e4
LT
640 numa_policy_init();
641 if (late_time_init)
642 late_time_init();
643 calibrate_delay();
644 pidmap_init();
645 pgtable_cache_init();
646 prio_tree_init();
647 anon_vma_init();
648#ifdef CONFIG_X86
649 if (efi_enabled)
650 efi_enter_virtual_mode();
651#endif
8c9843e5 652 thread_info_cache_init();
1da177e4
LT
653 fork_init(num_physpages);
654 proc_caches_init();
655 buffer_init();
656 unnamed_dev_init();
657 key_init();
658 security_init();
659 vfs_caches_init(num_physpages);
660 radix_tree_init();
661 signals_init();
662 /* rootfs populating might need page-writeback */
663 page_writeback_init();
664#ifdef CONFIG_PROC_FS
665 proc_root_init();
666#endif
ddbcc7e8 667 cgroup_init();
1da177e4 668 cpuset_init();
c757249a 669 taskstats_init_early();
ca74e92b 670 delayacct_init();
1da177e4
LT
671
672 check_bugs();
673
674 acpi_early_init(); /* before LAPIC and SMP init */
675
676 /* Do the rest non-__init'ed, we're now alive */
677 rest_init();
678}
679
680static int __initdata initcall_debug;
681
682static int __init initcall_debug_setup(char *str)
683{
684 initcall_debug = 1;
685 return 1;
686}
687__setup("initcall_debug", initcall_debug_setup);
688
1da177e4
LT
689extern initcall_t __initcall_start[], __initcall_end[];
690
691static void __init do_initcalls(void)
692{
693 initcall_t *call;
694 int count = preempt_count();
695
696 for (call = __initcall_start; call < __initcall_end; call++) {
8f0c45cd 697 ktime_t t0, t1, delta;
c1cda48a
AM
698 char *msg = NULL;
699 char msgbuf[40];
700 int result;
1da177e4
LT
701
702 if (initcall_debug) {
c1cda48a
AM
703 printk("Calling initcall 0x%p", *call);
704 print_fn_descriptor_symbol(": %s()",
705 (unsigned long) *call);
1da177e4 706 printk("\n");
8f0c45cd 707 t0 = ktime_get();
1da177e4
LT
708 }
709
c1cda48a 710 result = (*call)();
1da177e4 711
8f0c45cd
IM
712 if (initcall_debug) {
713 t1 = ktime_get();
714 delta = ktime_sub(t1, t0);
715
716 printk("initcall 0x%p", *call);
717 print_fn_descriptor_symbol(": %s()",
718 (unsigned long) *call);
719 printk(" returned %d.\n", result);
720
721 printk("initcall 0x%p ran for %Ld msecs: ",
722 *call, (unsigned long long)delta.tv64 >> 20);
723 print_fn_descriptor_symbol("%s()\n",
724 (unsigned long) *call);
725 }
726
f3a19cb4 727 if (result && result != -ENODEV && initcall_debug) {
c1cda48a
AM
728 sprintf(msgbuf, "error code %d", result);
729 msg = msgbuf;
730 }
1da177e4
LT
731 if (preempt_count() != count) {
732 msg = "preemption imbalance";
733 preempt_count() = count;
734 }
735 if (irqs_disabled()) {
736 msg = "disabled interrupts";
737 local_irq_enable();
738 }
739 if (msg) {
c1cda48a
AM
740 printk(KERN_WARNING "initcall at 0x%p", *call);
741 print_fn_descriptor_symbol(": %s()",
742 (unsigned long) *call);
743 printk(": returned with %s\n", msg);
1da177e4
LT
744 }
745 }
746
747 /* Make sure there is no pending stuff from the initcall sequence */
748 flush_scheduled_work();
749}
750
751/*
752 * Ok, the machine is now initialized. None of the devices
753 * have been touched yet, but the CPU subsystem is up and
754 * running, and memory and process management works.
755 *
756 * Now we can finally start doing some real work..
757 */
758static void __init do_basic_setup(void)
759{
760 /* drivers will send hotplug events */
761 init_workqueues();
762 usermodehelper_init();
763 driver_init();
b04c3afb 764 init_irq_proc();
1da177e4
LT
765 do_initcalls();
766}
767
97842216
DJ
768static int __initdata nosoftlockup;
769
770static int __init nosoftlockup_setup(char *str)
771{
772 nosoftlockup = 1;
773 return 1;
774}
775__setup("nosoftlockup", nosoftlockup_setup);
776
88d20328 777static void __init do_pre_smp_initcalls(void)
1da177e4
LT
778{
779 extern int spawn_ksoftirqd(void);
1da177e4
LT
780
781 migration_init();
1da177e4 782 spawn_ksoftirqd();
97842216
DJ
783 if (!nosoftlockup)
784 spawn_softlockup_task();
1da177e4
LT
785}
786
787static void run_init_process(char *init_filename)
788{
789 argv_init[0] = init_filename;
67608567 790 kernel_execve(init_filename, argv_init, envp_init);
1da177e4
LT
791}
792
ee5bfa64
VG
793/* This is a non __init function. Force it to be noinline otherwise gcc
794 * makes it inline to init() and it becomes part of init.text section
795 */
796static int noinline init_post(void)
797{
798 free_initmem();
799 unlock_kernel();
800 mark_rodata_ro();
801 system_state = SYSTEM_RUNNING;
802 numa_default_policy();
803
804 if (sys_open((const char __user *) "/dev/console", O_RDWR, 0) < 0)
805 printk(KERN_WARNING "Warning: unable to open an initial console.\n");
806
807 (void) sys_dup(0);
808 (void) sys_dup(0);
809
810 if (ramdisk_execute_command) {
811 run_init_process(ramdisk_execute_command);
812 printk(KERN_WARNING "Failed to execute %s\n",
813 ramdisk_execute_command);
814 }
815
816 /*
817 * We try each of these until one succeeds.
818 *
819 * The Bourne shell can be used instead of init if we are
820 * trying to recover a really broken machine.
821 */
822 if (execute_command) {
823 run_init_process(execute_command);
824 printk(KERN_WARNING "Failed to execute %s. Attempting "
825 "defaults...\n", execute_command);
826 }
827 run_init_process("/sbin/init");
828 run_init_process("/etc/init");
829 run_init_process("/bin/init");
830 run_init_process("/bin/sh");
831
832 panic("No init found. Try passing init= option to kernel.");
833}
834
aae5f662 835static int __init kernel_init(void * unused)
1da177e4
LT
836{
837 lock_kernel();
838 /*
839 * init can run on any cpu.
840 */
321a8e9d 841 set_cpus_allowed_ptr(current, CPU_MASK_ALL_PTR);
1da177e4
LT
842 /*
843 * Tell the world that we're going to be the grim
844 * reaper of innocent orphaned children.
845 *
846 * We don't want people to have to make incorrect
847 * assumptions about where in the task array this
848 * can be found.
849 */
84d73786 850 init_pid_ns.child_reaper = current;
1da177e4 851
9ec52099
CLG
852 cad_pid = task_pid(current);
853
ca74a6f8 854 smp_prepare_cpus(setup_max_cpus);
1da177e4
LT
855
856 do_pre_smp_initcalls();
857
1da177e4
LT
858 smp_init();
859 sched_init_smp();
860
861 cpuset_init_smp();
862
1da177e4
LT
863 do_basic_setup();
864
865 /*
866 * check if there is an early userspace init. If yes, let it do all
867 * the work
868 */
ffdfc409
OJ
869
870 if (!ramdisk_execute_command)
871 ramdisk_execute_command = "/init";
872
873 if (sys_access((const char __user *) ramdisk_execute_command, 0) != 0) {
874 ramdisk_execute_command = NULL;
1da177e4 875 prepare_namespace();
ffdfc409 876 }
1da177e4
LT
877
878 /*
879 * Ok, we have completed the initial bootup, and
880 * we're essentially up and running. Get rid of the
881 * initmem segments and start the user-mode stuff..
882 */
ee5bfa64
VG
883 init_post();
884 return 0;
1da177e4 885}