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