diff options
Diffstat (limited to 'init/Kconfig')
-rw-r--r-- | init/Kconfig | 103 |
1 files changed, 54 insertions, 49 deletions
diff --git a/init/Kconfig b/init/Kconfig index 88f334fb403b..968c539f0ac3 100644 --- a/init/Kconfig +++ b/init/Kconfig | |||
@@ -20,12 +20,8 @@ config CONSTRUCTORS | |||
20 | bool | 20 | bool |
21 | depends on !UML | 21 | depends on !UML |
22 | 22 | ||
23 | config HAVE_IRQ_WORK | ||
24 | bool | ||
25 | |||
26 | config IRQ_WORK | 23 | config IRQ_WORK |
27 | bool | 24 | bool |
28 | depends on HAVE_IRQ_WORK | ||
29 | 25 | ||
30 | config BUILDTIME_EXTABLE_SORT | 26 | config BUILDTIME_EXTABLE_SORT |
31 | bool | 27 | bool |
@@ -33,35 +29,8 @@ config BUILDTIME_EXTABLE_SORT | |||
33 | menu "General setup" | 29 | menu "General setup" |
34 | 30 | ||
35 | config EXPERIMENTAL | 31 | config EXPERIMENTAL |
36 | bool "Prompt for development and/or incomplete code/drivers" | 32 | bool |
37 | ---help--- | 33 | default y |
38 | Some of the various things that Linux supports (such as network | ||
39 | drivers, file systems, network protocols, etc.) can be in a state | ||
40 | of development where the functionality, stability, or the level of | ||
41 | testing is not yet high enough for general use. This is usually | ||
42 | known as the "alpha-test" phase among developers. If a feature is | ||
43 | currently in alpha-test, then the developers usually discourage | ||
44 | uninformed widespread use of this feature by the general public to | ||
45 | avoid "Why doesn't this work?" type mail messages. However, active | ||
46 | testing and use of these systems is welcomed. Just be aware that it | ||
47 | may not meet the normal level of reliability or it may fail to work | ||
48 | in some special cases. Detailed bug reports from people familiar | ||
49 | with the kernel internals are usually welcomed by the developers | ||
50 | (before submitting bug reports, please read the documents | ||
51 | <file:README>, <file:MAINTAINERS>, <file:REPORTING-BUGS>, | ||
52 | <file:Documentation/BUG-HUNTING>, and | ||
53 | <file:Documentation/oops-tracing.txt> in the kernel source). | ||
54 | |||
55 | This option will also make obsoleted drivers available. These are | ||
56 | drivers that have been replaced by something else, and/or are | ||
57 | scheduled to be removed in a future kernel release. | ||
58 | |||
59 | Unless you intend to help test and develop a feature or driver that | ||
60 | falls into this category, or you have a situation that requires | ||
61 | using these features, you should probably say N here, which will | ||
62 | cause the configurator to present you with fewer choices. If | ||
63 | you say Y here, you will be offered the choice of using features or | ||
64 | drivers that are currently considered to be in the alpha-test phase. | ||
65 | 34 | ||
66 | config BROKEN | 35 | config BROKEN |
67 | bool | 36 | bool |
@@ -247,7 +216,7 @@ config SYSVIPC_SYSCTL | |||
247 | 216 | ||
248 | config POSIX_MQUEUE | 217 | config POSIX_MQUEUE |
249 | bool "POSIX Message Queues" | 218 | bool "POSIX Message Queues" |
250 | depends on NET && EXPERIMENTAL | 219 | depends on NET |
251 | ---help--- | 220 | ---help--- |
252 | POSIX variant of message queues is a part of IPC. In POSIX message | 221 | POSIX variant of message queues is a part of IPC. In POSIX message |
253 | queues every message has a priority which decides about succession | 222 | queues every message has a priority which decides about succession |
@@ -326,10 +295,13 @@ source "kernel/time/Kconfig" | |||
326 | 295 | ||
327 | menu "CPU/Task time and stats accounting" | 296 | menu "CPU/Task time and stats accounting" |
328 | 297 | ||
298 | config VIRT_CPU_ACCOUNTING | ||
299 | bool | ||
300 | |||
329 | choice | 301 | choice |
330 | prompt "Cputime accounting" | 302 | prompt "Cputime accounting" |
331 | default TICK_CPU_ACCOUNTING if !PPC64 | 303 | default TICK_CPU_ACCOUNTING if !PPC64 |
332 | default VIRT_CPU_ACCOUNTING if PPC64 | 304 | default VIRT_CPU_ACCOUNTING_NATIVE if PPC64 |
333 | 305 | ||
334 | # Kind of a stub config for the pure tick based cputime accounting | 306 | # Kind of a stub config for the pure tick based cputime accounting |
335 | config TICK_CPU_ACCOUNTING | 307 | config TICK_CPU_ACCOUNTING |
@@ -342,9 +314,10 @@ config TICK_CPU_ACCOUNTING | |||
342 | 314 | ||
343 | If unsure, say Y. | 315 | If unsure, say Y. |
344 | 316 | ||
345 | config VIRT_CPU_ACCOUNTING | 317 | config VIRT_CPU_ACCOUNTING_NATIVE |
346 | bool "Deterministic task and CPU time accounting" | 318 | bool "Deterministic task and CPU time accounting" |
347 | depends on HAVE_VIRT_CPU_ACCOUNTING | 319 | depends on HAVE_VIRT_CPU_ACCOUNTING |
320 | select VIRT_CPU_ACCOUNTING | ||
348 | help | 321 | help |
349 | Select this option to enable more accurate task and CPU time | 322 | Select this option to enable more accurate task and CPU time |
350 | accounting. This is done by reading a CPU counter on each | 323 | accounting. This is done by reading a CPU counter on each |
@@ -354,6 +327,23 @@ config VIRT_CPU_ACCOUNTING | |||
354 | this also enables accounting of stolen time on logically-partitioned | 327 | this also enables accounting of stolen time on logically-partitioned |
355 | systems. | 328 | systems. |
356 | 329 | ||
330 | config VIRT_CPU_ACCOUNTING_GEN | ||
331 | bool "Full dynticks CPU time accounting" | ||
332 | depends on HAVE_CONTEXT_TRACKING && 64BIT | ||
333 | select VIRT_CPU_ACCOUNTING | ||
334 | select CONTEXT_TRACKING | ||
335 | help | ||
336 | Select this option to enable task and CPU time accounting on full | ||
337 | dynticks systems. This accounting is implemented by watching every | ||
338 | kernel-user boundaries using the context tracking subsystem. | ||
339 | The accounting is thus performed at the expense of some significant | ||
340 | overhead. | ||
341 | |||
342 | For now this is only useful if you are working on the full | ||
343 | dynticks subsystem development. | ||
344 | |||
345 | If unsure, say N. | ||
346 | |||
357 | config IRQ_TIME_ACCOUNTING | 347 | config IRQ_TIME_ACCOUNTING |
358 | bool "Fine granularity task level IRQ time accounting" | 348 | bool "Fine granularity task level IRQ time accounting" |
359 | depends on HAVE_IRQ_TIME_ACCOUNTING | 349 | depends on HAVE_IRQ_TIME_ACCOUNTING |
@@ -393,7 +383,7 @@ config BSD_PROCESS_ACCT_V3 | |||
393 | at <http://www.gnu.org/software/acct/>. | 383 | at <http://www.gnu.org/software/acct/>. |
394 | 384 | ||
395 | config TASKSTATS | 385 | config TASKSTATS |
396 | bool "Export task/process statistics through netlink (EXPERIMENTAL)" | 386 | bool "Export task/process statistics through netlink" |
397 | depends on NET | 387 | depends on NET |
398 | default n | 388 | default n |
399 | help | 389 | help |
@@ -406,7 +396,7 @@ config TASKSTATS | |||
406 | Say N if unsure. | 396 | Say N if unsure. |
407 | 397 | ||
408 | config TASK_DELAY_ACCT | 398 | config TASK_DELAY_ACCT |
409 | bool "Enable per-task delay accounting (EXPERIMENTAL)" | 399 | bool "Enable per-task delay accounting" |
410 | depends on TASKSTATS | 400 | depends on TASKSTATS |
411 | help | 401 | help |
412 | Collect information on time spent by a task waiting for system | 402 | Collect information on time spent by a task waiting for system |
@@ -417,7 +407,7 @@ config TASK_DELAY_ACCT | |||
417 | Say N if unsure. | 407 | Say N if unsure. |
418 | 408 | ||
419 | config TASK_XACCT | 409 | config TASK_XACCT |
420 | bool "Enable extended accounting over taskstats (EXPERIMENTAL)" | 410 | bool "Enable extended accounting over taskstats" |
421 | depends on TASKSTATS | 411 | depends on TASKSTATS |
422 | help | 412 | help |
423 | Collect extended task accounting data and send the data | 413 | Collect extended task accounting data and send the data |
@@ -426,7 +416,7 @@ config TASK_XACCT | |||
426 | Say N if unsure. | 416 | Say N if unsure. |
427 | 417 | ||
428 | config TASK_IO_ACCOUNTING | 418 | config TASK_IO_ACCOUNTING |
429 | bool "Enable per-task storage I/O accounting (EXPERIMENTAL)" | 419 | bool "Enable per-task storage I/O accounting" |
430 | depends on TASK_XACCT | 420 | depends on TASK_XACCT |
431 | help | 421 | help |
432 | Collect information on the number of bytes of storage I/O which this | 422 | Collect information on the number of bytes of storage I/O which this |
@@ -453,7 +443,7 @@ config TREE_RCU | |||
453 | 443 | ||
454 | config TREE_PREEMPT_RCU | 444 | config TREE_PREEMPT_RCU |
455 | bool "Preemptible tree-based hierarchical RCU" | 445 | bool "Preemptible tree-based hierarchical RCU" |
456 | depends on PREEMPT && SMP | 446 | depends on PREEMPT |
457 | help | 447 | help |
458 | This option selects the RCU implementation that is | 448 | This option selects the RCU implementation that is |
459 | designed for very large SMP systems with hundreds or | 449 | designed for very large SMP systems with hundreds or |
@@ -461,6 +451,8 @@ config TREE_PREEMPT_RCU | |||
461 | is also required. It also scales down nicely to | 451 | is also required. It also scales down nicely to |
462 | smaller systems. | 452 | smaller systems. |
463 | 453 | ||
454 | Select this option if you are unsure. | ||
455 | |||
464 | config TINY_RCU | 456 | config TINY_RCU |
465 | bool "UP-only small-memory-footprint RCU" | 457 | bool "UP-only small-memory-footprint RCU" |
466 | depends on !PREEMPT && !SMP | 458 | depends on !PREEMPT && !SMP |
@@ -486,6 +478,14 @@ config PREEMPT_RCU | |||
486 | This option enables preemptible-RCU code that is common between | 478 | This option enables preemptible-RCU code that is common between |
487 | the TREE_PREEMPT_RCU and TINY_PREEMPT_RCU implementations. | 479 | the TREE_PREEMPT_RCU and TINY_PREEMPT_RCU implementations. |
488 | 480 | ||
481 | config RCU_STALL_COMMON | ||
482 | def_bool ( TREE_RCU || TREE_PREEMPT_RCU || RCU_TRACE ) | ||
483 | help | ||
484 | This option enables RCU CPU stall code that is common between | ||
485 | the TINY and TREE variants of RCU. The purpose is to allow | ||
486 | the tiny variants to disable RCU CPU stall warnings, while | ||
487 | making these warnings mandatory for the tree variants. | ||
488 | |||
489 | config CONTEXT_TRACKING | 489 | config CONTEXT_TRACKING |
490 | bool | 490 | bool |
491 | 491 | ||
@@ -880,8 +880,8 @@ config MEMCG_SWAP_ENABLED | |||
880 | select this option (if, for some reason, they need to disable it | 880 | select this option (if, for some reason, they need to disable it |
881 | then swapaccount=0 does the trick). | 881 | then swapaccount=0 does the trick). |
882 | config MEMCG_KMEM | 882 | config MEMCG_KMEM |
883 | bool "Memory Resource Controller Kernel Memory accounting (EXPERIMENTAL)" | 883 | bool "Memory Resource Controller Kernel Memory accounting" |
884 | depends on MEMCG && EXPERIMENTAL | 884 | depends on MEMCG |
885 | depends on SLUB || SLAB | 885 | depends on SLUB || SLAB |
886 | help | 886 | help |
887 | The Kernel Memory extension for Memory Resource Controller can limit | 887 | The Kernel Memory extension for Memory Resource Controller can limit |
@@ -893,7 +893,7 @@ config MEMCG_KMEM | |||
893 | 893 | ||
894 | config CGROUP_HUGETLB | 894 | config CGROUP_HUGETLB |
895 | bool "HugeTLB Resource Controller for Control Groups" | 895 | bool "HugeTLB Resource Controller for Control Groups" |
896 | depends on RESOURCE_COUNTERS && HUGETLB_PAGE && EXPERIMENTAL | 896 | depends on RESOURCE_COUNTERS && HUGETLB_PAGE |
897 | default n | 897 | default n |
898 | help | 898 | help |
899 | Provides a cgroup Resource Controller for HugeTLB pages. | 899 | Provides a cgroup Resource Controller for HugeTLB pages. |
@@ -932,7 +932,6 @@ config FAIR_GROUP_SCHED | |||
932 | 932 | ||
933 | config CFS_BANDWIDTH | 933 | config CFS_BANDWIDTH |
934 | bool "CPU bandwidth provisioning for FAIR_GROUP_SCHED" | 934 | bool "CPU bandwidth provisioning for FAIR_GROUP_SCHED" |
935 | depends on EXPERIMENTAL | ||
936 | depends on FAIR_GROUP_SCHED | 935 | depends on FAIR_GROUP_SCHED |
937 | default n | 936 | default n |
938 | help | 937 | help |
@@ -944,7 +943,6 @@ config CFS_BANDWIDTH | |||
944 | 943 | ||
945 | config RT_GROUP_SCHED | 944 | config RT_GROUP_SCHED |
946 | bool "Group scheduling for SCHED_RR/FIFO" | 945 | bool "Group scheduling for SCHED_RR/FIFO" |
947 | depends on EXPERIMENTAL | ||
948 | depends on CGROUP_SCHED | 946 | depends on CGROUP_SCHED |
949 | default n | 947 | default n |
950 | help | 948 | help |
@@ -1026,8 +1024,7 @@ config IPC_NS | |||
1026 | different IPC objects in different namespaces. | 1024 | different IPC objects in different namespaces. |
1027 | 1025 | ||
1028 | config USER_NS | 1026 | config USER_NS |
1029 | bool "User namespace (EXPERIMENTAL)" | 1027 | bool "User namespace" |
1030 | depends on EXPERIMENTAL | ||
1031 | depends on UIDGID_CONVERTED | 1028 | depends on UIDGID_CONVERTED |
1032 | select UIDGID_STRICT_TYPE_CHECKS | 1029 | select UIDGID_STRICT_TYPE_CHECKS |
1033 | 1030 | ||
@@ -1232,6 +1229,13 @@ config SYSCTL_EXCEPTION_TRACE | |||
1232 | help | 1229 | help |
1233 | Enable support for /proc/sys/debug/exception-trace. | 1230 | Enable support for /proc/sys/debug/exception-trace. |
1234 | 1231 | ||
1232 | config SYSCTL_ARCH_UNALIGN_NO_WARN | ||
1233 | bool | ||
1234 | help | ||
1235 | Enable support for /proc/sys/kernel/ignore-unaligned-usertrap | ||
1236 | Allows arch to define/use @no_unaligned_warning to possibly warn | ||
1237 | about unaligned access emulation going on under the hood. | ||
1238 | |||
1235 | config KALLSYMS | 1239 | config KALLSYMS |
1236 | bool "Load all symbols for debugging/ksymoops" if EXPERT | 1240 | bool "Load all symbols for debugging/ksymoops" if EXPERT |
1237 | default y | 1241 | default y |
@@ -1263,6 +1267,7 @@ config HOTPLUG | |||
1263 | config PRINTK | 1267 | config PRINTK |
1264 | default y | 1268 | default y |
1265 | bool "Enable support for printk" if EXPERT | 1269 | bool "Enable support for printk" if EXPERT |
1270 | select IRQ_WORK | ||
1266 | help | 1271 | help |
1267 | This option enables normal printk support. Removing it | 1272 | This option enables normal printk support. Removing it |
1268 | eliminates most of the message strings from the kernel image | 1273 | eliminates most of the message strings from the kernel image |
@@ -1608,7 +1613,7 @@ config MODULE_UNLOAD | |||
1608 | 1613 | ||
1609 | config MODULE_FORCE_UNLOAD | 1614 | config MODULE_FORCE_UNLOAD |
1610 | bool "Forced module unloading" | 1615 | bool "Forced module unloading" |
1611 | depends on MODULE_UNLOAD && EXPERIMENTAL | 1616 | depends on MODULE_UNLOAD |
1612 | help | 1617 | help |
1613 | This option allows you to force a module to unload, even if the | 1618 | This option allows you to force a module to unload, even if the |
1614 | kernel believes it is unsafe: the kernel will remove the module | 1619 | kernel believes it is unsafe: the kernel will remove the module |