diff options
Diffstat (limited to 'init')
-rw-r--r-- | init/Kconfig | 170 | ||||
-rw-r--r-- | init/Makefile | 8 | ||||
-rw-r--r-- | init/calibrate.c | 24 | ||||
-rw-r--r-- | init/do_mounts.c | 1 | ||||
-rw-r--r-- | init/do_mounts_initrd.c | 4 | ||||
-rw-r--r-- | init/do_mounts_rd.c | 1 | ||||
-rw-r--r-- | init/initramfs.c | 25 | ||||
-rw-r--r-- | init/main.c | 65 | ||||
-rw-r--r-- | init/version.c | 4 |
9 files changed, 174 insertions, 128 deletions
diff --git a/init/Kconfig b/init/Kconfig index eb4b33725db1..eb77e8ccde1c 100644 --- a/init/Kconfig +++ b/init/Kconfig | |||
@@ -115,10 +115,13 @@ config HAVE_KERNEL_BZIP2 | |||
115 | config HAVE_KERNEL_LZMA | 115 | config HAVE_KERNEL_LZMA |
116 | bool | 116 | bool |
117 | 117 | ||
118 | config HAVE_KERNEL_LZO | ||
119 | bool | ||
120 | |||
118 | choice | 121 | choice |
119 | prompt "Kernel compression mode" | 122 | prompt "Kernel compression mode" |
120 | default KERNEL_GZIP | 123 | default KERNEL_GZIP |
121 | depends on HAVE_KERNEL_GZIP || HAVE_KERNEL_BZIP2 || HAVE_KERNEL_LZMA | 124 | depends on HAVE_KERNEL_GZIP || HAVE_KERNEL_BZIP2 || HAVE_KERNEL_LZMA || HAVE_KERNEL_LZO |
122 | help | 125 | help |
123 | The linux kernel is a kind of self-extracting executable. | 126 | The linux kernel is a kind of self-extracting executable. |
124 | Several compression algorithms are available, which differ | 127 | Several compression algorithms are available, which differ |
@@ -141,9 +144,8 @@ config KERNEL_GZIP | |||
141 | bool "Gzip" | 144 | bool "Gzip" |
142 | depends on HAVE_KERNEL_GZIP | 145 | depends on HAVE_KERNEL_GZIP |
143 | help | 146 | help |
144 | The old and tried gzip compression. Its compression ratio is | 147 | The old and tried gzip compression. It provides a good balance |
145 | the poorest among the 3 choices; however its speed (both | 148 | between compression ratio and decompression speed. |
146 | compression and decompression) is the fastest. | ||
147 | 149 | ||
148 | config KERNEL_BZIP2 | 150 | config KERNEL_BZIP2 |
149 | bool "Bzip2" | 151 | bool "Bzip2" |
@@ -164,6 +166,14 @@ config KERNEL_LZMA | |||
164 | two. Compression is slowest. The kernel size is about 33% | 166 | two. Compression is slowest. The kernel size is about 33% |
165 | smaller with LZMA in comparison to gzip. | 167 | smaller with LZMA in comparison to gzip. |
166 | 168 | ||
169 | config KERNEL_LZO | ||
170 | bool "LZO" | ||
171 | depends on HAVE_KERNEL_LZO | ||
172 | help | ||
173 | Its compression ratio is the poorest among the 4. The kernel | ||
174 | size is about about 10% bigger than gzip; however its speed | ||
175 | (both compression and decompression) is the fastest. | ||
176 | |||
167 | endchoice | 177 | endchoice |
168 | 178 | ||
169 | config SWAP | 179 | config SWAP |
@@ -334,6 +344,15 @@ config TREE_PREEMPT_RCU | |||
334 | is also required. It also scales down nicely to | 344 | is also required. It also scales down nicely to |
335 | smaller systems. | 345 | smaller systems. |
336 | 346 | ||
347 | config TINY_RCU | ||
348 | bool "UP-only small-memory-footprint RCU" | ||
349 | depends on !SMP | ||
350 | help | ||
351 | This option selects the RCU implementation that is | ||
352 | designed for UP systems from which real-time response | ||
353 | is not required. This option greatly reduces the | ||
354 | memory footprint of RCU. | ||
355 | |||
337 | endchoice | 356 | endchoice |
338 | 357 | ||
339 | config RCU_TRACE | 358 | config RCU_TRACE |
@@ -377,6 +396,22 @@ config RCU_FANOUT_EXACT | |||
377 | 396 | ||
378 | Say N if unsure. | 397 | Say N if unsure. |
379 | 398 | ||
399 | config RCU_FAST_NO_HZ | ||
400 | bool "Accelerate last non-dyntick-idle CPU's grace periods" | ||
401 | depends on TREE_RCU && NO_HZ && SMP | ||
402 | default n | ||
403 | help | ||
404 | This option causes RCU to attempt to accelerate grace periods | ||
405 | in order to allow the final CPU to enter dynticks-idle state | ||
406 | more quickly. On the other hand, this option increases the | ||
407 | overhead of the dynticks-idle checking, particularly on systems | ||
408 | with large numbers of CPUs. | ||
409 | |||
410 | Say Y if energy efficiency is critically important, particularly | ||
411 | if you have relatively few CPUs. | ||
412 | |||
413 | Say N if you are unsure. | ||
414 | |||
380 | config TREE_RCU_TRACE | 415 | config TREE_RCU_TRACE |
381 | def_bool RCU_TRACE && ( TREE_RCU || TREE_PREEMPT_RCU ) | 416 | def_bool RCU_TRACE && ( TREE_RCU || TREE_PREEMPT_RCU ) |
382 | select DEBUG_FS | 417 | select DEBUG_FS |
@@ -426,59 +461,9 @@ config LOG_BUF_SHIFT | |||
426 | config HAVE_UNSTABLE_SCHED_CLOCK | 461 | config HAVE_UNSTABLE_SCHED_CLOCK |
427 | bool | 462 | bool |
428 | 463 | ||
429 | config GROUP_SCHED | ||
430 | bool "Group CPU scheduler" | ||
431 | depends on EXPERIMENTAL | ||
432 | default n | ||
433 | help | ||
434 | This feature lets CPU scheduler recognize task groups and control CPU | ||
435 | bandwidth allocation to such task groups. | ||
436 | In order to create a group from arbitrary set of processes, use | ||
437 | CONFIG_CGROUPS. (See Control Group support.) | ||
438 | |||
439 | config FAIR_GROUP_SCHED | ||
440 | bool "Group scheduling for SCHED_OTHER" | ||
441 | depends on GROUP_SCHED | ||
442 | default GROUP_SCHED | ||
443 | |||
444 | config RT_GROUP_SCHED | ||
445 | bool "Group scheduling for SCHED_RR/FIFO" | ||
446 | depends on EXPERIMENTAL | ||
447 | depends on GROUP_SCHED | ||
448 | default n | ||
449 | help | ||
450 | This feature lets you explicitly allocate real CPU bandwidth | ||
451 | to users or control groups (depending on the "Basis for grouping tasks" | ||
452 | setting below. If enabled, it will also make it impossible to | ||
453 | schedule realtime tasks for non-root users until you allocate | ||
454 | realtime bandwidth for them. | ||
455 | See Documentation/scheduler/sched-rt-group.txt for more information. | ||
456 | |||
457 | choice | ||
458 | depends on GROUP_SCHED | ||
459 | prompt "Basis for grouping tasks" | ||
460 | default USER_SCHED | ||
461 | |||
462 | config USER_SCHED | ||
463 | bool "user id" | ||
464 | help | ||
465 | This option will choose userid as the basis for grouping | ||
466 | tasks, thus providing equal CPU bandwidth to each user. | ||
467 | |||
468 | config CGROUP_SCHED | ||
469 | bool "Control groups" | ||
470 | depends on CGROUPS | ||
471 | help | ||
472 | This option allows you to create arbitrary task groups | ||
473 | using the "cgroup" pseudo filesystem and control | ||
474 | the cpu bandwidth allocated to each such task group. | ||
475 | Refer to Documentation/cgroups/cgroups.txt for more | ||
476 | information on "cgroup" pseudo filesystem. | ||
477 | |||
478 | endchoice | ||
479 | |||
480 | menuconfig CGROUPS | 464 | menuconfig CGROUPS |
481 | boolean "Control Group support" | 465 | boolean "Control Group support" |
466 | depends on EVENTFD | ||
482 | help | 467 | help |
483 | This option adds support for grouping sets of processes together, for | 468 | This option adds support for grouping sets of processes together, for |
484 | use with process control subsystems such as Cpusets, CFS, memory | 469 | use with process control subsystems such as Cpusets, CFS, memory |
@@ -597,6 +582,36 @@ config CGROUP_MEM_RES_CTLR_SWAP | |||
597 | Now, memory usage of swap_cgroup is 2 bytes per entry. If swap page | 582 | Now, memory usage of swap_cgroup is 2 bytes per entry. If swap page |
598 | size is 4096bytes, 512k per 1Gbytes of swap. | 583 | size is 4096bytes, 512k per 1Gbytes of swap. |
599 | 584 | ||
585 | menuconfig CGROUP_SCHED | ||
586 | bool "Group CPU scheduler" | ||
587 | depends on EXPERIMENTAL && CGROUPS | ||
588 | default n | ||
589 | help | ||
590 | This feature lets CPU scheduler recognize task groups and control CPU | ||
591 | bandwidth allocation to such task groups. It uses cgroups to group | ||
592 | tasks. | ||
593 | |||
594 | if CGROUP_SCHED | ||
595 | config FAIR_GROUP_SCHED | ||
596 | bool "Group scheduling for SCHED_OTHER" | ||
597 | depends on CGROUP_SCHED | ||
598 | default CGROUP_SCHED | ||
599 | |||
600 | config RT_GROUP_SCHED | ||
601 | bool "Group scheduling for SCHED_RR/FIFO" | ||
602 | depends on EXPERIMENTAL | ||
603 | depends on CGROUP_SCHED | ||
604 | default n | ||
605 | help | ||
606 | This feature lets you explicitly allocate real CPU bandwidth | ||
607 | to users or control groups (depending on the "Basis for grouping tasks" | ||
608 | setting below. If enabled, it will also make it impossible to | ||
609 | schedule realtime tasks for non-root users until you allocate | ||
610 | realtime bandwidth for them. | ||
611 | See Documentation/scheduler/sched-rt-group.txt for more information. | ||
612 | |||
613 | endif #CGROUP_SCHED | ||
614 | |||
600 | endif # CGROUPS | 615 | endif # CGROUPS |
601 | 616 | ||
602 | config MM_OWNER | 617 | config MM_OWNER |
@@ -606,7 +621,7 @@ config SYSFS_DEPRECATED | |||
606 | bool | 621 | bool |
607 | 622 | ||
608 | config SYSFS_DEPRECATED_V2 | 623 | config SYSFS_DEPRECATED_V2 |
609 | bool "enable deprecated sysfs features which may confuse old userspace tools" | 624 | bool "enable deprecated sysfs features to support old userspace tools" |
610 | depends on SYSFS | 625 | depends on SYSFS |
611 | default n | 626 | default n |
612 | select SYSFS_DEPRECATED | 627 | select SYSFS_DEPRECATED |
@@ -754,6 +769,7 @@ config UID16 | |||
754 | 769 | ||
755 | config SYSCTL_SYSCALL | 770 | config SYSCTL_SYSCALL |
756 | bool "Sysctl syscall support" if EMBEDDED | 771 | bool "Sysctl syscall support" if EMBEDDED |
772 | depends on PROC_SYSCTL | ||
757 | default y | 773 | default y |
758 | select SYSCTL | 774 | select SYSCTL |
759 | ---help--- | 775 | ---help--- |
@@ -956,19 +972,6 @@ config PERF_EVENTS | |||
956 | 972 | ||
957 | Say Y if unsure. | 973 | Say Y if unsure. |
958 | 974 | ||
959 | config EVENT_PROFILE | ||
960 | bool "Tracepoint profiling sources" | ||
961 | depends on PERF_EVENTS && EVENT_TRACING | ||
962 | default y | ||
963 | help | ||
964 | Allow the use of tracepoints as software performance events. | ||
965 | |||
966 | When this is enabled, you can create perf events based on | ||
967 | tracepoints using PERF_TYPE_TRACEPOINT and the tracepoint ID | ||
968 | found in debugfs://tracing/events/*/*/id. (The -e/--events | ||
969 | option to the perf tool can parse and interpret symbolic | ||
970 | tracepoints, in the subsystem:tracepoint_name format.) | ||
971 | |||
972 | config PERF_COUNTERS | 975 | config PERF_COUNTERS |
973 | bool "Kernel performance counters (old config option)" | 976 | bool "Kernel performance counters (old config option)" |
974 | depends on HAVE_PERF_EVENTS | 977 | depends on HAVE_PERF_EVENTS |
@@ -1069,8 +1072,30 @@ config SLOB | |||
1069 | 1072 | ||
1070 | endchoice | 1073 | endchoice |
1071 | 1074 | ||
1075 | config MMAP_ALLOW_UNINITIALIZED | ||
1076 | bool "Allow mmapped anonymous memory to be uninitialized" | ||
1077 | depends on EMBEDDED && !MMU | ||
1078 | default n | ||
1079 | help | ||
1080 | Normally, and according to the Linux spec, anonymous memory obtained | ||
1081 | from mmap() has it's contents cleared before it is passed to | ||
1082 | userspace. Enabling this config option allows you to request that | ||
1083 | mmap() skip that if it is given an MAP_UNINITIALIZED flag, thus | ||
1084 | providing a huge performance boost. If this option is not enabled, | ||
1085 | then the flag will be ignored. | ||
1086 | |||
1087 | This is taken advantage of by uClibc's malloc(), and also by | ||
1088 | ELF-FDPIC binfmt's brk and stack allocator. | ||
1089 | |||
1090 | Because of the obvious security issues, this option should only be | ||
1091 | enabled on embedded devices where you control what is run in | ||
1092 | userspace. Since that isn't generally a problem on no-MMU systems, | ||
1093 | it is normally safe to say Y here. | ||
1094 | |||
1095 | See Documentation/nommu-mmap.txt for more information. | ||
1096 | |||
1072 | config PROFILING | 1097 | config PROFILING |
1073 | bool "Profiling support (EXPERIMENTAL)" | 1098 | bool "Profiling support" |
1074 | help | 1099 | help |
1075 | Say Y here to enable the extended profiling support mechanisms used | 1100 | Say Y here to enable the extended profiling support mechanisms used |
1076 | by profilers such as OProfile. | 1101 | by profilers such as OProfile. |
@@ -1220,3 +1245,8 @@ source "block/Kconfig" | |||
1220 | config PREEMPT_NOTIFIERS | 1245 | config PREEMPT_NOTIFIERS |
1221 | bool | 1246 | bool |
1222 | 1247 | ||
1248 | config PADATA | ||
1249 | depends on SMP | ||
1250 | bool | ||
1251 | |||
1252 | source "kernel/Kconfig.locks" | ||
diff --git a/init/Makefile b/init/Makefile index 4a243df426f7..0bf677aa0872 100644 --- a/init/Makefile +++ b/init/Makefile | |||
@@ -15,12 +15,8 @@ mounts-$(CONFIG_BLK_DEV_RAM) += do_mounts_rd.o | |||
15 | mounts-$(CONFIG_BLK_DEV_INITRD) += do_mounts_initrd.o | 15 | mounts-$(CONFIG_BLK_DEV_INITRD) += do_mounts_initrd.o |
16 | mounts-$(CONFIG_BLK_DEV_MD) += do_mounts_md.o | 16 | mounts-$(CONFIG_BLK_DEV_MD) += do_mounts_md.o |
17 | 17 | ||
18 | # files to be removed upon make clean | ||
19 | clean-files := ../include/linux/compile.h | ||
20 | |||
21 | # dependencies on generated files need to be listed explicitly | 18 | # dependencies on generated files need to be listed explicitly |
22 | 19 | $(obj)/version.o: include/generated/compile.h | |
23 | $(obj)/version.o: include/linux/compile.h | ||
24 | 20 | ||
25 | # compile.h changes depending on hostname, generation number, etc, | 21 | # compile.h changes depending on hostname, generation number, etc, |
26 | # so we regenerate it always. | 22 | # so we regenerate it always. |
@@ -30,7 +26,7 @@ $(obj)/version.o: include/linux/compile.h | |||
30 | chk_compile.h = : | 26 | chk_compile.h = : |
31 | quiet_chk_compile.h = echo ' CHK $@' | 27 | quiet_chk_compile.h = echo ' CHK $@' |
32 | silent_chk_compile.h = : | 28 | silent_chk_compile.h = : |
33 | include/linux/compile.h: FORCE | 29 | include/generated/compile.h: FORCE |
34 | @$($(quiet)chk_compile.h) | 30 | @$($(quiet)chk_compile.h) |
35 | $(Q)$(CONFIG_SHELL) $(srctree)/scripts/mkcompile_h $@ \ | 31 | $(Q)$(CONFIG_SHELL) $(srctree)/scripts/mkcompile_h $@ \ |
36 | "$(UTS_MACHINE)" "$(CONFIG_SMP)" "$(CONFIG_PREEMPT)" "$(CC) $(KBUILD_CFLAGS)" | 32 | "$(UTS_MACHINE)" "$(CONFIG_SMP)" "$(CONFIG_PREEMPT)" "$(CC) $(KBUILD_CFLAGS)" |
diff --git a/init/calibrate.c b/init/calibrate.c index a379c9061199..6eb48e53d61c 100644 --- a/init/calibrate.c +++ b/init/calibrate.c | |||
@@ -123,23 +123,26 @@ void __cpuinit calibrate_delay(void) | |||
123 | { | 123 | { |
124 | unsigned long ticks, loopbit; | 124 | unsigned long ticks, loopbit; |
125 | int lps_precision = LPS_PREC; | 125 | int lps_precision = LPS_PREC; |
126 | static bool printed; | ||
126 | 127 | ||
127 | if (preset_lpj) { | 128 | if (preset_lpj) { |
128 | loops_per_jiffy = preset_lpj; | 129 | loops_per_jiffy = preset_lpj; |
129 | printk(KERN_INFO | 130 | if (!printed) |
130 | "Calibrating delay loop (skipped) preset value.. "); | 131 | pr_info("Calibrating delay loop (skipped) " |
131 | } else if ((smp_processor_id() == 0) && lpj_fine) { | 132 | "preset value.. "); |
133 | } else if ((!printed) && lpj_fine) { | ||
132 | loops_per_jiffy = lpj_fine; | 134 | loops_per_jiffy = lpj_fine; |
133 | printk(KERN_INFO | 135 | pr_info("Calibrating delay loop (skipped), " |
134 | "Calibrating delay loop (skipped), " | ||
135 | "value calculated using timer frequency.. "); | 136 | "value calculated using timer frequency.. "); |
136 | } else if ((loops_per_jiffy = calibrate_delay_direct()) != 0) { | 137 | } else if ((loops_per_jiffy = calibrate_delay_direct()) != 0) { |
137 | printk(KERN_INFO | 138 | if (!printed) |
138 | "Calibrating delay using timer specific routine.. "); | 139 | pr_info("Calibrating delay using timer " |
140 | "specific routine.. "); | ||
139 | } else { | 141 | } else { |
140 | loops_per_jiffy = (1<<12); | 142 | loops_per_jiffy = (1<<12); |
141 | 143 | ||
142 | printk(KERN_INFO "Calibrating delay loop... "); | 144 | if (!printed) |
145 | pr_info("Calibrating delay loop... "); | ||
143 | while ((loops_per_jiffy <<= 1) != 0) { | 146 | while ((loops_per_jiffy <<= 1) != 0) { |
144 | /* wait for "start of" clock tick */ | 147 | /* wait for "start of" clock tick */ |
145 | ticks = jiffies; | 148 | ticks = jiffies; |
@@ -170,7 +173,10 @@ void __cpuinit calibrate_delay(void) | |||
170 | loops_per_jiffy &= ~loopbit; | 173 | loops_per_jiffy &= ~loopbit; |
171 | } | 174 | } |
172 | } | 175 | } |
173 | printk(KERN_CONT "%lu.%02lu BogoMIPS (lpj=%lu)\n", | 176 | if (!printed) |
177 | pr_cont("%lu.%02lu BogoMIPS (lpj=%lu)\n", | ||
174 | loops_per_jiffy/(500000/HZ), | 178 | loops_per_jiffy/(500000/HZ), |
175 | (loops_per_jiffy/(5000/HZ)) % 100, loops_per_jiffy); | 179 | (loops_per_jiffy/(5000/HZ)) % 100, loops_per_jiffy); |
180 | |||
181 | printed = true; | ||
176 | } | 182 | } |
diff --git a/init/do_mounts.c b/init/do_mounts.c index bb008d064c1a..02e3ca4fc527 100644 --- a/init/do_mounts.c +++ b/init/do_mounts.c | |||
@@ -15,6 +15,7 @@ | |||
15 | #include <linux/initrd.h> | 15 | #include <linux/initrd.h> |
16 | #include <linux/async.h> | 16 | #include <linux/async.h> |
17 | #include <linux/fs_struct.h> | 17 | #include <linux/fs_struct.h> |
18 | #include <linux/slab.h> | ||
18 | 19 | ||
19 | #include <linux/nfs_fs.h> | 20 | #include <linux/nfs_fs.h> |
20 | #include <linux/nfs_fs_sb.h> | 21 | #include <linux/nfs_fs_sb.h> |
diff --git a/init/do_mounts_initrd.c b/init/do_mounts_initrd.c index 614241b5200c..2b108538d0d9 100644 --- a/init/do_mounts_initrd.c +++ b/init/do_mounts_initrd.c | |||
@@ -30,11 +30,7 @@ static int __init do_linuxrc(void * shell) | |||
30 | extern char * envp_init[]; | 30 | extern char * envp_init[]; |
31 | 31 | ||
32 | sys_close(old_fd);sys_close(root_fd); | 32 | sys_close(old_fd);sys_close(root_fd); |
33 | sys_close(0);sys_close(1);sys_close(2); | ||
34 | sys_setsid(); | 33 | sys_setsid(); |
35 | (void) sys_open("/dev/console",O_RDWR,0); | ||
36 | (void) sys_dup(0); | ||
37 | (void) sys_dup(0); | ||
38 | return kernel_execve(shell, argv, envp_init); | 34 | return kernel_execve(shell, argv, envp_init); |
39 | } | 35 | } |
40 | 36 | ||
diff --git a/init/do_mounts_rd.c b/init/do_mounts_rd.c index 027a402708de..bf3ef667bf36 100644 --- a/init/do_mounts_rd.c +++ b/init/do_mounts_rd.c | |||
@@ -7,6 +7,7 @@ | |||
7 | #include <linux/cramfs_fs.h> | 7 | #include <linux/cramfs_fs.h> |
8 | #include <linux/initrd.h> | 8 | #include <linux/initrd.h> |
9 | #include <linux/string.h> | 9 | #include <linux/string.h> |
10 | #include <linux/slab.h> | ||
10 | 11 | ||
11 | #include "do_mounts.h" | 12 | #include "do_mounts.h" |
12 | #include "../fs/squashfs/squashfs_fs.h" | 13 | #include "../fs/squashfs/squashfs_fs.h" |
diff --git a/init/initramfs.c b/init/initramfs.c index 4c00edc59689..4b9c20205092 100644 --- a/init/initramfs.c +++ b/init/initramfs.c | |||
@@ -413,7 +413,7 @@ static unsigned my_inptr; /* index of next byte to be processed in inbuf */ | |||
413 | 413 | ||
414 | static char * __init unpack_to_rootfs(char *buf, unsigned len) | 414 | static char * __init unpack_to_rootfs(char *buf, unsigned len) |
415 | { | 415 | { |
416 | int written; | 416 | int written, res; |
417 | decompress_fn decompress; | 417 | decompress_fn decompress; |
418 | const char *compress_name; | 418 | const char *compress_name; |
419 | static __initdata char msg_buf[64]; | 419 | static __initdata char msg_buf[64]; |
@@ -445,17 +445,20 @@ static char * __init unpack_to_rootfs(char *buf, unsigned len) | |||
445 | } | 445 | } |
446 | this_header = 0; | 446 | this_header = 0; |
447 | decompress = decompress_method(buf, len, &compress_name); | 447 | decompress = decompress_method(buf, len, &compress_name); |
448 | if (decompress) | 448 | if (decompress) { |
449 | decompress(buf, len, NULL, flush_buffer, NULL, | 449 | res = decompress(buf, len, NULL, flush_buffer, NULL, |
450 | &my_inptr, error); | 450 | &my_inptr, error); |
451 | else if (compress_name) { | 451 | if (res) |
452 | error("decompressor failed"); | ||
453 | } else if (compress_name) { | ||
452 | if (!message) { | 454 | if (!message) { |
453 | snprintf(msg_buf, sizeof msg_buf, | 455 | snprintf(msg_buf, sizeof msg_buf, |
454 | "compression method %s not configured", | 456 | "compression method %s not configured", |
455 | compress_name); | 457 | compress_name); |
456 | message = msg_buf; | 458 | message = msg_buf; |
457 | } | 459 | } |
458 | } | 460 | } else |
461 | error("junk in compressed archive"); | ||
459 | if (state != Reset) | 462 | if (state != Reset) |
460 | error("junk in compressed archive"); | 463 | error("junk in compressed archive"); |
461 | this_header = saved_offset + my_inptr; | 464 | this_header = saved_offset + my_inptr; |
@@ -523,7 +526,7 @@ static void __init clean_rootfs(void) | |||
523 | int fd; | 526 | int fd; |
524 | void *buf; | 527 | void *buf; |
525 | struct linux_dirent64 *dirp; | 528 | struct linux_dirent64 *dirp; |
526 | int count; | 529 | int num; |
527 | 530 | ||
528 | fd = sys_open("/", O_RDONLY, 0); | 531 | fd = sys_open("/", O_RDONLY, 0); |
529 | WARN_ON(fd < 0); | 532 | WARN_ON(fd < 0); |
@@ -537,9 +540,9 @@ static void __init clean_rootfs(void) | |||
537 | } | 540 | } |
538 | 541 | ||
539 | dirp = buf; | 542 | dirp = buf; |
540 | count = sys_getdents64(fd, dirp, BUF_SIZE); | 543 | num = sys_getdents64(fd, dirp, BUF_SIZE); |
541 | while (count > 0) { | 544 | while (num > 0) { |
542 | while (count > 0) { | 545 | while (num > 0) { |
543 | struct stat st; | 546 | struct stat st; |
544 | int ret; | 547 | int ret; |
545 | 548 | ||
@@ -552,12 +555,12 @@ static void __init clean_rootfs(void) | |||
552 | sys_unlink(dirp->d_name); | 555 | sys_unlink(dirp->d_name); |
553 | } | 556 | } |
554 | 557 | ||
555 | count -= dirp->d_reclen; | 558 | num -= dirp->d_reclen; |
556 | dirp = (void *)dirp + dirp->d_reclen; | 559 | dirp = (void *)dirp + dirp->d_reclen; |
557 | } | 560 | } |
558 | dirp = buf; | 561 | dirp = buf; |
559 | memset(buf, 0, BUF_SIZE); | 562 | memset(buf, 0, BUF_SIZE); |
560 | count = sys_getdents64(fd, dirp, BUF_SIZE); | 563 | num = sys_getdents64(fd, dirp, BUF_SIZE); |
561 | } | 564 | } |
562 | 565 | ||
563 | sys_close(fd); | 566 | sys_close(fd); |
diff --git a/init/main.c b/init/main.c index 4051d75dd2d6..5c8540271529 100644 --- a/init/main.c +++ b/init/main.c | |||
@@ -25,7 +25,6 @@ | |||
25 | #include <linux/bootmem.h> | 25 | #include <linux/bootmem.h> |
26 | #include <linux/acpi.h> | 26 | #include <linux/acpi.h> |
27 | #include <linux/tty.h> | 27 | #include <linux/tty.h> |
28 | #include <linux/gfp.h> | ||
29 | #include <linux/percpu.h> | 28 | #include <linux/percpu.h> |
30 | #include <linux/kmod.h> | 29 | #include <linux/kmod.h> |
31 | #include <linux/vmalloc.h> | 30 | #include <linux/vmalloc.h> |
@@ -69,6 +68,7 @@ | |||
69 | #include <linux/kmemtrace.h> | 68 | #include <linux/kmemtrace.h> |
70 | #include <linux/sfi.h> | 69 | #include <linux/sfi.h> |
71 | #include <linux/shmem_fs.h> | 70 | #include <linux/shmem_fs.h> |
71 | #include <linux/slab.h> | ||
72 | #include <trace/boot.h> | 72 | #include <trace/boot.h> |
73 | 73 | ||
74 | #include <asm/io.h> | 74 | #include <asm/io.h> |
@@ -149,6 +149,20 @@ static int __init nosmp(char *str) | |||
149 | 149 | ||
150 | early_param("nosmp", nosmp); | 150 | early_param("nosmp", nosmp); |
151 | 151 | ||
152 | /* this is hard limit */ | ||
153 | static int __init nrcpus(char *str) | ||
154 | { | ||
155 | int nr_cpus; | ||
156 | |||
157 | get_option(&str, &nr_cpus); | ||
158 | if (nr_cpus > 0 && nr_cpus < nr_cpu_ids) | ||
159 | nr_cpu_ids = nr_cpus; | ||
160 | |||
161 | return 0; | ||
162 | } | ||
163 | |||
164 | early_param("nr_cpus", nrcpus); | ||
165 | |||
152 | static int __init maxcpus(char *str) | 166 | static int __init maxcpus(char *str) |
153 | { | 167 | { |
154 | get_option(&str, &setup_max_cpus); | 168 | get_option(&str, &setup_max_cpus); |
@@ -160,7 +174,7 @@ static int __init maxcpus(char *str) | |||
160 | 174 | ||
161 | early_param("maxcpus", maxcpus); | 175 | early_param("maxcpus", maxcpus); |
162 | #else | 176 | #else |
163 | const unsigned int setup_max_cpus = NR_CPUS; | 177 | static const unsigned int setup_max_cpus = NR_CPUS; |
164 | #endif | 178 | #endif |
165 | 179 | ||
166 | /* | 180 | /* |
@@ -369,12 +383,6 @@ static void __init smp_init(void) | |||
369 | { | 383 | { |
370 | unsigned int cpu; | 384 | unsigned int cpu; |
371 | 385 | ||
372 | /* | ||
373 | * Set up the current CPU as possible to migrate to. | ||
374 | * The other ones will be done by cpu_up/cpu_down() | ||
375 | */ | ||
376 | set_cpu_active(smp_processor_id(), true); | ||
377 | |||
378 | /* FIXME: This should be done in userspace --RR */ | 386 | /* FIXME: This should be done in userspace --RR */ |
379 | for_each_present_cpu(cpu) { | 387 | for_each_present_cpu(cpu) { |
380 | if (num_online_cpus() >= setup_max_cpus) | 388 | if (num_online_cpus() >= setup_max_cpus) |
@@ -422,7 +430,9 @@ static noinline void __init_refok rest_init(void) | |||
422 | kernel_thread(kernel_init, NULL, CLONE_FS | CLONE_SIGHAND); | 430 | kernel_thread(kernel_init, NULL, CLONE_FS | CLONE_SIGHAND); |
423 | numa_default_policy(); | 431 | numa_default_policy(); |
424 | pid = kernel_thread(kthreadd, NULL, CLONE_FS | CLONE_FILES); | 432 | pid = kernel_thread(kthreadd, NULL, CLONE_FS | CLONE_FILES); |
433 | rcu_read_lock(); | ||
425 | kthreadd_task = find_task_by_pid_ns(pid, &init_pid_ns); | 434 | kthreadd_task = find_task_by_pid_ns(pid, &init_pid_ns); |
435 | rcu_read_unlock(); | ||
426 | unlock_kernel(); | 436 | unlock_kernel(); |
427 | 437 | ||
428 | /* | 438 | /* |
@@ -486,6 +496,7 @@ static void __init boot_cpu_init(void) | |||
486 | int cpu = smp_processor_id(); | 496 | int cpu = smp_processor_id(); |
487 | /* Mark the boot cpu "present", "online" etc for SMP and UP case */ | 497 | /* Mark the boot cpu "present", "online" etc for SMP and UP case */ |
488 | set_cpu_online(cpu, true); | 498 | set_cpu_online(cpu, true); |
499 | set_cpu_active(cpu, true); | ||
489 | set_cpu_present(cpu, true); | 500 | set_cpu_present(cpu, true); |
490 | set_cpu_possible(cpu, true); | 501 | set_cpu_possible(cpu, true); |
491 | } | 502 | } |
@@ -589,6 +600,7 @@ asmlinkage void __init start_kernel(void) | |||
589 | local_irq_disable(); | 600 | local_irq_disable(); |
590 | } | 601 | } |
591 | rcu_init(); | 602 | rcu_init(); |
603 | radix_tree_init(); | ||
592 | /* init some links before init_ISA_irqs() */ | 604 | /* init some links before init_ISA_irqs() */ |
593 | early_irq_init(); | 605 | early_irq_init(); |
594 | init_IRQ(); | 606 | init_IRQ(); |
@@ -606,7 +618,7 @@ asmlinkage void __init start_kernel(void) | |||
606 | local_irq_enable(); | 618 | local_irq_enable(); |
607 | 619 | ||
608 | /* Interrupts are enabled now so all GFP allocations are safe. */ | 620 | /* Interrupts are enabled now so all GFP allocations are safe. */ |
609 | set_gfp_allowed_mask(__GFP_BITS_MASK); | 621 | gfp_allowed_mask = __GFP_BITS_MASK; |
610 | 622 | ||
611 | kmem_cache_init_late(); | 623 | kmem_cache_init_late(); |
612 | 624 | ||
@@ -664,7 +676,6 @@ asmlinkage void __init start_kernel(void) | |||
664 | key_init(); | 676 | key_init(); |
665 | security_init(); | 677 | security_init(); |
666 | vfs_caches_init(totalram_pages); | 678 | vfs_caches_init(totalram_pages); |
667 | radix_tree_init(); | ||
668 | signals_init(); | 679 | signals_init(); |
669 | /* rootfs populating might need page-writeback */ | 680 | /* rootfs populating might need page-writeback */ |
670 | page_writeback_init(); | 681 | page_writeback_init(); |
@@ -691,10 +702,10 @@ asmlinkage void __init start_kernel(void) | |||
691 | static void __init do_ctors(void) | 702 | static void __init do_ctors(void) |
692 | { | 703 | { |
693 | #ifdef CONFIG_CONSTRUCTORS | 704 | #ifdef CONFIG_CONSTRUCTORS |
694 | ctor_fn_t *call = (ctor_fn_t *) __ctors_start; | 705 | ctor_fn_t *fn = (ctor_fn_t *) __ctors_start; |
695 | 706 | ||
696 | for (; call < (ctor_fn_t *) __ctors_end; call++) | 707 | for (; fn < (ctor_fn_t *) __ctors_end; fn++) |
697 | (*call)(); | 708 | (*fn)(); |
698 | #endif | 709 | #endif |
699 | } | 710 | } |
700 | 711 | ||
@@ -755,10 +766,10 @@ extern initcall_t __initcall_start[], __initcall_end[], __early_initcall_end[]; | |||
755 | 766 | ||
756 | static void __init do_initcalls(void) | 767 | static void __init do_initcalls(void) |
757 | { | 768 | { |
758 | initcall_t *call; | 769 | initcall_t *fn; |
759 | 770 | ||
760 | for (call = __early_initcall_end; call < __initcall_end; call++) | 771 | for (fn = __early_initcall_end; fn < __initcall_end; fn++) |
761 | do_one_initcall(*call); | 772 | do_one_initcall(*fn); |
762 | 773 | ||
763 | /* Make sure there is no pending stuff from the initcall sequence */ | 774 | /* Make sure there is no pending stuff from the initcall sequence */ |
764 | flush_scheduled_work(); | 775 | flush_scheduled_work(); |
@@ -785,10 +796,10 @@ static void __init do_basic_setup(void) | |||
785 | 796 | ||
786 | static void __init do_pre_smp_initcalls(void) | 797 | static void __init do_pre_smp_initcalls(void) |
787 | { | 798 | { |
788 | initcall_t *call; | 799 | initcall_t *fn; |
789 | 800 | ||
790 | for (call = __initcall_start; call < __early_initcall_end; call++) | 801 | for (fn = __initcall_start; fn < __early_initcall_end; fn++) |
791 | do_one_initcall(*call); | 802 | do_one_initcall(*fn); |
792 | } | 803 | } |
793 | 804 | ||
794 | static void run_init_process(char *init_filename) | 805 | static void run_init_process(char *init_filename) |
@@ -811,11 +822,6 @@ static noinline int init_post(void) | |||
811 | system_state = SYSTEM_RUNNING; | 822 | system_state = SYSTEM_RUNNING; |
812 | numa_default_policy(); | 823 | numa_default_policy(); |
813 | 824 | ||
814 | if (sys_open((const char __user *) "/dev/console", O_RDWR, 0) < 0) | ||
815 | printk(KERN_WARNING "Warning: unable to open an initial console.\n"); | ||
816 | |||
817 | (void) sys_dup(0); | ||
818 | (void) sys_dup(0); | ||
819 | 825 | ||
820 | current->signal->flags |= SIGNAL_UNKILLABLE; | 826 | current->signal->flags |= SIGNAL_UNKILLABLE; |
821 | 827 | ||
@@ -841,7 +847,8 @@ static noinline int init_post(void) | |||
841 | run_init_process("/bin/init"); | 847 | run_init_process("/bin/init"); |
842 | run_init_process("/bin/sh"); | 848 | run_init_process("/bin/sh"); |
843 | 849 | ||
844 | panic("No init found. Try passing init= option to kernel."); | 850 | panic("No init found. Try passing init= option to kernel. " |
851 | "See Linux Documentation/init.txt for guidance."); | ||
845 | } | 852 | } |
846 | 853 | ||
847 | static int __init kernel_init(void * unused) | 854 | static int __init kernel_init(void * unused) |
@@ -851,7 +858,7 @@ static int __init kernel_init(void * unused) | |||
851 | /* | 858 | /* |
852 | * init can allocate pages on any node | 859 | * init can allocate pages on any node |
853 | */ | 860 | */ |
854 | set_mems_allowed(node_possible_map); | 861 | set_mems_allowed(node_states[N_HIGH_MEMORY]); |
855 | /* | 862 | /* |
856 | * init can run on any cpu. | 863 | * init can run on any cpu. |
857 | */ | 864 | */ |
@@ -878,6 +885,12 @@ static int __init kernel_init(void * unused) | |||
878 | 885 | ||
879 | do_basic_setup(); | 886 | do_basic_setup(); |
880 | 887 | ||
888 | /* Open the /dev/console on the rootfs, this should never fail */ | ||
889 | if (sys_open((const char __user *) "/dev/console", O_RDWR, 0) < 0) | ||
890 | printk(KERN_WARNING "Warning: unable to open an initial console.\n"); | ||
891 | |||
892 | (void) sys_dup(0); | ||
893 | (void) sys_dup(0); | ||
881 | /* | 894 | /* |
882 | * check if there is an early userspace init. If yes, let it do all | 895 | * check if there is an early userspace init. If yes, let it do all |
883 | * the work | 896 | * the work |
diff --git a/init/version.c b/init/version.c index 52a8b98642b8..adff586401a5 100644 --- a/init/version.c +++ b/init/version.c | |||
@@ -6,11 +6,11 @@ | |||
6 | * May be freely distributed as part of Linux. | 6 | * May be freely distributed as part of Linux. |
7 | */ | 7 | */ |
8 | 8 | ||
9 | #include <linux/compile.h> | 9 | #include <generated/compile.h> |
10 | #include <linux/module.h> | 10 | #include <linux/module.h> |
11 | #include <linux/uts.h> | 11 | #include <linux/uts.h> |
12 | #include <linux/utsname.h> | 12 | #include <linux/utsname.h> |
13 | #include <linux/utsrelease.h> | 13 | #include <generated/utsrelease.h> |
14 | #include <linux/version.h> | 14 | #include <linux/version.h> |
15 | 15 | ||
16 | #ifndef CONFIG_KALLSYMS | 16 | #ifndef CONFIG_KALLSYMS |