aboutsummaryrefslogtreecommitdiffstats
path: root/init/Kconfig
diff options
context:
space:
mode:
Diffstat (limited to 'init/Kconfig')
-rw-r--r--init/Kconfig170
1 files changed, 100 insertions, 70 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
115config HAVE_KERNEL_LZMA 115config HAVE_KERNEL_LZMA
116 bool 116 bool
117 117
118config HAVE_KERNEL_LZO
119 bool
120
118choice 121choice
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
148config KERNEL_BZIP2 150config 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
169config 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
167endchoice 177endchoice
168 178
169config SWAP 179config 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
347config 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
337endchoice 356endchoice
338 357
339config RCU_TRACE 358config RCU_TRACE
@@ -377,6 +396,22 @@ config RCU_FANOUT_EXACT
377 396
378 Say N if unsure. 397 Say N if unsure.
379 398
399config 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
380config TREE_RCU_TRACE 415config 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
426config HAVE_UNSTABLE_SCHED_CLOCK 461config HAVE_UNSTABLE_SCHED_CLOCK
427 bool 462 bool
428 463
429config 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
439config FAIR_GROUP_SCHED
440 bool "Group scheduling for SCHED_OTHER"
441 depends on GROUP_SCHED
442 default GROUP_SCHED
443
444config 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
457choice
458 depends on GROUP_SCHED
459 prompt "Basis for grouping tasks"
460 default USER_SCHED
461
462config 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
468config 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
478endchoice
479
480menuconfig CGROUPS 464menuconfig 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
585menuconfig 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
594if CGROUP_SCHED
595config FAIR_GROUP_SCHED
596 bool "Group scheduling for SCHED_OTHER"
597 depends on CGROUP_SCHED
598 default CGROUP_SCHED
599
600config 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
613endif #CGROUP_SCHED
614
600endif # CGROUPS 615endif # CGROUPS
601 616
602config MM_OWNER 617config MM_OWNER
@@ -606,7 +621,7 @@ config SYSFS_DEPRECATED
606 bool 621 bool
607 622
608config SYSFS_DEPRECATED_V2 623config 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
755config SYSCTL_SYSCALL 770config 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
959config 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
972config PERF_COUNTERS 975config 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
1070endchoice 1073endchoice
1071 1074
1075config 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
1072config PROFILING 1097config 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"
1220config PREEMPT_NOTIFIERS 1245config PREEMPT_NOTIFIERS
1221 bool 1246 bool
1222 1247
1248config PADATA
1249 depends on SMP
1250 bool
1251
1252source "kernel/Kconfig.locks"