]> git.karo-electronics.de Git - linux-beck.git/blob - init/Kconfig
init/Kconfig: make COMPILE_TEST depend on !UML
[linux-beck.git] / init / Kconfig
1 config ARCH
2         string
3         option env="ARCH"
4
5 config KERNELVERSION
6         string
7         option env="KERNELVERSION"
8
9 config DEFCONFIG_LIST
10         string
11         depends on !UML
12         option defconfig_list
13         default "/lib/modules/$UNAME_RELEASE/.config"
14         default "/etc/kernel-config"
15         default "/boot/config-$UNAME_RELEASE"
16         default "$ARCH_DEFCONFIG"
17         default "arch/$ARCH/defconfig"
18
19 config CONSTRUCTORS
20         bool
21         depends on !UML
22
23 config IRQ_WORK
24         bool
25
26 config BUILDTIME_EXTABLE_SORT
27         bool
28
29 menu "General setup"
30
31 config BROKEN
32         bool
33
34 config BROKEN_ON_SMP
35         bool
36         depends on BROKEN || !SMP
37         default y
38
39 config INIT_ENV_ARG_LIMIT
40         int
41         default 32 if !UML
42         default 128 if UML
43         help
44           Maximum of each of the number of arguments and environment
45           variables passed to init from the kernel command line.
46
47
48 config CROSS_COMPILE
49         string "Cross-compiler tool prefix"
50         help
51           Same as running 'make CROSS_COMPILE=prefix-' but stored for
52           default make runs in this kernel build directory.  You don't
53           need to set this unless you want the configured kernel build
54           directory to select the cross-compiler automatically.
55
56 config COMPILE_TEST
57         bool "Compile also drivers which will not load"
58         depends on !UML
59         default n
60         help
61           Some drivers can be compiled on a different platform than they are
62           intended to be run on. Despite they cannot be loaded there (or even
63           when they load they cannot be used due to missing HW support),
64           developers still, opposing to distributors, might want to build such
65           drivers to compile-test them.
66
67           If you are a developer and want to build everything available, say Y
68           here. If you are a user/distributor, say N here to exclude useless
69           drivers to be distributed.
70
71 config LOCALVERSION
72         string "Local version - append to kernel release"
73         help
74           Append an extra string to the end of your kernel version.
75           This will show up when you type uname, for example.
76           The string you set here will be appended after the contents of
77           any files with a filename matching localversion* in your
78           object and source tree, in that order.  Your total string can
79           be a maximum of 64 characters.
80
81 config LOCALVERSION_AUTO
82         bool "Automatically append version information to the version string"
83         default y
84         help
85           This will try to automatically determine if the current tree is a
86           release tree by looking for git tags that belong to the current
87           top of tree revision.
88
89           A string of the format -gxxxxxxxx will be added to the localversion
90           if a git-based tree is found.  The string generated by this will be
91           appended after any matching localversion* files, and after the value
92           set in CONFIG_LOCALVERSION.
93
94           (The actual string used here is the first eight characters produced
95           by running the command:
96
97             $ git rev-parse --verify HEAD
98
99           which is done within the script "scripts/setlocalversion".)
100
101 config HAVE_KERNEL_GZIP
102         bool
103
104 config HAVE_KERNEL_BZIP2
105         bool
106
107 config HAVE_KERNEL_LZMA
108         bool
109
110 config HAVE_KERNEL_XZ
111         bool
112
113 config HAVE_KERNEL_LZO
114         bool
115
116 config HAVE_KERNEL_LZ4
117         bool
118
119 choice
120         prompt "Kernel compression mode"
121         default KERNEL_GZIP
122         depends on HAVE_KERNEL_GZIP || HAVE_KERNEL_BZIP2 || HAVE_KERNEL_LZMA || HAVE_KERNEL_XZ || HAVE_KERNEL_LZO || HAVE_KERNEL_LZ4
123         help
124           The linux kernel is a kind of self-extracting executable.
125           Several compression algorithms are available, which differ
126           in efficiency, compression and decompression speed.
127           Compression speed is only relevant when building a kernel.
128           Decompression speed is relevant at each boot.
129
130           If you have any problems with bzip2 or lzma compressed
131           kernels, mail me (Alain Knaff) <alain@knaff.lu>. (An older
132           version of this functionality (bzip2 only), for 2.4, was
133           supplied by Christian Ludwig)
134
135           High compression options are mostly useful for users, who
136           are low on disk space (embedded systems), but for whom ram
137           size matters less.
138
139           If in doubt, select 'gzip'
140
141 config KERNEL_GZIP
142         bool "Gzip"
143         depends on HAVE_KERNEL_GZIP
144         help
145           The old and tried gzip compression. It provides a good balance
146           between compression ratio and decompression speed.
147
148 config KERNEL_BZIP2
149         bool "Bzip2"
150         depends on HAVE_KERNEL_BZIP2
151         help
152           Its compression ratio and speed is intermediate.
153           Decompression speed is slowest among the choices.  The kernel
154           size is about 10% smaller with bzip2, in comparison to gzip.
155           Bzip2 uses a large amount of memory. For modern kernels you
156           will need at least 8MB RAM or more for booting.
157
158 config KERNEL_LZMA
159         bool "LZMA"
160         depends on HAVE_KERNEL_LZMA
161         help
162           This compression algorithm's ratio is best.  Decompression speed
163           is between gzip and bzip2.  Compression is slowest.
164           The kernel size is about 33% smaller with LZMA in comparison to gzip.
165
166 config KERNEL_XZ
167         bool "XZ"
168         depends on HAVE_KERNEL_XZ
169         help
170           XZ uses the LZMA2 algorithm and instruction set specific
171           BCJ filters which can improve compression ratio of executable
172           code. The size of the kernel is about 30% smaller with XZ in
173           comparison to gzip. On architectures for which there is a BCJ
174           filter (i386, x86_64, ARM, IA-64, PowerPC, and SPARC), XZ
175           will create a few percent smaller kernel than plain LZMA.
176
177           The speed is about the same as with LZMA: The decompression
178           speed of XZ is better than that of bzip2 but worse than gzip
179           and LZO. Compression is slow.
180
181 config KERNEL_LZO
182         bool "LZO"
183         depends on HAVE_KERNEL_LZO
184         help
185           Its compression ratio is the poorest among the choices. The kernel
186           size is about 10% bigger than gzip; however its speed
187           (both compression and decompression) is the fastest.
188
189 config KERNEL_LZ4
190         bool "LZ4"
191         depends on HAVE_KERNEL_LZ4
192         help
193           LZ4 is an LZ77-type compressor with a fixed, byte-oriented encoding.
194           A preliminary version of LZ4 de/compression tool is available at
195           <https://code.google.com/p/lz4/>.
196
197           Its compression ratio is worse than LZO. The size of the kernel
198           is about 8% bigger than LZO. But the decompression speed is
199           faster than LZO.
200
201 endchoice
202
203 config DEFAULT_HOSTNAME
204         string "Default hostname"
205         default "(none)"
206         help
207           This option determines the default system hostname before userspace
208           calls sethostname(2). The kernel traditionally uses "(none)" here,
209           but you may wish to use a different default here to make a minimal
210           system more usable with less configuration.
211
212 config SWAP
213         bool "Support for paging of anonymous memory (swap)"
214         depends on MMU && BLOCK
215         default y
216         help
217           This option allows you to choose whether you want to have support
218           for so called swap devices or swap files in your kernel that are
219           used to provide more virtual memory than the actual RAM present
220           in your computer.  If unsure say Y.
221
222 config SYSVIPC
223         bool "System V IPC"
224         ---help---
225           Inter Process Communication is a suite of library functions and
226           system calls which let processes (running programs) synchronize and
227           exchange information. It is generally considered to be a good thing,
228           and some programs won't run unless you say Y here. In particular, if
229           you want to run the DOS emulator dosemu under Linux (read the
230           DOSEMU-HOWTO, available from <http://www.tldp.org/docs.html#howto>),
231           you'll need to say Y here.
232
233           You can find documentation about IPC with "info ipc" and also in
234           section 6.4 of the Linux Programmer's Guide, available from
235           <http://www.tldp.org/guides.html>.
236
237 config SYSVIPC_SYSCTL
238         bool
239         depends on SYSVIPC
240         depends on SYSCTL
241         default y
242
243 config POSIX_MQUEUE
244         bool "POSIX Message Queues"
245         depends on NET
246         ---help---
247           POSIX variant of message queues is a part of IPC. In POSIX message
248           queues every message has a priority which decides about succession
249           of receiving it by a process. If you want to compile and run
250           programs written e.g. for Solaris with use of its POSIX message
251           queues (functions mq_*) say Y here.
252
253           POSIX message queues are visible as a filesystem called 'mqueue'
254           and can be mounted somewhere if you want to do filesystem
255           operations on message queues.
256
257           If unsure, say Y.
258
259 config POSIX_MQUEUE_SYSCTL
260         bool
261         depends on POSIX_MQUEUE
262         depends on SYSCTL
263         default y
264
265 config CROSS_MEMORY_ATTACH
266         bool "Enable process_vm_readv/writev syscalls"
267         depends on MMU
268         default y
269         help
270           Enabling this option adds the system calls process_vm_readv and
271           process_vm_writev which allow a process with the correct privileges
272           to directly read from or write to another process' address space.
273           See the man page for more details.
274
275 config FHANDLE
276         bool "open by fhandle syscalls" if EXPERT
277         select EXPORTFS
278         default y
279         help
280           If you say Y here, a user level program will be able to map
281           file names to handle and then later use the handle for
282           different file system operations. This is useful in implementing
283           userspace file servers, which now track files using handles instead
284           of names. The handle would remain the same even if file names
285           get renamed. Enables open_by_handle_at(2) and name_to_handle_at(2)
286           syscalls.
287
288 config USELIB
289         bool "uselib syscall"
290         def_bool ALPHA || M68K || SPARC || X86_32 || IA32_EMULATION
291         help
292           This option enables the uselib syscall, a system call used in the
293           dynamic linker from libc5 and earlier.  glibc does not use this
294           system call.  If you intend to run programs built on libc5 or
295           earlier, you may need to enable this syscall.  Current systems
296           running glibc can safely disable this.
297
298 config AUDIT
299         bool "Auditing support"
300         depends on NET
301         help
302           Enable auditing infrastructure that can be used with another
303           kernel subsystem, such as SELinux (which requires this for
304           logging of avc messages output).  System call auditing is included
305           on architectures which support it.
306
307 config HAVE_ARCH_AUDITSYSCALL
308         bool
309
310 config AUDITSYSCALL
311         def_bool y
312         depends on AUDIT && HAVE_ARCH_AUDITSYSCALL
313
314 config AUDIT_WATCH
315         def_bool y
316         depends on AUDITSYSCALL
317         select FSNOTIFY
318
319 config AUDIT_TREE
320         def_bool y
321         depends on AUDITSYSCALL
322         select FSNOTIFY
323
324 source "kernel/irq/Kconfig"
325 source "kernel/time/Kconfig"
326
327 menu "CPU/Task time and stats accounting"
328
329 config VIRT_CPU_ACCOUNTING
330         bool
331
332 choice
333         prompt "Cputime accounting"
334         default TICK_CPU_ACCOUNTING if !PPC64
335         default VIRT_CPU_ACCOUNTING_NATIVE if PPC64
336
337 # Kind of a stub config for the pure tick based cputime accounting
338 config TICK_CPU_ACCOUNTING
339         bool "Simple tick based cputime accounting"
340         depends on !S390 && !NO_HZ_FULL
341         help
342           This is the basic tick based cputime accounting that maintains
343           statistics about user, system and idle time spent on per jiffies
344           granularity.
345
346           If unsure, say Y.
347
348 config VIRT_CPU_ACCOUNTING_NATIVE
349         bool "Deterministic task and CPU time accounting"
350         depends on HAVE_VIRT_CPU_ACCOUNTING && !NO_HZ_FULL
351         select VIRT_CPU_ACCOUNTING
352         help
353           Select this option to enable more accurate task and CPU time
354           accounting.  This is done by reading a CPU counter on each
355           kernel entry and exit and on transitions within the kernel
356           between system, softirq and hardirq state, so there is a
357           small performance impact.  In the case of s390 or IBM POWER > 5,
358           this also enables accounting of stolen time on logically-partitioned
359           systems.
360
361 config VIRT_CPU_ACCOUNTING_GEN
362         bool "Full dynticks CPU time accounting"
363         depends on HAVE_CONTEXT_TRACKING
364         depends on HAVE_VIRT_CPU_ACCOUNTING_GEN
365         select VIRT_CPU_ACCOUNTING
366         select CONTEXT_TRACKING
367         help
368           Select this option to enable task and CPU time accounting on full
369           dynticks systems. This accounting is implemented by watching every
370           kernel-user boundaries using the context tracking subsystem.
371           The accounting is thus performed at the expense of some significant
372           overhead.
373
374           For now this is only useful if you are working on the full
375           dynticks subsystem development.
376
377           If unsure, say N.
378
379 endchoice
380
381 config IRQ_TIME_ACCOUNTING
382         bool "Fine granularity task level IRQ time accounting"
383         depends on HAVE_IRQ_TIME_ACCOUNTING && !VIRT_CPU_ACCOUNTING_NATIVE
384         help
385           Select this option to enable fine granularity task irq time
386           accounting. This is done by reading a timestamp on each
387           transitions between softirq and hardirq state, so there can be a
388           small performance impact.
389
390           If in doubt, say N here.
391
392 config BSD_PROCESS_ACCT
393         bool "BSD Process Accounting"
394         depends on MULTIUSER
395         help
396           If you say Y here, a user level program will be able to instruct the
397           kernel (via a special system call) to write process accounting
398           information to a file: whenever a process exits, information about
399           that process will be appended to the file by the kernel.  The
400           information includes things such as creation time, owning user,
401           command name, memory usage, controlling terminal etc. (the complete
402           list is in the struct acct in <file:include/linux/acct.h>).  It is
403           up to the user level program to do useful things with this
404           information.  This is generally a good idea, so say Y.
405
406 config BSD_PROCESS_ACCT_V3
407         bool "BSD Process Accounting version 3 file format"
408         depends on BSD_PROCESS_ACCT
409         default n
410         help
411           If you say Y here, the process accounting information is written
412           in a new file format that also logs the process IDs of each
413           process and it's parent. Note that this file format is incompatible
414           with previous v0/v1/v2 file formats, so you will need updated tools
415           for processing it. A preliminary version of these tools is available
416           at <http://www.gnu.org/software/acct/>.
417
418 config TASKSTATS
419         bool "Export task/process statistics through netlink"
420         depends on NET
421         depends on MULTIUSER
422         default n
423         help
424           Export selected statistics for tasks/processes through the
425           generic netlink interface. Unlike BSD process accounting, the
426           statistics are available during the lifetime of tasks/processes as
427           responses to commands. Like BSD accounting, they are sent to user
428           space on task exit.
429
430           Say N if unsure.
431
432 config TASK_DELAY_ACCT
433         bool "Enable per-task delay accounting"
434         depends on TASKSTATS
435         select SCHED_INFO
436         help
437           Collect information on time spent by a task waiting for system
438           resources like cpu, synchronous block I/O completion and swapping
439           in pages. Such statistics can help in setting a task's priorities
440           relative to other tasks for cpu, io, rss limits etc.
441
442           Say N if unsure.
443
444 config TASK_XACCT
445         bool "Enable extended accounting over taskstats"
446         depends on TASKSTATS
447         help
448           Collect extended task accounting data and send the data
449           to userland for processing over the taskstats interface.
450
451           Say N if unsure.
452
453 config TASK_IO_ACCOUNTING
454         bool "Enable per-task storage I/O accounting"
455         depends on TASK_XACCT
456         help
457           Collect information on the number of bytes of storage I/O which this
458           task has caused.
459
460           Say N if unsure.
461
462 endmenu # "CPU/Task time and stats accounting"
463
464 menu "RCU Subsystem"
465
466 config TREE_RCU
467         bool
468         default y if !PREEMPT && SMP
469         help
470           This option selects the RCU implementation that is
471           designed for very large SMP system with hundreds or
472           thousands of CPUs.  It also scales down nicely to
473           smaller systems.
474
475 config PREEMPT_RCU
476         bool
477         default y if PREEMPT
478         help
479           This option selects the RCU implementation that is
480           designed for very large SMP systems with hundreds or
481           thousands of CPUs, but for which real-time response
482           is also required.  It also scales down nicely to
483           smaller systems.
484
485           Select this option if you are unsure.
486
487 config TINY_RCU
488         bool
489         default y if !PREEMPT && !SMP
490         help
491           This option selects the RCU implementation that is
492           designed for UP systems from which real-time response
493           is not required.  This option greatly reduces the
494           memory footprint of RCU.
495
496 config RCU_EXPERT
497         bool "Make expert-level adjustments to RCU configuration"
498         default n
499         help
500           This option needs to be enabled if you wish to make
501           expert-level adjustments to RCU configuration.  By default,
502           no such adjustments can be made, which has the often-beneficial
503           side-effect of preventing "make oldconfig" from asking you all
504           sorts of detailed questions about how you would like numerous
505           obscure RCU options to be set up.
506
507           Say Y if you need to make expert-level adjustments to RCU.
508
509           Say N if you are unsure.
510
511 config SRCU
512         bool
513         help
514           This option selects the sleepable version of RCU. This version
515           permits arbitrary sleeping or blocking within RCU read-side critical
516           sections.
517
518 config TASKS_RCU
519         bool
520         default n
521         depends on !UML
522         select SRCU
523         help
524           This option enables a task-based RCU implementation that uses
525           only voluntary context switch (not preemption!), idle, and
526           user-mode execution as quiescent states.
527
528 config RCU_STALL_COMMON
529         def_bool ( TREE_RCU || PREEMPT_RCU || RCU_TRACE )
530         help
531           This option enables RCU CPU stall code that is common between
532           the TINY and TREE variants of RCU.  The purpose is to allow
533           the tiny variants to disable RCU CPU stall warnings, while
534           making these warnings mandatory for the tree variants.
535
536 config CONTEXT_TRACKING
537        bool
538
539 config CONTEXT_TRACKING_FORCE
540         bool "Force context tracking"
541         depends on CONTEXT_TRACKING
542         default y if !NO_HZ_FULL
543         help
544           The major pre-requirement for full dynticks to work is to
545           support the context tracking subsystem. But there are also
546           other dependencies to provide in order to make the full
547           dynticks working.
548
549           This option stands for testing when an arch implements the
550           context tracking backend but doesn't yet fullfill all the
551           requirements to make the full dynticks feature working.
552           Without the full dynticks, there is no way to test the support
553           for context tracking and the subsystems that rely on it: RCU
554           userspace extended quiescent state and tickless cputime
555           accounting. This option copes with the absence of the full
556           dynticks subsystem by forcing the context tracking on all
557           CPUs in the system.
558
559           Say Y only if you're working on the development of an
560           architecture backend for the context tracking.
561
562           Say N otherwise, this option brings an overhead that you
563           don't want in production.
564
565
566 config RCU_FANOUT
567         int "Tree-based hierarchical RCU fanout value"
568         range 2 64 if 64BIT
569         range 2 32 if !64BIT
570         depends on (TREE_RCU || PREEMPT_RCU) && RCU_EXPERT
571         default 64 if 64BIT
572         default 32 if !64BIT
573         help
574           This option controls the fanout of hierarchical implementations
575           of RCU, allowing RCU to work efficiently on machines with
576           large numbers of CPUs.  This value must be at least the fourth
577           root of NR_CPUS, which allows NR_CPUS to be insanely large.
578           The default value of RCU_FANOUT should be used for production
579           systems, but if you are stress-testing the RCU implementation
580           itself, small RCU_FANOUT values allow you to test large-system
581           code paths on small(er) systems.
582
583           Select a specific number if testing RCU itself.
584           Take the default if unsure.
585
586 config RCU_FANOUT_LEAF
587         int "Tree-based hierarchical RCU leaf-level fanout value"
588         range 2 64 if 64BIT
589         range 2 32 if !64BIT
590         depends on (TREE_RCU || PREEMPT_RCU) && RCU_EXPERT
591         default 16
592         help
593           This option controls the leaf-level fanout of hierarchical
594           implementations of RCU, and allows trading off cache misses
595           against lock contention.  Systems that synchronize their
596           scheduling-clock interrupts for energy-efficiency reasons will
597           want the default because the smaller leaf-level fanout keeps
598           lock contention levels acceptably low.  Very large systems
599           (hundreds or thousands of CPUs) will instead want to set this
600           value to the maximum value possible in order to reduce the
601           number of cache misses incurred during RCU's grace-period
602           initialization.  These systems tend to run CPU-bound, and thus
603           are not helped by synchronized interrupts, and thus tend to
604           skew them, which reduces lock contention enough that large
605           leaf-level fanouts work well.
606
607           Select a specific number if testing RCU itself.
608
609           Select the maximum permissible value for large systems.
610
611           Take the default if unsure.
612
613 config RCU_FAST_NO_HZ
614         bool "Accelerate last non-dyntick-idle CPU's grace periods"
615         depends on NO_HZ_COMMON && SMP && RCU_EXPERT
616         default n
617         help
618           This option permits CPUs to enter dynticks-idle state even if
619           they have RCU callbacks queued, and prevents RCU from waking
620           these CPUs up more than roughly once every four jiffies (by
621           default, you can adjust this using the rcutree.rcu_idle_gp_delay
622           parameter), thus improving energy efficiency.  On the other
623           hand, this option increases the duration of RCU grace periods,
624           for example, slowing down synchronize_rcu().
625
626           Say Y if energy efficiency is critically important, and you
627                 don't care about increased grace-period durations.
628
629           Say N if you are unsure.
630
631 config TREE_RCU_TRACE
632         def_bool RCU_TRACE && ( TREE_RCU || PREEMPT_RCU )
633         select DEBUG_FS
634         help
635           This option provides tracing for the TREE_RCU and
636           PREEMPT_RCU implementations, permitting Makefile to
637           trivially select kernel/rcutree_trace.c.
638
639 config RCU_BOOST
640         bool "Enable RCU priority boosting"
641         depends on RT_MUTEXES && PREEMPT_RCU && RCU_EXPERT
642         default n
643         help
644           This option boosts the priority of preempted RCU readers that
645           block the current preemptible RCU grace period for too long.
646           This option also prevents heavy loads from blocking RCU
647           callback invocation for all flavors of RCU.
648
649           Say Y here if you are working with real-time apps or heavy loads
650           Say N here if you are unsure.
651
652 config RCU_KTHREAD_PRIO
653         int "Real-time priority to use for RCU worker threads"
654         range 1 99 if RCU_BOOST
655         range 0 99 if !RCU_BOOST
656         default 1 if RCU_BOOST
657         default 0 if !RCU_BOOST
658         depends on RCU_EXPERT
659         help
660           This option specifies the SCHED_FIFO priority value that will be
661           assigned to the rcuc/n and rcub/n threads and is also the value
662           used for RCU_BOOST (if enabled). If you are working with a
663           real-time application that has one or more CPU-bound threads
664           running at a real-time priority level, you should set
665           RCU_KTHREAD_PRIO to a priority higher than the highest-priority
666           real-time CPU-bound application thread.  The default RCU_KTHREAD_PRIO
667           value of 1 is appropriate in the common case, which is real-time
668           applications that do not have any CPU-bound threads.
669
670           Some real-time applications might not have a single real-time
671           thread that saturates a given CPU, but instead might have
672           multiple real-time threads that, taken together, fully utilize
673           that CPU.  In this case, you should set RCU_KTHREAD_PRIO to
674           a priority higher than the lowest-priority thread that is
675           conspiring to prevent the CPU from running any non-real-time
676           tasks.  For example, if one thread at priority 10 and another
677           thread at priority 5 are between themselves fully consuming
678           the CPU time on a given CPU, then RCU_KTHREAD_PRIO should be
679           set to priority 6 or higher.
680
681           Specify the real-time priority, or take the default if unsure.
682
683 config RCU_BOOST_DELAY
684         int "Milliseconds to delay boosting after RCU grace-period start"
685         range 0 3000
686         depends on RCU_BOOST
687         default 500
688         help
689           This option specifies the time to wait after the beginning of
690           a given grace period before priority-boosting preempted RCU
691           readers blocking that grace period.  Note that any RCU reader
692           blocking an expedited RCU grace period is boosted immediately.
693
694           Accept the default if unsure.
695
696 config RCU_NOCB_CPU
697         bool "Offload RCU callback processing from boot-selected CPUs"
698         depends on TREE_RCU || PREEMPT_RCU
699         depends on RCU_EXPERT || NO_HZ_FULL
700         default n
701         help
702           Use this option to reduce OS jitter for aggressive HPC or
703           real-time workloads.  It can also be used to offload RCU
704           callback invocation to energy-efficient CPUs in battery-powered
705           asymmetric multiprocessors.
706
707           This option offloads callback invocation from the set of
708           CPUs specified at boot time by the rcu_nocbs parameter.
709           For each such CPU, a kthread ("rcuox/N") will be created to
710           invoke callbacks, where the "N" is the CPU being offloaded,
711           and where the "x" is "b" for RCU-bh, "p" for RCU-preempt, and
712           "s" for RCU-sched.  Nothing prevents this kthread from running
713           on the specified CPUs, but (1) the kthreads may be preempted
714           between each callback, and (2) affinity or cgroups can be used
715           to force the kthreads to run on whatever set of CPUs is desired.
716
717           Say Y here if you want to help to debug reduced OS jitter.
718           Say N here if you are unsure.
719
720 choice
721         prompt "Build-forced no-CBs CPUs"
722         default RCU_NOCB_CPU_NONE
723         depends on RCU_NOCB_CPU
724         help
725           This option allows no-CBs CPUs (whose RCU callbacks are invoked
726           from kthreads rather than from softirq context) to be specified
727           at build time.  Additional no-CBs CPUs may be specified by
728           the rcu_nocbs= boot parameter.
729
730 config RCU_NOCB_CPU_NONE
731         bool "No build_forced no-CBs CPUs"
732         help
733           This option does not force any of the CPUs to be no-CBs CPUs.
734           Only CPUs designated by the rcu_nocbs= boot parameter will be
735           no-CBs CPUs, whose RCU callbacks will be invoked by per-CPU
736           kthreads whose names begin with "rcuo".  All other CPUs will
737           invoke their own RCU callbacks in softirq context.
738
739           Select this option if you want to choose no-CBs CPUs at
740           boot time, for example, to allow testing of different no-CBs
741           configurations without having to rebuild the kernel each time.
742
743 config RCU_NOCB_CPU_ZERO
744         bool "CPU 0 is a build_forced no-CBs CPU"
745         help
746           This option forces CPU 0 to be a no-CBs CPU, so that its RCU
747           callbacks are invoked by a per-CPU kthread whose name begins
748           with "rcuo".  Additional CPUs may be designated as no-CBs
749           CPUs using the rcu_nocbs= boot parameter will be no-CBs CPUs.
750           All other CPUs will invoke their own RCU callbacks in softirq
751           context.
752
753           Select this if CPU 0 needs to be a no-CBs CPU for real-time
754           or energy-efficiency reasons, but the real reason it exists
755           is to ensure that randconfig testing covers mixed systems.
756
757 config RCU_NOCB_CPU_ALL
758         bool "All CPUs are build_forced no-CBs CPUs"
759         help
760           This option forces all CPUs to be no-CBs CPUs.  The rcu_nocbs=
761           boot parameter will be ignored.  All CPUs' RCU callbacks will
762           be executed in the context of per-CPU rcuo kthreads created for
763           this purpose.  Assuming that the kthreads whose names start with
764           "rcuo" are bound to "housekeeping" CPUs, this reduces OS jitter
765           on the remaining CPUs, but might decrease memory locality during
766           RCU-callback invocation, thus potentially degrading throughput.
767
768           Select this if all CPUs need to be no-CBs CPUs for real-time
769           or energy-efficiency reasons.
770
771 endchoice
772
773 config RCU_EXPEDITE_BOOT
774         bool
775         default n
776         help
777           This option enables expedited grace periods at boot time,
778           as if rcu_expedite_gp() had been invoked early in boot.
779           The corresponding rcu_unexpedite_gp() is invoked from
780           rcu_end_inkernel_boot(), which is intended to be invoked
781           at the end of the kernel-only boot sequence, just before
782           init is exec'ed.
783
784           Accept the default if unsure.
785
786 endmenu # "RCU Subsystem"
787
788 config BUILD_BIN2C
789         bool
790         default n
791
792 config IKCONFIG
793         tristate "Kernel .config support"
794         select BUILD_BIN2C
795         ---help---
796           This option enables the complete Linux kernel ".config" file
797           contents to be saved in the kernel. It provides documentation
798           of which kernel options are used in a running kernel or in an
799           on-disk kernel.  This information can be extracted from the kernel
800           image file with the script scripts/extract-ikconfig and used as
801           input to rebuild the current kernel or to build another kernel.
802           It can also be extracted from a running kernel by reading
803           /proc/config.gz if enabled (below).
804
805 config IKCONFIG_PROC
806         bool "Enable access to .config through /proc/config.gz"
807         depends on IKCONFIG && PROC_FS
808         ---help---
809           This option enables access to the kernel configuration file
810           through /proc/config.gz.
811
812 config LOG_BUF_SHIFT
813         int "Kernel log buffer size (16 => 64KB, 17 => 128KB)"
814         range 12 25
815         default 17
816         depends on PRINTK
817         help
818           Select the minimal kernel log buffer size as a power of 2.
819           The final size is affected by LOG_CPU_MAX_BUF_SHIFT config
820           parameter, see below. Any higher size also might be forced
821           by "log_buf_len" boot parameter.
822
823           Examples:
824                      17 => 128 KB
825                      16 => 64 KB
826                      15 => 32 KB
827                      14 => 16 KB
828                      13 =>  8 KB
829                      12 =>  4 KB
830
831 config LOG_CPU_MAX_BUF_SHIFT
832         int "CPU kernel log buffer size contribution (13 => 8 KB, 17 => 128KB)"
833         depends on SMP
834         range 0 21
835         default 12 if !BASE_SMALL
836         default 0 if BASE_SMALL
837         depends on PRINTK
838         help
839           This option allows to increase the default ring buffer size
840           according to the number of CPUs. The value defines the contribution
841           of each CPU as a power of 2. The used space is typically only few
842           lines however it might be much more when problems are reported,
843           e.g. backtraces.
844
845           The increased size means that a new buffer has to be allocated and
846           the original static one is unused. It makes sense only on systems
847           with more CPUs. Therefore this value is used only when the sum of
848           contributions is greater than the half of the default kernel ring
849           buffer as defined by LOG_BUF_SHIFT. The default values are set
850           so that more than 64 CPUs are needed to trigger the allocation.
851
852           Also this option is ignored when "log_buf_len" kernel parameter is
853           used as it forces an exact (power of two) size of the ring buffer.
854
855           The number of possible CPUs is used for this computation ignoring
856           hotplugging making the computation optimal for the worst case
857           scenario while allowing a simple algorithm to be used from bootup.
858
859           Examples shift values and their meaning:
860                      17 => 128 KB for each CPU
861                      16 =>  64 KB for each CPU
862                      15 =>  32 KB for each CPU
863                      14 =>  16 KB for each CPU
864                      13 =>   8 KB for each CPU
865                      12 =>   4 KB for each CPU
866
867 config NMI_LOG_BUF_SHIFT
868         int "Temporary per-CPU NMI log buffer size (12 => 4KB, 13 => 8KB)"
869         range 10 21
870         default 13
871         depends on PRINTK_NMI
872         help
873           Select the size of a per-CPU buffer where NMI messages are temporary
874           stored. They are copied to the main log buffer in a safe context
875           to avoid a deadlock. The value defines the size as a power of 2.
876
877           NMI messages are rare and limited. The largest one is when
878           a backtrace is printed. It usually fits into 4KB. Select
879           8KB if you want to be on the safe side.
880
881           Examples:
882                      17 => 128 KB for each CPU
883                      16 =>  64 KB for each CPU
884                      15 =>  32 KB for each CPU
885                      14 =>  16 KB for each CPU
886                      13 =>   8 KB for each CPU
887                      12 =>   4 KB for each CPU
888
889 #
890 # Architectures with an unreliable sched_clock() should select this:
891 #
892 config HAVE_UNSTABLE_SCHED_CLOCK
893         bool
894
895 config GENERIC_SCHED_CLOCK
896         bool
897
898 #
899 # For architectures that want to enable the support for NUMA-affine scheduler
900 # balancing logic:
901 #
902 config ARCH_SUPPORTS_NUMA_BALANCING
903         bool
904
905 #
906 # For architectures that prefer to flush all TLBs after a number of pages
907 # are unmapped instead of sending one IPI per page to flush. The architecture
908 # must provide guarantees on what happens if a clean TLB cache entry is
909 # written after the unmap. Details are in mm/rmap.c near the check for
910 # should_defer_flush. The architecture should also consider if the full flush
911 # and the refill costs are offset by the savings of sending fewer IPIs.
912 config ARCH_WANT_BATCHED_UNMAP_TLB_FLUSH
913         bool
914
915 #
916 # For architectures that know their GCC __int128 support is sound
917 #
918 config ARCH_SUPPORTS_INT128
919         bool
920
921 # For architectures that (ab)use NUMA to represent different memory regions
922 # all cpu-local but of different latencies, such as SuperH.
923 #
924 config ARCH_WANT_NUMA_VARIABLE_LOCALITY
925         bool
926
927 config NUMA_BALANCING
928         bool "Memory placement aware NUMA scheduler"
929         depends on ARCH_SUPPORTS_NUMA_BALANCING
930         depends on !ARCH_WANT_NUMA_VARIABLE_LOCALITY
931         depends on SMP && NUMA && MIGRATION
932         help
933           This option adds support for automatic NUMA aware memory/task placement.
934           The mechanism is quite primitive and is based on migrating memory when
935           it has references to the node the task is running on.
936
937           This system will be inactive on UMA systems.
938
939 config NUMA_BALANCING_DEFAULT_ENABLED
940         bool "Automatically enable NUMA aware memory/task placement"
941         default y
942         depends on NUMA_BALANCING
943         help
944           If set, automatic NUMA balancing will be enabled if running on a NUMA
945           machine.
946
947 menuconfig CGROUPS
948         bool "Control Group support"
949         select KERNFS
950         help
951           This option adds support for grouping sets of processes together, for
952           use with process control subsystems such as Cpusets, CFS, memory
953           controls or device isolation.
954           See
955                 - Documentation/scheduler/sched-design-CFS.txt  (CFS)
956                 - Documentation/cgroup-v1/ (features for grouping, isolation
957                                           and resource control)
958
959           Say N if unsure.
960
961 if CGROUPS
962
963 config PAGE_COUNTER
964        bool
965
966 config MEMCG
967         bool "Memory controller"
968         select PAGE_COUNTER
969         select EVENTFD
970         help
971           Provides control over the memory footprint of tasks in a cgroup.
972
973 config MEMCG_SWAP
974         bool "Swap controller"
975         depends on MEMCG && SWAP
976         help
977           Provides control over the swap space consumed by tasks in a cgroup.
978
979 config MEMCG_SWAP_ENABLED
980         bool "Swap controller enabled by default"
981         depends on MEMCG_SWAP
982         default y
983         help
984           Memory Resource Controller Swap Extension comes with its price in
985           a bigger memory consumption. General purpose distribution kernels
986           which want to enable the feature but keep it disabled by default
987           and let the user enable it by swapaccount=1 boot command line
988           parameter should have this option unselected.
989           For those who want to have the feature enabled by default should
990           select this option (if, for some reason, they need to disable it
991           then swapaccount=0 does the trick).
992
993 config BLK_CGROUP
994         bool "IO controller"
995         depends on BLOCK
996         default n
997         ---help---
998         Generic block IO controller cgroup interface. This is the common
999         cgroup interface which should be used by various IO controlling
1000         policies.
1001
1002         Currently, CFQ IO scheduler uses it to recognize task groups and
1003         control disk bandwidth allocation (proportional time slice allocation)
1004         to such task groups. It is also used by bio throttling logic in
1005         block layer to implement upper limit in IO rates on a device.
1006
1007         This option only enables generic Block IO controller infrastructure.
1008         One needs to also enable actual IO controlling logic/policy. For
1009         enabling proportional weight division of disk bandwidth in CFQ, set
1010         CONFIG_CFQ_GROUP_IOSCHED=y; for enabling throttling policy, set
1011         CONFIG_BLK_DEV_THROTTLING=y.
1012
1013         See Documentation/cgroup-v1/blkio-controller.txt for more information.
1014
1015 config DEBUG_BLK_CGROUP
1016         bool "IO controller debugging"
1017         depends on BLK_CGROUP
1018         default n
1019         ---help---
1020         Enable some debugging help. Currently it exports additional stat
1021         files in a cgroup which can be useful for debugging.
1022
1023 config CGROUP_WRITEBACK
1024         bool
1025         depends on MEMCG && BLK_CGROUP
1026         default y
1027
1028 menuconfig CGROUP_SCHED
1029         bool "CPU controller"
1030         default n
1031         help
1032           This feature lets CPU scheduler recognize task groups and control CPU
1033           bandwidth allocation to such task groups. It uses cgroups to group
1034           tasks.
1035
1036 if CGROUP_SCHED
1037 config FAIR_GROUP_SCHED
1038         bool "Group scheduling for SCHED_OTHER"
1039         depends on CGROUP_SCHED
1040         default CGROUP_SCHED
1041
1042 config CFS_BANDWIDTH
1043         bool "CPU bandwidth provisioning for FAIR_GROUP_SCHED"
1044         depends on FAIR_GROUP_SCHED
1045         default n
1046         help
1047           This option allows users to define CPU bandwidth rates (limits) for
1048           tasks running within the fair group scheduler.  Groups with no limit
1049           set are considered to be unconstrained and will run with no
1050           restriction.
1051           See tip/Documentation/scheduler/sched-bwc.txt for more information.
1052
1053 config RT_GROUP_SCHED
1054         bool "Group scheduling for SCHED_RR/FIFO"
1055         depends on CGROUP_SCHED
1056         default n
1057         help
1058           This feature lets you explicitly allocate real CPU bandwidth
1059           to task groups. If enabled, it will also make it impossible to
1060           schedule realtime tasks for non-root users until you allocate
1061           realtime bandwidth for them.
1062           See Documentation/scheduler/sched-rt-group.txt for more information.
1063
1064 endif #CGROUP_SCHED
1065
1066 config CGROUP_PIDS
1067         bool "PIDs controller"
1068         help
1069           Provides enforcement of process number limits in the scope of a
1070           cgroup. Any attempt to fork more processes than is allowed in the
1071           cgroup will fail. PIDs are fundamentally a global resource because it
1072           is fairly trivial to reach PID exhaustion before you reach even a
1073           conservative kmemcg limit. As a result, it is possible to grind a
1074           system to halt without being limited by other cgroup policies. The
1075           PIDs controller is designed to stop this from happening.
1076
1077           It should be noted that organisational operations (such as attaching
1078           to a cgroup hierarchy will *not* be blocked by the PIDs controller),
1079           since the PIDs limit only affects a process's ability to fork, not to
1080           attach to a cgroup.
1081
1082 config CGROUP_FREEZER
1083         bool "Freezer controller"
1084         help
1085           Provides a way to freeze and unfreeze all tasks in a
1086           cgroup.
1087
1088           This option affects the ORIGINAL cgroup interface. The cgroup2 memory
1089           controller includes important in-kernel memory consumers per default.
1090
1091           If you're using cgroup2, say N.
1092
1093 config CGROUP_HUGETLB
1094         bool "HugeTLB controller"
1095         depends on HUGETLB_PAGE
1096         select PAGE_COUNTER
1097         default n
1098         help
1099           Provides a cgroup controller for HugeTLB pages.
1100           When you enable this, you can put a per cgroup limit on HugeTLB usage.
1101           The limit is enforced during page fault. Since HugeTLB doesn't
1102           support page reclaim, enforcing the limit at page fault time implies
1103           that, the application will get SIGBUS signal if it tries to access
1104           HugeTLB pages beyond its limit. This requires the application to know
1105           beforehand how much HugeTLB pages it would require for its use. The
1106           control group is tracked in the third page lru pointer. This means
1107           that we cannot use the controller with huge page less than 3 pages.
1108
1109 config CPUSETS
1110         bool "Cpuset controller"
1111         help
1112           This option will let you create and manage CPUSETs which
1113           allow dynamically partitioning a system into sets of CPUs and
1114           Memory Nodes and assigning tasks to run only within those sets.
1115           This is primarily useful on large SMP or NUMA systems.
1116
1117           Say N if unsure.
1118
1119 config PROC_PID_CPUSET
1120         bool "Include legacy /proc/<pid>/cpuset file"
1121         depends on CPUSETS
1122         default y
1123
1124 config CGROUP_DEVICE
1125         bool "Device controller"
1126         help
1127           Provides a cgroup controller implementing whitelists for
1128           devices which a process in the cgroup can mknod or open.
1129
1130 config CGROUP_CPUACCT
1131         bool "Simple CPU accounting controller"
1132         help
1133           Provides a simple controller for monitoring the
1134           total CPU consumed by the tasks in a cgroup.
1135
1136 config CGROUP_PERF
1137         bool "Perf controller"
1138         depends on PERF_EVENTS
1139         help
1140           This option extends the perf per-cpu mode to restrict monitoring
1141           to threads which belong to the cgroup specified and run on the
1142           designated cpu.
1143
1144           Say N if unsure.
1145
1146 config CGROUP_DEBUG
1147         bool "Example controller"
1148         default n
1149         help
1150           This option enables a simple controller that exports
1151           debugging information about the cgroups framework.
1152
1153           Say N.
1154
1155 endif # CGROUPS
1156
1157 config CHECKPOINT_RESTORE
1158         bool "Checkpoint/restore support" if EXPERT
1159         select PROC_CHILDREN
1160         default n
1161         help
1162           Enables additional kernel features in a sake of checkpoint/restore.
1163           In particular it adds auxiliary prctl codes to setup process text,
1164           data and heap segment sizes, and a few additional /proc filesystem
1165           entries.
1166
1167           If unsure, say N here.
1168
1169 menuconfig NAMESPACES
1170         bool "Namespaces support" if EXPERT
1171         depends on MULTIUSER
1172         default !EXPERT
1173         help
1174           Provides the way to make tasks work with different objects using
1175           the same id. For example same IPC id may refer to different objects
1176           or same user id or pid may refer to different tasks when used in
1177           different namespaces.
1178
1179 if NAMESPACES
1180
1181 config UTS_NS
1182         bool "UTS namespace"
1183         default y
1184         help
1185           In this namespace tasks see different info provided with the
1186           uname() system call
1187
1188 config IPC_NS
1189         bool "IPC namespace"
1190         depends on (SYSVIPC || POSIX_MQUEUE)
1191         default y
1192         help
1193           In this namespace tasks work with IPC ids which correspond to
1194           different IPC objects in different namespaces.
1195
1196 config USER_NS
1197         bool "User namespace"
1198         default n
1199         help
1200           This allows containers, i.e. vservers, to use user namespaces
1201           to provide different user info for different servers.
1202
1203           When user namespaces are enabled in the kernel it is
1204           recommended that the MEMCG option also be enabled and that
1205           user-space use the memory control groups to limit the amount
1206           of memory a memory unprivileged users can use.
1207
1208           If unsure, say N.
1209
1210 config PID_NS
1211         bool "PID Namespaces"
1212         default y
1213         help
1214           Support process id namespaces.  This allows having multiple
1215           processes with the same pid as long as they are in different
1216           pid namespaces.  This is a building block of containers.
1217
1218 config NET_NS
1219         bool "Network namespace"
1220         depends on NET
1221         default y
1222         help
1223           Allow user space to create what appear to be multiple instances
1224           of the network stack.
1225
1226 endif # NAMESPACES
1227
1228 config SCHED_AUTOGROUP
1229         bool "Automatic process group scheduling"
1230         select CGROUPS
1231         select CGROUP_SCHED
1232         select FAIR_GROUP_SCHED
1233         help
1234           This option optimizes the scheduler for common desktop workloads by
1235           automatically creating and populating task groups.  This separation
1236           of workloads isolates aggressive CPU burners (like build jobs) from
1237           desktop applications.  Task group autogeneration is currently based
1238           upon task session.
1239
1240 config SYSFS_DEPRECATED
1241         bool "Enable deprecated sysfs features to support old userspace tools"
1242         depends on SYSFS
1243         default n
1244         help
1245           This option adds code that switches the layout of the "block" class
1246           devices, to not show up in /sys/class/block/, but only in
1247           /sys/block/.
1248
1249           This switch is only active when the sysfs.deprecated=1 boot option is
1250           passed or the SYSFS_DEPRECATED_V2 option is set.
1251
1252           This option allows new kernels to run on old distributions and tools,
1253           which might get confused by /sys/class/block/. Since 2007/2008 all
1254           major distributions and tools handle this just fine.
1255
1256           Recent distributions and userspace tools after 2009/2010 depend on
1257           the existence of /sys/class/block/, and will not work with this
1258           option enabled.
1259
1260           Only if you are using a new kernel on an old distribution, you might
1261           need to say Y here.
1262
1263 config SYSFS_DEPRECATED_V2
1264         bool "Enable deprecated sysfs features by default"
1265         default n
1266         depends on SYSFS
1267         depends on SYSFS_DEPRECATED
1268         help
1269           Enable deprecated sysfs by default.
1270
1271           See the CONFIG_SYSFS_DEPRECATED option for more details about this
1272           option.
1273
1274           Only if you are using a new kernel on an old distribution, you might
1275           need to say Y here. Even then, odds are you would not need it
1276           enabled, you can always pass the boot option if absolutely necessary.
1277
1278 config RELAY
1279         bool "Kernel->user space relay support (formerly relayfs)"
1280         help
1281           This option enables support for relay interface support in
1282           certain file systems (such as debugfs).
1283           It is designed to provide an efficient mechanism for tools and
1284           facilities to relay large amounts of data from kernel space to
1285           user space.
1286
1287           If unsure, say N.
1288
1289 config BLK_DEV_INITRD
1290         bool "Initial RAM filesystem and RAM disk (initramfs/initrd) support"
1291         depends on BROKEN || !FRV
1292         help
1293           The initial RAM filesystem is a ramfs which is loaded by the
1294           boot loader (loadlin or lilo) and that is mounted as root
1295           before the normal boot procedure. It is typically used to
1296           load modules needed to mount the "real" root file system,
1297           etc. See <file:Documentation/initrd.txt> for details.
1298
1299           If RAM disk support (BLK_DEV_RAM) is also included, this
1300           also enables initial RAM disk (initrd) support and adds
1301           15 Kbytes (more on some other architectures) to the kernel size.
1302
1303           If unsure say Y.
1304
1305 if BLK_DEV_INITRD
1306
1307 source "usr/Kconfig"
1308
1309 endif
1310
1311 choice
1312         prompt "Compiler optimization level"
1313         default CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE
1314
1315 config CC_OPTIMIZE_FOR_PERFORMANCE
1316         bool "Optimize for performance"
1317         help
1318           This is the default optimization level for the kernel, building
1319           with the "-O2" compiler flag for best performance and most
1320           helpful compile-time warnings.
1321
1322 config CC_OPTIMIZE_FOR_SIZE
1323         bool "Optimize for size"
1324         help
1325           Enabling this option will pass "-Os" instead of "-O2" to
1326           your compiler resulting in a smaller kernel.
1327
1328           If unsure, say N.
1329
1330 endchoice
1331
1332 config SYSCTL
1333         bool
1334
1335 config ANON_INODES
1336         bool
1337
1338 config HAVE_UID16
1339         bool
1340
1341 config SYSCTL_EXCEPTION_TRACE
1342         bool
1343         help
1344           Enable support for /proc/sys/debug/exception-trace.
1345
1346 config SYSCTL_ARCH_UNALIGN_NO_WARN
1347         bool
1348         help
1349           Enable support for /proc/sys/kernel/ignore-unaligned-usertrap
1350           Allows arch to define/use @no_unaligned_warning to possibly warn
1351           about unaligned access emulation going on under the hood.
1352
1353 config SYSCTL_ARCH_UNALIGN_ALLOW
1354         bool
1355         help
1356           Enable support for /proc/sys/kernel/unaligned-trap
1357           Allows arches to define/use @unaligned_enabled to runtime toggle
1358           the unaligned access emulation.
1359           see arch/parisc/kernel/unaligned.c for reference
1360
1361 config HAVE_PCSPKR_PLATFORM
1362         bool
1363
1364 # interpreter that classic socket filters depend on
1365 config BPF
1366         bool
1367
1368 menuconfig EXPERT
1369         bool "Configure standard kernel features (expert users)"
1370         # Unhide debug options, to make the on-by-default options visible
1371         select DEBUG_KERNEL
1372         help
1373           This option allows certain base kernel options and settings
1374           to be disabled or tweaked. This is for specialized
1375           environments which can tolerate a "non-standard" kernel.
1376           Only use this if you really know what you are doing.
1377
1378 config UID16
1379         bool "Enable 16-bit UID system calls" if EXPERT
1380         depends on HAVE_UID16 && MULTIUSER
1381         default y
1382         help
1383           This enables the legacy 16-bit UID syscall wrappers.
1384
1385 config MULTIUSER
1386         bool "Multiple users, groups and capabilities support" if EXPERT
1387         default y
1388         help
1389           This option enables support for non-root users, groups and
1390           capabilities.
1391
1392           If you say N here, all processes will run with UID 0, GID 0, and all
1393           possible capabilities.  Saying N here also compiles out support for
1394           system calls related to UIDs, GIDs, and capabilities, such as setuid,
1395           setgid, and capset.
1396
1397           If unsure, say Y here.
1398
1399 config SGETMASK_SYSCALL
1400         bool "sgetmask/ssetmask syscalls support" if EXPERT
1401         def_bool PARISC || MN10300 || BLACKFIN || M68K || PPC || MIPS || X86 || SPARC || CRIS || MICROBLAZE || SUPERH
1402         ---help---
1403           sys_sgetmask and sys_ssetmask are obsolete system calls
1404           no longer supported in libc but still enabled by default in some
1405           architectures.
1406
1407           If unsure, leave the default option here.
1408
1409 config SYSFS_SYSCALL
1410         bool "Sysfs syscall support" if EXPERT
1411         default y
1412         ---help---
1413           sys_sysfs is an obsolete system call no longer supported in libc.
1414           Note that disabling this option is more secure but might break
1415           compatibility with some systems.
1416
1417           If unsure say Y here.
1418
1419 config SYSCTL_SYSCALL
1420         bool "Sysctl syscall support" if EXPERT
1421         depends on PROC_SYSCTL
1422         default n
1423         select SYSCTL
1424         ---help---
1425           sys_sysctl uses binary paths that have been found challenging
1426           to properly maintain and use.  The interface in /proc/sys
1427           using paths with ascii names is now the primary path to this
1428           information.
1429
1430           Almost nothing using the binary sysctl interface so if you are
1431           trying to save some space it is probably safe to disable this,
1432           making your kernel marginally smaller.
1433
1434           If unsure say N here.
1435
1436 config KALLSYMS
1437          bool "Load all symbols for debugging/ksymoops" if EXPERT
1438          default y
1439          help
1440            Say Y here to let the kernel print out symbolic crash information and
1441            symbolic stack backtraces. This increases the size of the kernel
1442            somewhat, as all symbols have to be loaded into the kernel image.
1443
1444 config KALLSYMS_ALL
1445         bool "Include all symbols in kallsyms"
1446         depends on DEBUG_KERNEL && KALLSYMS
1447         help
1448            Normally kallsyms only contains the symbols of functions for nicer
1449            OOPS messages and backtraces (i.e., symbols from the text and inittext
1450            sections). This is sufficient for most cases. And only in very rare
1451            cases (e.g., when a debugger is used) all symbols are required (e.g.,
1452            names of variables from the data sections, etc).
1453
1454            This option makes sure that all symbols are loaded into the kernel
1455            image (i.e., symbols from all sections) in cost of increased kernel
1456            size (depending on the kernel configuration, it may be 300KiB or
1457            something like this).
1458
1459            Say N unless you really need all symbols.
1460
1461 config KALLSYMS_ABSOLUTE_PERCPU
1462         bool
1463         depends on KALLSYMS
1464         default X86_64 && SMP
1465
1466 config KALLSYMS_BASE_RELATIVE
1467         bool
1468         depends on KALLSYMS
1469         default !IA64 && !(TILE && 64BIT)
1470         help
1471           Instead of emitting them as absolute values in the native word size,
1472           emit the symbol references in the kallsyms table as 32-bit entries,
1473           each containing a relative value in the range [base, base + U32_MAX]
1474           or, when KALLSYMS_ABSOLUTE_PERCPU is in effect, each containing either
1475           an absolute value in the range [0, S32_MAX] or a relative value in the
1476           range [base, base + S32_MAX], where base is the lowest relative symbol
1477           address encountered in the image.
1478
1479           On 64-bit builds, this reduces the size of the address table by 50%,
1480           but more importantly, it results in entries whose values are build
1481           time constants, and no relocation pass is required at runtime to fix
1482           up the entries based on the runtime load address of the kernel.
1483
1484 config PRINTK
1485         default y
1486         bool "Enable support for printk" if EXPERT
1487         select IRQ_WORK
1488         help
1489           This option enables normal printk support. Removing it
1490           eliminates most of the message strings from the kernel image
1491           and makes the kernel more or less silent. As this makes it
1492           very difficult to diagnose system problems, saying N here is
1493           strongly discouraged.
1494
1495 config PRINTK_NMI
1496         def_bool y
1497         depends on PRINTK
1498         depends on HAVE_NMI
1499
1500 config BUG
1501         bool "BUG() support" if EXPERT
1502         default y
1503         help
1504           Disabling this option eliminates support for BUG and WARN, reducing
1505           the size of your kernel image and potentially quietly ignoring
1506           numerous fatal conditions. You should only consider disabling this
1507           option for embedded systems with no facilities for reporting errors.
1508           Just say Y.
1509
1510 config ELF_CORE
1511         depends on COREDUMP
1512         default y
1513         bool "Enable ELF core dumps" if EXPERT
1514         help
1515           Enable support for generating core dumps. Disabling saves about 4k.
1516
1517
1518 config PCSPKR_PLATFORM
1519         bool "Enable PC-Speaker support" if EXPERT
1520         depends on HAVE_PCSPKR_PLATFORM
1521         select I8253_LOCK
1522         default y
1523         help
1524           This option allows to disable the internal PC-Speaker
1525           support, saving some memory.
1526
1527 config BASE_FULL
1528         default y
1529         bool "Enable full-sized data structures for core" if EXPERT
1530         help
1531           Disabling this option reduces the size of miscellaneous core
1532           kernel data structures. This saves memory on small machines,
1533           but may reduce performance.
1534
1535 config FUTEX
1536         bool "Enable futex support" if EXPERT
1537         default y
1538         select RT_MUTEXES
1539         help
1540           Disabling this option will cause the kernel to be built without
1541           support for "fast userspace mutexes".  The resulting kernel may not
1542           run glibc-based applications correctly.
1543
1544 config HAVE_FUTEX_CMPXCHG
1545         bool
1546         depends on FUTEX
1547         help
1548           Architectures should select this if futex_atomic_cmpxchg_inatomic()
1549           is implemented and always working. This removes a couple of runtime
1550           checks.
1551
1552 config EPOLL
1553         bool "Enable eventpoll support" if EXPERT
1554         default y
1555         select ANON_INODES
1556         help
1557           Disabling this option will cause the kernel to be built without
1558           support for epoll family of system calls.
1559
1560 config SIGNALFD
1561         bool "Enable signalfd() system call" if EXPERT
1562         select ANON_INODES
1563         default y
1564         help
1565           Enable the signalfd() system call that allows to receive signals
1566           on a file descriptor.
1567
1568           If unsure, say Y.
1569
1570 config TIMERFD
1571         bool "Enable timerfd() system call" if EXPERT
1572         select ANON_INODES
1573         default y
1574         help
1575           Enable the timerfd() system call that allows to receive timer
1576           events on a file descriptor.
1577
1578           If unsure, say Y.
1579
1580 config EVENTFD
1581         bool "Enable eventfd() system call" if EXPERT
1582         select ANON_INODES
1583         default y
1584         help
1585           Enable the eventfd() system call that allows to receive both
1586           kernel notification (ie. KAIO) or userspace notifications.
1587
1588           If unsure, say Y.
1589
1590 # syscall, maps, verifier
1591 config BPF_SYSCALL
1592         bool "Enable bpf() system call"
1593         select ANON_INODES
1594         select BPF
1595         default n
1596         help
1597           Enable the bpf() system call that allows to manipulate eBPF
1598           programs and maps via file descriptors.
1599
1600 config SHMEM
1601         bool "Use full shmem filesystem" if EXPERT
1602         default y
1603         depends on MMU
1604         help
1605           The shmem is an internal filesystem used to manage shared memory.
1606           It is backed by swap and manages resource limits. It is also exported
1607           to userspace as tmpfs if TMPFS is enabled. Disabling this
1608           option replaces shmem and tmpfs with the much simpler ramfs code,
1609           which may be appropriate on small systems without swap.
1610
1611 config AIO
1612         bool "Enable AIO support" if EXPERT
1613         default y
1614         help
1615           This option enables POSIX asynchronous I/O which may by used
1616           by some high performance threaded applications. Disabling
1617           this option saves about 7k.
1618
1619 config ADVISE_SYSCALLS
1620         bool "Enable madvise/fadvise syscalls" if EXPERT
1621         default y
1622         help
1623           This option enables the madvise and fadvise syscalls, used by
1624           applications to advise the kernel about their future memory or file
1625           usage, improving performance. If building an embedded system where no
1626           applications use these syscalls, you can disable this option to save
1627           space.
1628
1629 config USERFAULTFD
1630         bool "Enable userfaultfd() system call"
1631         select ANON_INODES
1632         depends on MMU
1633         help
1634           Enable the userfaultfd() system call that allows to intercept and
1635           handle page faults in userland.
1636
1637 config PCI_QUIRKS
1638         default y
1639         bool "Enable PCI quirk workarounds" if EXPERT
1640         depends on PCI
1641         help
1642           This enables workarounds for various PCI chipset
1643           bugs/quirks. Disable this only if your target machine is
1644           unaffected by PCI quirks.
1645
1646 config MEMBARRIER
1647         bool "Enable membarrier() system call" if EXPERT
1648         default y
1649         help
1650           Enable the membarrier() system call that allows issuing memory
1651           barriers across all running threads, which can be used to distribute
1652           the cost of user-space memory barriers asymmetrically by transforming
1653           pairs of memory barriers into pairs consisting of membarrier() and a
1654           compiler barrier.
1655
1656           If unsure, say Y.
1657
1658 config EMBEDDED
1659         bool "Embedded system"
1660         option allnoconfig_y
1661         select EXPERT
1662         help
1663           This option should be enabled if compiling the kernel for
1664           an embedded system so certain expert options are available
1665           for configuration.
1666
1667 config HAVE_PERF_EVENTS
1668         bool
1669         help
1670           See tools/perf/design.txt for details.
1671
1672 config PERF_USE_VMALLOC
1673         bool
1674         help
1675           See tools/perf/design.txt for details
1676
1677 menu "Kernel Performance Events And Counters"
1678
1679 config PERF_EVENTS
1680         bool "Kernel performance events and counters"
1681         default y if PROFILING
1682         depends on HAVE_PERF_EVENTS
1683         select ANON_INODES
1684         select IRQ_WORK
1685         select SRCU
1686         help
1687           Enable kernel support for various performance events provided
1688           by software and hardware.
1689
1690           Software events are supported either built-in or via the
1691           use of generic tracepoints.
1692
1693           Most modern CPUs support performance events via performance
1694           counter registers. These registers count the number of certain
1695           types of hw events: such as instructions executed, cachemisses
1696           suffered, or branches mis-predicted - without slowing down the
1697           kernel or applications. These registers can also trigger interrupts
1698           when a threshold number of events have passed - and can thus be
1699           used to profile the code that runs on that CPU.
1700
1701           The Linux Performance Event subsystem provides an abstraction of
1702           these software and hardware event capabilities, available via a
1703           system call and used by the "perf" utility in tools/perf/. It
1704           provides per task and per CPU counters, and it provides event
1705           capabilities on top of those.
1706
1707           Say Y if unsure.
1708
1709 config DEBUG_PERF_USE_VMALLOC
1710         default n
1711         bool "Debug: use vmalloc to back perf mmap() buffers"
1712         depends on PERF_EVENTS && DEBUG_KERNEL && !PPC
1713         select PERF_USE_VMALLOC
1714         help
1715          Use vmalloc memory to back perf mmap() buffers.
1716
1717          Mostly useful for debugging the vmalloc code on platforms
1718          that don't require it.
1719
1720          Say N if unsure.
1721
1722 endmenu
1723
1724 config VM_EVENT_COUNTERS
1725         default y
1726         bool "Enable VM event counters for /proc/vmstat" if EXPERT
1727         help
1728           VM event counters are needed for event counts to be shown.
1729           This option allows the disabling of the VM event counters
1730           on EXPERT systems.  /proc/vmstat will only show page counts
1731           if VM event counters are disabled.
1732
1733 config SLUB_DEBUG
1734         default y
1735         bool "Enable SLUB debugging support" if EXPERT
1736         depends on SLUB && SYSFS
1737         help
1738           SLUB has extensive debug support features. Disabling these can
1739           result in significant savings in code size. This also disables
1740           SLUB sysfs support. /sys/slab will not exist and there will be
1741           no support for cache validation etc.
1742
1743 config COMPAT_BRK
1744         bool "Disable heap randomization"
1745         default y
1746         help
1747           Randomizing heap placement makes heap exploits harder, but it
1748           also breaks ancient binaries (including anything libc5 based).
1749           This option changes the bootup default to heap randomization
1750           disabled, and can be overridden at runtime by setting
1751           /proc/sys/kernel/randomize_va_space to 2.
1752
1753           On non-ancient distros (post-2000 ones) N is usually a safe choice.
1754
1755 choice
1756         prompt "Choose SLAB allocator"
1757         default SLUB
1758         help
1759            This option allows to select a slab allocator.
1760
1761 config SLAB
1762         bool "SLAB"
1763         help
1764           The regular slab allocator that is established and known to work
1765           well in all environments. It organizes cache hot objects in
1766           per cpu and per node queues.
1767
1768 config SLUB
1769         bool "SLUB (Unqueued Allocator)"
1770         help
1771            SLUB is a slab allocator that minimizes cache line usage
1772            instead of managing queues of cached objects (SLAB approach).
1773            Per cpu caching is realized using slabs of objects instead
1774            of queues of objects. SLUB can use memory efficiently
1775            and has enhanced diagnostics. SLUB is the default choice for
1776            a slab allocator.
1777
1778 config SLOB
1779         depends on EXPERT
1780         bool "SLOB (Simple Allocator)"
1781         help
1782            SLOB replaces the stock allocator with a drastically simpler
1783            allocator. SLOB is generally more space efficient but
1784            does not perform as well on large systems.
1785
1786 endchoice
1787
1788 config SLAB_FREELIST_RANDOM
1789         default n
1790         depends on SLAB || SLUB
1791         bool "SLAB freelist randomization"
1792         help
1793           Randomizes the freelist order used on creating new pages. This
1794           security feature reduces the predictability of the kernel slab
1795           allocator against heap overflows.
1796
1797 config SLUB_CPU_PARTIAL
1798         default y
1799         depends on SLUB && SMP
1800         bool "SLUB per cpu partial cache"
1801         help
1802           Per cpu partial caches accellerate objects allocation and freeing
1803           that is local to a processor at the price of more indeterminism
1804           in the latency of the free. On overflow these caches will be cleared
1805           which requires the taking of locks that may cause latency spikes.
1806           Typically one would choose no for a realtime system.
1807
1808 config MMAP_ALLOW_UNINITIALIZED
1809         bool "Allow mmapped anonymous memory to be uninitialized"
1810         depends on EXPERT && !MMU
1811         default n
1812         help
1813           Normally, and according to the Linux spec, anonymous memory obtained
1814           from mmap() has it's contents cleared before it is passed to
1815           userspace.  Enabling this config option allows you to request that
1816           mmap() skip that if it is given an MAP_UNINITIALIZED flag, thus
1817           providing a huge performance boost.  If this option is not enabled,
1818           then the flag will be ignored.
1819
1820           This is taken advantage of by uClibc's malloc(), and also by
1821           ELF-FDPIC binfmt's brk and stack allocator.
1822
1823           Because of the obvious security issues, this option should only be
1824           enabled on embedded devices where you control what is run in
1825           userspace.  Since that isn't generally a problem on no-MMU systems,
1826           it is normally safe to say Y here.
1827
1828           See Documentation/nommu-mmap.txt for more information.
1829
1830 config SYSTEM_DATA_VERIFICATION
1831         def_bool n
1832         select SYSTEM_TRUSTED_KEYRING
1833         select KEYS
1834         select CRYPTO
1835         select CRYPTO_RSA
1836         select ASYMMETRIC_KEY_TYPE
1837         select ASYMMETRIC_PUBLIC_KEY_SUBTYPE
1838         select ASN1
1839         select OID_REGISTRY
1840         select X509_CERTIFICATE_PARSER
1841         select PKCS7_MESSAGE_PARSER
1842         help
1843           Provide PKCS#7 message verification using the contents of the system
1844           trusted keyring to provide public keys.  This then can be used for
1845           module verification, kexec image verification and firmware blob
1846           verification.
1847
1848 config PROFILING
1849         bool "Profiling support"
1850         help
1851           Say Y here to enable the extended profiling support mechanisms used
1852           by profilers such as OProfile.
1853
1854 #
1855 # Place an empty function call at each tracepoint site. Can be
1856 # dynamically changed for a probe function.
1857 #
1858 config TRACEPOINTS
1859         bool
1860
1861 source "arch/Kconfig"
1862
1863 endmenu         # General setup
1864
1865 config HAVE_GENERIC_DMA_COHERENT
1866         bool
1867         default n
1868
1869 config SLABINFO
1870         bool
1871         depends on PROC_FS
1872         depends on SLAB || SLUB_DEBUG
1873         default y
1874
1875 config RT_MUTEXES
1876         bool
1877
1878 config BASE_SMALL
1879         int
1880         default 0 if BASE_FULL
1881         default 1 if !BASE_FULL
1882
1883 menuconfig MODULES
1884         bool "Enable loadable module support"
1885         option modules
1886         help
1887           Kernel modules are small pieces of compiled code which can
1888           be inserted in the running kernel, rather than being
1889           permanently built into the kernel.  You use the "modprobe"
1890           tool to add (and sometimes remove) them.  If you say Y here,
1891           many parts of the kernel can be built as modules (by
1892           answering M instead of Y where indicated): this is most
1893           useful for infrequently used options which are not required
1894           for booting.  For more information, see the man pages for
1895           modprobe, lsmod, modinfo, insmod and rmmod.
1896
1897           If you say Y here, you will need to run "make
1898           modules_install" to put the modules under /lib/modules/
1899           where modprobe can find them (you may need to be root to do
1900           this).
1901
1902           If unsure, say Y.
1903
1904 if MODULES
1905
1906 config MODULE_FORCE_LOAD
1907         bool "Forced module loading"
1908         default n
1909         help
1910           Allow loading of modules without version information (ie. modprobe
1911           --force).  Forced module loading sets the 'F' (forced) taint flag and
1912           is usually a really bad idea.
1913
1914 config MODULE_UNLOAD
1915         bool "Module unloading"
1916         help
1917           Without this option you will not be able to unload any
1918           modules (note that some modules may not be unloadable
1919           anyway), which makes your kernel smaller, faster
1920           and simpler.  If unsure, say Y.
1921
1922 config MODULE_FORCE_UNLOAD
1923         bool "Forced module unloading"
1924         depends on MODULE_UNLOAD
1925         help
1926           This option allows you to force a module to unload, even if the
1927           kernel believes it is unsafe: the kernel will remove the module
1928           without waiting for anyone to stop using it (using the -f option to
1929           rmmod).  This is mainly for kernel developers and desperate users.
1930           If unsure, say N.
1931
1932 config MODVERSIONS
1933         bool "Module versioning support"
1934         help
1935           Usually, you have to use modules compiled with your kernel.
1936           Saying Y here makes it sometimes possible to use modules
1937           compiled for different kernels, by adding enough information
1938           to the modules to (hopefully) spot any changes which would
1939           make them incompatible with the kernel you are running.  If
1940           unsure, say N.
1941
1942 config MODULE_SRCVERSION_ALL
1943         bool "Source checksum for all modules"
1944         help
1945           Modules which contain a MODULE_VERSION get an extra "srcversion"
1946           field inserted into their modinfo section, which contains a
1947           sum of the source files which made it.  This helps maintainers
1948           see exactly which source was used to build a module (since
1949           others sometimes change the module source without updating
1950           the version).  With this option, such a "srcversion" field
1951           will be created for all modules.  If unsure, say N.
1952
1953 config MODULE_SIG
1954         bool "Module signature verification"
1955         depends on MODULES
1956         select SYSTEM_DATA_VERIFICATION
1957         help
1958           Check modules for valid signatures upon load: the signature
1959           is simply appended to the module. For more information see
1960           Documentation/module-signing.txt.
1961
1962           Note that this option adds the OpenSSL development packages as a
1963           kernel build dependency so that the signing tool can use its crypto
1964           library.
1965
1966           !!!WARNING!!!  If you enable this option, you MUST make sure that the
1967           module DOES NOT get stripped after being signed.  This includes the
1968           debuginfo strip done by some packagers (such as rpmbuild) and
1969           inclusion into an initramfs that wants the module size reduced.
1970
1971 config MODULE_SIG_FORCE
1972         bool "Require modules to be validly signed"
1973         depends on MODULE_SIG
1974         help
1975           Reject unsigned modules or signed modules for which we don't have a
1976           key.  Without this, such modules will simply taint the kernel.
1977
1978 config MODULE_SIG_ALL
1979         bool "Automatically sign all modules"
1980         default y
1981         depends on MODULE_SIG
1982         help
1983           Sign all modules during make modules_install. Without this option,
1984           modules must be signed manually, using the scripts/sign-file tool.
1985
1986 comment "Do not forget to sign required modules with scripts/sign-file"
1987         depends on MODULE_SIG_FORCE && !MODULE_SIG_ALL
1988
1989 choice
1990         prompt "Which hash algorithm should modules be signed with?"
1991         depends on MODULE_SIG
1992         help
1993           This determines which sort of hashing algorithm will be used during
1994           signature generation.  This algorithm _must_ be built into the kernel
1995           directly so that signature verification can take place.  It is not
1996           possible to load a signed module containing the algorithm to check
1997           the signature on that module.
1998
1999 config MODULE_SIG_SHA1
2000         bool "Sign modules with SHA-1"
2001         select CRYPTO_SHA1
2002
2003 config MODULE_SIG_SHA224
2004         bool "Sign modules with SHA-224"
2005         select CRYPTO_SHA256
2006
2007 config MODULE_SIG_SHA256
2008         bool "Sign modules with SHA-256"
2009         select CRYPTO_SHA256
2010
2011 config MODULE_SIG_SHA384
2012         bool "Sign modules with SHA-384"
2013         select CRYPTO_SHA512
2014
2015 config MODULE_SIG_SHA512
2016         bool "Sign modules with SHA-512"
2017         select CRYPTO_SHA512
2018
2019 endchoice
2020
2021 config MODULE_SIG_HASH
2022         string
2023         depends on MODULE_SIG
2024         default "sha1" if MODULE_SIG_SHA1
2025         default "sha224" if MODULE_SIG_SHA224
2026         default "sha256" if MODULE_SIG_SHA256
2027         default "sha384" if MODULE_SIG_SHA384
2028         default "sha512" if MODULE_SIG_SHA512
2029
2030 config MODULE_COMPRESS
2031         bool "Compress modules on installation"
2032         depends on MODULES
2033         help
2034
2035           Compresses kernel modules when 'make modules_install' is run; gzip or
2036           xz depending on "Compression algorithm" below.
2037
2038           module-init-tools MAY support gzip, and kmod MAY support gzip and xz.
2039
2040           Out-of-tree kernel modules installed using Kbuild will also be
2041           compressed upon installation.
2042
2043           Note: for modules inside an initrd or initramfs, it's more efficient
2044           to compress the whole initrd or initramfs instead.
2045
2046           Note: This is fully compatible with signed modules.
2047
2048           If in doubt, say N.
2049
2050 choice
2051         prompt "Compression algorithm"
2052         depends on MODULE_COMPRESS
2053         default MODULE_COMPRESS_GZIP
2054         help
2055           This determines which sort of compression will be used during
2056           'make modules_install'.
2057
2058           GZIP (default) and XZ are supported.
2059
2060 config MODULE_COMPRESS_GZIP
2061         bool "GZIP"
2062
2063 config MODULE_COMPRESS_XZ
2064         bool "XZ"
2065
2066 endchoice
2067
2068 config TRIM_UNUSED_KSYMS
2069         bool "Trim unused exported kernel symbols"
2070         depends on MODULES && !UNUSED_SYMBOLS
2071         help
2072           The kernel and some modules make many symbols available for
2073           other modules to use via EXPORT_SYMBOL() and variants. Depending
2074           on the set of modules being selected in your kernel configuration,
2075           many of those exported symbols might never be used.
2076
2077           This option allows for unused exported symbols to be dropped from
2078           the build. In turn, this provides the compiler more opportunities
2079           (especially when using LTO) for optimizing the code and reducing
2080           binary size.  This might have some security advantages as well.
2081
2082           If unsure say N.
2083
2084 endif # MODULES
2085
2086 config MODULES_TREE_LOOKUP
2087         def_bool y
2088         depends on PERF_EVENTS || TRACING
2089
2090 config INIT_ALL_POSSIBLE
2091         bool
2092         help
2093           Back when each arch used to define their own cpu_online_mask and
2094           cpu_possible_mask, some of them chose to initialize cpu_possible_mask
2095           with all 1s, and others with all 0s.  When they were centralised,
2096           it was better to provide this option than to break all the archs
2097           and have several arch maintainers pursuing me down dark alleys.
2098
2099 source "block/Kconfig"
2100
2101 config PREEMPT_NOTIFIERS
2102         bool
2103
2104 config PADATA
2105         depends on SMP
2106         bool
2107
2108 # Can be selected by architectures with broken toolchains
2109 # that get confused by correct const<->read_only section
2110 # mappings
2111 config BROKEN_RODATA
2112         bool
2113
2114 config ASN1
2115         tristate
2116         help
2117           Build a simple ASN.1 grammar compiler that produces a bytecode output
2118           that can be interpreted by the ASN.1 stream decoder and used to
2119           inform it as to what tags are to be expected in a stream and what
2120           functions to call on what tags.
2121
2122 source "kernel/Kconfig.locks"