xref: /linux/init/Kconfig (revision 9d2ed026f031f764e9450ac9aada2f46bc977397)
1# SPDX-License-Identifier: GPL-2.0-only
2config CC_VERSION_TEXT
3	string
4	default "$(CC_VERSION_TEXT)"
5	help
6	  This is used in unclear ways:
7
8	  - Re-run Kconfig when the compiler is updated
9	    The 'default' property references the environment variable,
10	    CC_VERSION_TEXT so it is recorded in include/config/auto.conf.cmd.
11	    When the compiler is updated, Kconfig will be invoked.
12
13	  - Ensure full rebuild when the compiler is updated
14	    include/linux/compiler-version.h contains this option in the comment
15	    line so fixdep adds include/config/CC_VERSION_TEXT into the
16	    auto-generated dependency. When the compiler is updated, syncconfig
17	    will touch it and then every file will be rebuilt.
18
19config CC_IS_GCC
20	def_bool $(success,test "$(cc-name)" = GCC)
21
22config GCC_VERSION
23	int
24	default $(cc-version) if CC_IS_GCC
25	default 0
26
27config CC_IS_CLANG
28	def_bool $(success,test "$(cc-name)" = Clang)
29
30config CLANG_VERSION
31	int
32	default $(cc-version) if CC_IS_CLANG
33	default 0
34
35config AS_IS_GNU
36	def_bool $(success,test "$(as-name)" = GNU)
37
38config AS_IS_LLVM
39	def_bool $(success,test "$(as-name)" = LLVM)
40
41config AS_VERSION
42	int
43	# Use clang version if this is the integrated assembler
44	default CLANG_VERSION if AS_IS_LLVM
45	default $(as-version)
46
47config LD_IS_BFD
48	def_bool $(success,test "$(ld-name)" = BFD)
49
50config LD_VERSION
51	int
52	default $(ld-version) if LD_IS_BFD
53	default 0
54
55config LD_IS_LLD
56	def_bool $(success,test "$(ld-name)" = LLD)
57
58config LLD_VERSION
59	int
60	default $(ld-version) if LD_IS_LLD
61	default 0
62
63config RUSTC_VERSION
64	int
65	default $(rustc-version)
66	help
67	  It does not depend on `RUST` since that one may need to use the version
68	  in a `depends on`.
69
70config RUST_IS_AVAILABLE
71	def_bool $(success,$(srctree)/scripts/rust_is_available.sh)
72	help
73	  This shows whether a suitable Rust toolchain is available (found).
74
75	  Please see Documentation/rust/quick-start.rst for instructions on how
76	  to satisfy the build requirements of Rust support.
77
78	  In particular, the Makefile target 'rustavailable' is useful to check
79	  why the Rust toolchain is not being detected.
80
81config RUSTC_LLVM_VERSION
82	int
83	default $(rustc-llvm-version)
84
85config RUSTC_LLVM_MAJOR_VERSION
86	int
87	default $(shell,expr $(rustc-llvm-version) / 10000)
88
89config RUSTC_CLANG_LLVM_COMPATIBLE
90	bool
91	default y if CC_IS_CLANG && RUSTC_LLVM_MAJOR_VERSION = $(shell,expr $(cc-version) / 10000)
92	help
93	  This indicates whether Rust and Clang use LLVM of the same major
94	  version.
95
96	  Operations involving handling LLVM IR or bitcode (e.g. cross-language
97	  LTO) require the same LLVM major version to work properly. For best
98	  compatibility it is recommended that the exact same LLVM is used.
99
100config ARCH_HAS_CC_CAN_LINK
101	bool
102
103config CC_CAN_LINK
104	bool
105	default ARCH_CC_CAN_LINK if ARCH_HAS_CC_CAN_LINK
106	default $(cc_can_link_user,$(m64-flag)) if 64BIT
107	default $(cc_can_link_user,$(m32-flag))
108
109# Fixed in GCC 14, 13.3, 12.4 and 11.5
110# https://gcc.gnu.org/bugzilla/show_bug.cgi?id=113921
111config GCC_ASM_GOTO_OUTPUT_BROKEN
112	bool
113	depends on CC_IS_GCC
114	default y if GCC_VERSION < 110500
115	default y if GCC_VERSION >= 120000 && GCC_VERSION < 120400
116	default y if GCC_VERSION >= 130000 && GCC_VERSION < 130300
117
118config CC_HAS_ASM_GOTO_OUTPUT
119	def_bool y
120	depends on !GCC_ASM_GOTO_OUTPUT_BROKEN
121	depends on $(success,echo 'int foo(int x) { asm goto ("": "=r"(x) ::: bar); return x; bar: return 0; }' | $(CC) -x c - -c -o /dev/null)
122
123config CC_HAS_ASM_GOTO_TIED_OUTPUT
124	depends on CC_HAS_ASM_GOTO_OUTPUT
125	# Detect buggy gcc and clang, fixed in gcc-11 clang-14.
126	def_bool $(success,echo 'int foo(int *x) { asm goto (".long (%l[bar]) - .": "+m"(*x) ::: bar); return *x; bar: return 0; }' | $CC -x c - -c -o /dev/null)
127
128config TOOLS_SUPPORT_RELR
129	def_bool $(success,env "CC=$(CC)" "LD=$(LD)" "NM=$(NM)" "OBJCOPY=$(OBJCOPY)" $(srctree)/scripts/tools-support-relr.sh)
130
131config CC_HAS_ASM_INLINE
132	def_bool $(success,echo 'void foo(void) { asm inline (""); }' | $(CC) -x c - -c -o /dev/null)
133
134config CC_HAS_ASSUME
135	bool
136	# clang needs to be at least 19.1.0 since the meaning of the assume
137	# attribute changed:
138	# https://github.com/llvm/llvm-project/commit/c44fa3e8a9a44c2e9a575768a3c185354b9f6c17
139	default y if CC_IS_CLANG && CLANG_VERSION >= 190100
140	# supported since gcc 13.1.0
141	# https://gcc.gnu.org/bugzilla/show_bug.cgi?id=106654
142	default y if CC_IS_GCC && GCC_VERSION >= 130100
143
144config CC_HAS_NO_PROFILE_FN_ATTR
145	def_bool $(success,echo '__attribute__((no_profile_instrument_function)) int x();' | $(CC) -x c - -c -o /dev/null -Werror)
146
147config CC_HAS_COUNTED_BY
148	bool
149	# clang needs to be at least 20.1.0 to avoid potential crashes
150	# when building structures that contain __counted_by
151	# https://github.com/ClangBuiltLinux/linux/issues/2114
152	# https://github.com/llvm/llvm-project/commit/160fb1121cdf703c3ef5e61fb26c5659eb581489
153	default y if CC_IS_CLANG && CLANG_VERSION >= 200100
154	# supported since gcc 15.1.0
155	# https://gcc.gnu.org/bugzilla/show_bug.cgi?id=108896
156	default y if CC_IS_GCC && GCC_VERSION >= 150100
157
158config CC_HAS_COUNTED_BY_PTR
159	bool
160	# supported since clang 22
161	default y if CC_IS_CLANG && CLANG_VERSION >= 220100
162	# supported since gcc 16.0.0
163	default y if CC_IS_GCC && GCC_VERSION >= 160000
164
165config CC_HAS_BROKEN_COUNTED_BY_REF
166	bool
167	# https://github.com/llvm/llvm-project/issues/182575
168	default y if CC_IS_CLANG && CLANG_VERSION < 220100
169
170config CC_HAS_ALLOC_TOKEN
171	def_bool $(cc-option,-falloc-token-max=123)
172
173config CC_HAS_MULTIDIMENSIONAL_NONSTRING
174	def_bool $(success,echo 'char tag[][4] __attribute__((__nonstring__)) = { };' | $(CC) $(CLANG_FLAGS) -x c - -c -o /dev/null -Werror)
175
176config LD_CAN_USE_KEEP_IN_OVERLAY
177	# ld.lld prior to 21.0.0 did not support KEEP within an overlay description
178	# https://github.com/llvm/llvm-project/pull/130661
179	def_bool LD_IS_BFD || LLD_VERSION >= 210000
180
181config RUSTC_HAS_SPAN_FILE
182	def_bool RUSTC_VERSION >= 108800
183
184config RUSTC_HAS_UNNECESSARY_TRANSMUTES
185	def_bool RUSTC_VERSION >= 108800
186
187config RUSTC_HAS_FILE_WITH_NUL
188	def_bool RUSTC_VERSION >= 108900
189
190config RUSTC_HAS_FILE_AS_C_STR
191	def_bool RUSTC_VERSION >= 109100
192
193config RUSTC_HAS_SUSPICIOUS_RUNTIME_SYMBOL_DEFINITIONS
194	def_bool RUSTC_VERSION >= 109800
195
196config PAHOLE_VERSION
197	int
198	default "$(PAHOLE_VERSION)"
199
200config CONSTRUCTORS
201	bool
202
203config IRQ_WORK
204	def_bool y if SMP
205
206config BUILDTIME_TABLE_SORT
207	bool
208
209config THREAD_INFO_IN_TASK
210	bool
211	help
212	  Select this to move thread_info off the stack into task_struct.  To
213	  make this work, an arch will need to remove all thread_info fields
214	  except flags and fix any runtime bugs.
215
216	  One subtle change that will be needed is to use try_get_task_stack()
217	  and put_task_stack() in save_thread_stack_tsk() and get_wchan().
218
219menu "General setup"
220
221config BROKEN
222	bool
223	help
224	  This option allows you to choose whether you want to try to
225	  compile (and fix) old drivers that haven't been updated to
226	  new infrastructure.
227
228config BROKEN_ON_SMP
229	bool
230	depends on BROKEN || !SMP
231	default y
232
233config INIT_ENV_ARG_LIMIT
234	int
235	default 32 if !UML
236	default 128 if UML
237	help
238	  Maximum of each of the number of arguments and environment
239	  variables passed to init from the kernel command line.
240
241config COMPILE_TEST
242	bool "Compile also drivers which will not load"
243	depends on HAS_IOMEM
244	help
245	  Some drivers can be compiled on a different platform than they are
246	  intended to be run on. Despite they cannot be loaded there (or even
247	  when they load they cannot be used due to missing HW support),
248	  developers still, opposing to distributors, might want to build such
249	  drivers to compile-test them.
250
251	  If you are a developer and want to build everything available, say Y
252	  here. If you are a user/distributor, say N here to exclude useless
253	  drivers to be distributed.
254
255config WERROR
256	bool "Compile the kernel with warnings as errors"
257	default COMPILE_TEST
258	help
259	  A kernel build should not cause any compiler warnings, and this
260	  enables the '-Werror' (for C) and '-Dwarnings' (for Rust) flags
261	  to enforce that rule by default. Certain warnings from other tools
262	  such as the linker may be upgraded to errors with this option as
263	  well.
264
265	  However, if you have a new (or very old) compiler or linker with odd
266	  and unusual warnings, or you have some architecture with problems,
267	  you may need to disable this config option in order to
268	  successfully build the kernel.
269
270	  If in doubt, say Y.
271
272config UAPI_HEADER_TEST
273	bool "Compile test UAPI headers"
274	depends on HEADERS_INSTALL
275	help
276	  Compile test headers exported to user-space to ensure they are
277	  self-contained, i.e. compilable as standalone units.
278
279	  If you are a developer or tester and want to ensure the exported
280	  headers are self-contained, say Y here. Otherwise, choose N.
281
282config LOCALVERSION
283	string "Local version - append to kernel release"
284	help
285	  Append an extra string to the end of your kernel version.
286	  This will show up when you type uname, for example.
287	  The string you set here will be appended after the contents of
288	  any files with a filename matching localversion* in your
289	  object and source tree, in that order.  Your total string can
290	  be a maximum of 64 characters.
291
292config LOCALVERSION_AUTO
293	bool "Automatically append version information to the version string"
294	default y
295	depends on !COMPILE_TEST
296	help
297	  This will try to automatically determine if the current tree is a
298	  release tree by looking for git tags that belong to the current
299	  top of tree revision.
300
301	  A string of the format -gxxxxxxxx will be added to the localversion
302	  if a git-based tree is found.  The string generated by this will be
303	  appended after any matching localversion* files, and after the value
304	  set in CONFIG_LOCALVERSION.
305
306	  (The actual string used here is the first 12 characters produced
307	  by running the command:
308
309	    $ git rev-parse --verify HEAD
310
311	  which is done within the script "scripts/setlocalversion".)
312
313config BUILD_SALT
314	string "Build ID Salt"
315	default ""
316	help
317	  The build ID is used to link binaries and their debug info. Setting
318	  this option will use the value in the calculation of the build id.
319	  This is mostly useful for distributions which want to ensure the
320	  build is unique between builds. It's safe to leave the default.
321
322config HAVE_KERNEL_GZIP
323	bool
324
325config HAVE_KERNEL_BZIP2
326	bool
327
328config HAVE_KERNEL_LZMA
329	bool
330
331config HAVE_KERNEL_XZ
332	bool
333
334config HAVE_KERNEL_LZO
335	bool
336
337config HAVE_KERNEL_LZ4
338	bool
339
340config HAVE_KERNEL_ZSTD
341	bool
342
343config HAVE_KERNEL_UNCOMPRESSED
344	bool
345
346choice
347	prompt "Kernel compression mode"
348	default KERNEL_GZIP
349	depends on HAVE_KERNEL_GZIP || HAVE_KERNEL_BZIP2 || HAVE_KERNEL_LZMA || HAVE_KERNEL_XZ || HAVE_KERNEL_LZO || HAVE_KERNEL_LZ4 || HAVE_KERNEL_ZSTD || HAVE_KERNEL_UNCOMPRESSED
350	help
351	  The linux kernel is a kind of self-extracting executable.
352	  Several compression algorithms are available, which differ
353	  in efficiency, compression and decompression speed.
354	  Compression speed is only relevant when building a kernel.
355	  Decompression speed is relevant at each boot.
356
357	  If you have any problems with bzip2 or lzma compressed
358	  kernels, mail me (Alain Knaff) <alain@knaff.lu>. (An older
359	  version of this functionality (bzip2 only), for 2.4, was
360	  supplied by Christian Ludwig)
361
362	  High compression options are mostly useful for users, who
363	  are low on disk space (embedded systems), but for whom ram
364	  size matters less.
365
366	  If in doubt, select 'gzip'
367
368config KERNEL_GZIP
369	bool "Gzip"
370	depends on HAVE_KERNEL_GZIP
371	help
372	  The old and tried gzip compression. It provides a good balance
373	  between compression ratio and decompression speed.
374
375config KERNEL_BZIP2
376	bool "Bzip2"
377	depends on HAVE_KERNEL_BZIP2
378	help
379	  Its compression ratio and speed is intermediate.
380	  Decompression speed is slowest among the choices.  The kernel
381	  size is about 10% smaller with bzip2, in comparison to gzip.
382	  Bzip2 uses a large amount of memory. For modern kernels you
383	  will need at least 8MB RAM or more for booting.
384
385config KERNEL_LZMA
386	bool "LZMA"
387	depends on HAVE_KERNEL_LZMA
388	help
389	  This compression algorithm's ratio is best.  Decompression speed
390	  is between gzip and bzip2.  Compression is slowest.
391	  The kernel size is about 33% smaller with LZMA in comparison to gzip.
392
393config KERNEL_XZ
394	bool "XZ"
395	depends on HAVE_KERNEL_XZ
396	help
397	  XZ uses the LZMA2 algorithm and instruction set specific
398	  BCJ filters which can improve compression ratio of executable
399	  code. The size of the kernel is about 30% smaller with XZ in
400	  comparison to gzip. On architectures for which there is a BCJ
401	  filter (i386, x86_64, ARM, ARM64, RISC-V, big endian PowerPC,
402	  and SPARC), XZ will create a few percent smaller kernel than
403	  plain LZMA.
404
405	  The speed is about the same as with LZMA: The decompression
406	  speed of XZ is better than that of bzip2 but worse than gzip
407	  and LZO. Compression is slow.
408
409config KERNEL_LZO
410	bool "LZO"
411	depends on HAVE_KERNEL_LZO
412	help
413	  Its compression ratio is the poorest among the choices. The kernel
414	  size is about 10% bigger than gzip; however its speed
415	  (both compression and decompression) is the fastest.
416
417config KERNEL_LZ4
418	bool "LZ4"
419	depends on HAVE_KERNEL_LZ4
420	help
421	  LZ4 is an LZ77-type compressor with a fixed, byte-oriented encoding.
422	  A preliminary version of LZ4 de/compression tool is available at
423	  <https://code.google.com/p/lz4/>.
424
425	  Its compression ratio is worse than LZO. The size of the kernel
426	  is about 8% bigger than LZO. But the decompression speed is
427	  faster than LZO.
428
429config KERNEL_ZSTD
430	bool "ZSTD"
431	depends on HAVE_KERNEL_ZSTD
432	help
433	  ZSTD is a compression algorithm targeting intermediate compression
434	  with fast decompression speed. It will compress better than GZIP and
435	  decompress around the same speed as LZO, but slower than LZ4. You
436	  will need at least 192 KB RAM or more for booting. The zstd command
437	  line tool is required for compression.
438
439config KERNEL_UNCOMPRESSED
440	bool "None"
441	depends on HAVE_KERNEL_UNCOMPRESSED
442	help
443	  Produce uncompressed kernel image. This option is usually not what
444	  you want. It is useful for debugging the kernel in slow simulation
445	  environments, where decompressing and moving the kernel is awfully
446	  slow. This option allows early boot code to skip the decompressor
447	  and jump right at uncompressed kernel image.
448
449endchoice
450
451config DEFAULT_INIT
452	string "Default init path"
453	default ""
454	help
455	  This option determines the default init for the system if no init=
456	  option is passed on the kernel command line. If the requested path is
457	  not present, we will still then move on to attempting further
458	  locations (e.g. /sbin/init, etc). If this is empty, we will just use
459	  the fallback list when init= is not passed.
460
461config DEFAULT_HOSTNAME
462	string "Default hostname"
463	default "(none)"
464	help
465	  This option determines the default system hostname before userspace
466	  calls sethostname(2). The kernel traditionally uses "(none)" here,
467	  but you may wish to use a different default here to make a minimal
468	  system more usable with less configuration.
469
470config SYSVIPC
471	bool "System V IPC"
472	help
473	  Inter Process Communication is a suite of library functions and
474	  system calls which let processes (running programs) synchronize and
475	  exchange information. It is generally considered to be a good thing,
476	  and some programs won't run unless you say Y here. In particular, if
477	  you want to run the DOS emulator dosemu under Linux (read the
478	  DOSEMU-HOWTO, available from <http://www.tldp.org/docs.html#howto>),
479	  you'll need to say Y here.
480
481	  You can find documentation about IPC with "info ipc" and also in
482	  section 6.4 of the Linux Programmer's Guide, available from
483	  <http://www.tldp.org/guides.html>.
484
485config SYSVIPC_SYSCTL
486	bool
487	depends on SYSVIPC
488	depends on SYSCTL
489	default y
490
491config SYSVIPC_COMPAT
492	def_bool y
493	depends on COMPAT && SYSVIPC
494
495config POSIX_MQUEUE
496	bool "POSIX Message Queues"
497	depends on NET
498	help
499	  POSIX variant of message queues is a part of IPC. In POSIX message
500	  queues every message has a priority which decides about succession
501	  of receiving it by a process. If you want to compile and run
502	  programs written e.g. for Solaris with use of its POSIX message
503	  queues (functions mq_*) say Y here.
504
505	  POSIX message queues are visible as a filesystem called 'mqueue'
506	  and can be mounted somewhere if you want to do filesystem
507	  operations on message queues.
508
509	  If unsure, say Y.
510
511config POSIX_MQUEUE_SYSCTL
512	bool
513	depends on POSIX_MQUEUE
514	depends on SYSCTL
515	default y
516
517config WATCH_QUEUE
518	bool "General notification queue"
519	default n
520	help
521
522	  This is a general notification queue for the kernel to pass events to
523	  userspace by splicing them into pipes.  It can be used in conjunction
524	  with watches for key/keyring change notifications and device
525	  notifications.
526
527	  See Documentation/core-api/watch_queue.rst
528
529config CROSS_MEMORY_ATTACH
530	bool "Enable process_vm_readv/writev syscalls"
531	depends on MMU
532	default y
533	help
534	  Enabling this option adds the system calls process_vm_readv and
535	  process_vm_writev which allow a process with the correct privileges
536	  to directly read from or write to another process' address space.
537	  See the man page for more details.
538
539config AUDIT
540	bool "Auditing support"
541	depends on NET
542	help
543	  Enable auditing infrastructure that can be used with another
544	  kernel subsystem, such as SELinux (which requires this for
545	  logging of avc messages output).  System call auditing is included
546	  on architectures which support it.
547
548config HAVE_ARCH_AUDITSYSCALL
549	bool
550
551config AUDITSYSCALL
552	def_bool y
553	depends on AUDIT && HAVE_ARCH_AUDITSYSCALL
554	select FSNOTIFY
555
556source "kernel/irq/Kconfig"
557source "kernel/time/Kconfig"
558source "kernel/bpf/Kconfig"
559source "kernel/Kconfig.preempt"
560
561menu "CPU/Task time and stats accounting"
562
563config VIRT_CPU_ACCOUNTING
564	bool
565
566choice
567	prompt "Cputime accounting"
568	default VIRT_CPU_ACCOUNTING_GEN if NO_HZ_FULL
569	default TICK_CPU_ACCOUNTING
570
571# Kind of a stub config for the pure tick based cputime accounting
572config TICK_CPU_ACCOUNTING
573	bool "Simple tick based cputime accounting"
574	depends on !S390 && !NO_HZ_FULL
575	help
576	  This is the basic tick based cputime accounting that maintains
577	  statistics about user, system and idle time spent on per jiffies
578	  granularity.
579
580	  If unsure, say Y.
581
582config VIRT_CPU_ACCOUNTING_NATIVE
583	bool "Deterministic task and CPU time accounting"
584	depends on HAVE_VIRT_CPU_ACCOUNTING && !NO_HZ_FULL
585	select VIRT_CPU_ACCOUNTING
586	help
587	  Select this option to enable more accurate task and CPU time
588	  accounting.  This is done by reading a CPU counter on each
589	  kernel entry and exit and on transitions within the kernel
590	  between system, softirq and hardirq state, so there is a
591	  small performance impact.  In the case of s390 or IBM POWER > 5,
592	  this also enables accounting of stolen time on logically-partitioned
593	  systems.
594
595config VIRT_CPU_ACCOUNTING_GEN
596	bool "Full dynticks CPU time accounting"
597	depends on HAVE_CONTEXT_TRACKING_USER
598	depends on HAVE_VIRT_CPU_ACCOUNTING_GEN
599	depends on GENERIC_CLOCKEVENTS
600	select VIRT_CPU_ACCOUNTING
601	select CONTEXT_TRACKING_USER
602	help
603	  Select this option to enable task and CPU time accounting on full
604	  dynticks systems. This accounting is implemented by watching every
605	  kernel-user boundaries using the context tracking subsystem.
606	  The accounting is thus performed at the expense of some significant
607	  overhead.
608
609	  For now this is only useful if you are working on the full
610	  dynticks subsystem development.
611
612	  If unsure, say N.
613
614endchoice
615
616config IRQ_TIME_ACCOUNTING
617	bool "Fine granularity task level IRQ time accounting"
618	depends on HAVE_IRQ_TIME_ACCOUNTING && !VIRT_CPU_ACCOUNTING_NATIVE
619	help
620	  Select this option to enable fine granularity task irq time
621	  accounting. This is done by reading a timestamp on each
622	  transitions between softirq and hardirq state, so there can be a
623	  small performance impact.
624
625	  If in doubt, say N here.
626
627config HAVE_SCHED_AVG_IRQ
628	def_bool y
629	depends on IRQ_TIME_ACCOUNTING || PARAVIRT_TIME_ACCOUNTING
630	depends on SMP
631
632config SCHED_HW_PRESSURE
633	bool
634	default y if ARM && ARM_CPU_TOPOLOGY
635	default y if ARM64
636	depends on SMP
637	depends on CPU_FREQ_THERMAL
638	help
639	  Select this option to enable HW pressure accounting in the
640	  scheduler. HW pressure is the value conveyed to the scheduler
641	  that reflects the reduction in CPU compute capacity resulted from
642	  HW throttling. HW throttling occurs when the performance of
643	  a CPU is capped due to high operating temperatures as an example.
644
645	  If selected, the scheduler will be able to balance tasks accordingly,
646	  i.e. put less load on throttled CPUs than on non/less throttled ones.
647
648	  This requires the architecture to implement
649	  arch_update_hw_pressure() and arch_scale_thermal_pressure().
650
651config BSD_PROCESS_ACCT
652	bool "BSD Process Accounting (DEPRECATED)"
653	depends on MULTIUSER
654	default n
655	help
656	  If you say Y here, a user level program will be able to instruct the
657	  kernel (via a special system call) to write process accounting
658	  information to a file: whenever a process exits, information about
659	  that process will be appended to the file by the kernel.  The
660	  information includes things such as creation time, owning user,
661	  command name, memory usage, controlling terminal etc. (the complete
662	  list is in the struct acct in <file:include/linux/acct.h>).  It is
663	  up to the user level program to do useful things with this
664	  information.  This mechanism is antiquated and has significant
665	  scalability issues.  You probably want to use eBPF instead.  Say
666	  N unless you really need this.
667
668config BSD_PROCESS_ACCT_V3
669	bool "BSD Process Accounting version 3 file format"
670	depends on BSD_PROCESS_ACCT
671	default n
672	help
673	  If you say Y here, the process accounting information is written
674	  in a new file format that also logs the process IDs of each
675	  process and its parent. Note that this file format is incompatible
676	  with previous v0/v1/v2 file formats, so you will need updated tools
677	  for processing it. A preliminary version of these tools is available
678	  at <http://www.gnu.org/software/acct/>.
679
680config TASKSTATS
681	bool "Export task/process statistics through netlink"
682	depends on NET
683	depends on MULTIUSER
684	default n
685	help
686	  Export selected statistics for tasks/processes through the
687	  generic netlink interface. Unlike BSD process accounting, the
688	  statistics are available during the lifetime of tasks/processes as
689	  responses to commands. Like BSD accounting, they are sent to user
690	  space on task exit.
691
692	  Say N if unsure.
693
694config TASK_DELAY_ACCT
695	bool "Enable per-task delay accounting"
696	depends on TASKSTATS
697	select SCHED_INFO
698	help
699	  Collect information on time spent by a task waiting for system
700	  resources like cpu, synchronous block I/O completion and swapping
701	  in pages. Such statistics can help in setting a task's priorities
702	  relative to other tasks for cpu, io, rss limits etc.
703
704	  Say N if unsure.
705
706config TASK_XACCT
707	bool "Enable extended accounting over taskstats"
708	depends on TASKSTATS
709	help
710	  Collect extended task accounting data and send the data
711	  to userland for processing over the taskstats interface.
712
713	  Say N if unsure.
714
715config TASK_IO_ACCOUNTING
716	bool "Enable per-task storage I/O accounting"
717	depends on TASK_XACCT
718	help
719	  Collect information on the number of bytes of storage I/O which this
720	  task has caused.
721
722	  Say N if unsure.
723
724config PSI
725	bool "Pressure stall information tracking"
726	select KERNFS
727	help
728	  Collect metrics that indicate how overcommitted the CPU, memory,
729	  and IO capacity are in the system.
730
731	  If you say Y here, the kernel will create /proc/pressure/ with the
732	  pressure statistics files cpu, memory, and io. These will indicate
733	  the share of walltime in which some or all tasks in the system are
734	  delayed due to contention of the respective resource.
735
736	  In kernels with cgroup support, cgroups (cgroup2 only) will
737	  have cpu.pressure, memory.pressure, and io.pressure files,
738	  which aggregate pressure stalls for the grouped tasks only.
739
740	  For more details see Documentation/accounting/psi.rst.
741
742	  Say N if unsure.
743
744config PSI_DEFAULT_DISABLED
745	bool "Require boot parameter to enable pressure stall information tracking"
746	default n
747	depends on PSI
748	help
749	  If set, pressure stall information tracking will be disabled
750	  per default but can be enabled through passing psi=1 on the
751	  kernel commandline during boot.
752
753	  This feature adds some code to the task wakeup and sleep
754	  paths of the scheduler. The overhead is too low to affect
755	  common scheduling-intense workloads in practice (such as
756	  webservers, memcache), but it does show up in artificial
757	  scheduler stress tests, such as hackbench.
758
759	  If you are paranoid and not sure what the kernel will be
760	  used for, say Y.
761
762	  Say N if unsure.
763
764endmenu # "CPU/Task time and stats accounting"
765
766config CPU_ISOLATION
767	bool "CPU isolation"
768	depends on SMP
769	default y
770	help
771	  Make sure that CPUs running critical tasks are not disturbed by
772	  any source of "noise" such as unbound workqueues, timers, kthreads...
773	  Unbound jobs get offloaded to housekeeping CPUs. This is driven by
774	  the "isolcpus=" boot parameter.
775
776	  Say Y if unsure.
777
778source "kernel/rcu/Kconfig"
779
780config IKCONFIG
781	tristate "Kernel .config support"
782	help
783	  This option enables the complete Linux kernel ".config" file
784	  contents to be saved in the kernel. It provides documentation
785	  of which kernel options are used in a running kernel or in an
786	  on-disk kernel.  This information can be extracted from the kernel
787	  image file with the script scripts/extract-ikconfig and used as
788	  input to rebuild the current kernel or to build another kernel.
789	  It can also be extracted from a running kernel by reading
790	  /proc/config.gz if enabled (below).
791
792config IKCONFIG_PROC
793	bool "Enable access to .config through /proc/config.gz"
794	depends on IKCONFIG && PROC_FS
795	help
796	  This option enables access to the kernel configuration file
797	  through /proc/config.gz.
798
799config IKHEADERS
800	tristate "Enable kernel headers through /sys/kernel/kheaders.tar.xz"
801	depends on SYSFS
802	help
803	  This option enables access to the in-kernel headers that are generated during
804	  the build process. These can be used to build eBPF tracing programs,
805	  or similar programs.  If you build the headers as a module, a module called
806	  kheaders.ko is built which can be loaded on-demand to get access to headers.
807
808config LOG_BUF_SHIFT
809	int "Kernel log buffer size (16 => 64KB, 17 => 128KB)"
810	range 12 25
811	default 17
812	depends on PRINTK
813	help
814	  Select the minimal kernel log buffer size as a power of 2.
815	  The final size is affected by LOG_CPU_MAX_BUF_SHIFT config
816	  parameter, see below. Any higher size also might be forced
817	  by "log_buf_len" boot parameter.
818
819	  Examples:
820		     17 => 128 KB
821		     16 => 64 KB
822		     15 => 32 KB
823		     14 => 16 KB
824		     13 =>  8 KB
825		     12 =>  4 KB
826
827config LOG_CPU_MAX_BUF_SHIFT
828	int "CPU kernel log buffer size contribution (13 => 8 KB, 17 => 128KB)"
829	depends on SMP
830	range 0 21
831	default 0 if BASE_SMALL
832	default 12
833	depends on PRINTK
834	help
835	  This option allows to increase the default ring buffer size
836	  according to the number of CPUs. The value defines the contribution
837	  of each CPU as a power of 2. The used space is typically only few
838	  lines however it might be much more when problems are reported,
839	  e.g. backtraces.
840
841	  The increased size means that a new buffer has to be allocated and
842	  the original static one is unused. It makes sense only on systems
843	  with more CPUs. Therefore this value is used only when the sum of
844	  contributions is greater than the half of the default kernel ring
845	  buffer as defined by LOG_BUF_SHIFT. The default values are set
846	  so that more than 16 CPUs are needed to trigger the allocation.
847
848	  Also this option is ignored when "log_buf_len" kernel parameter is
849	  used as it forces an exact (power of two) size of the ring buffer.
850
851	  The number of possible CPUs is used for this computation ignoring
852	  hotplugging making the computation optimal for the worst case
853	  scenario while allowing a simple algorithm to be used from bootup.
854
855	  Examples shift values and their meaning:
856		     17 => 128 KB for each CPU
857		     16 =>  64 KB for each CPU
858		     15 =>  32 KB for each CPU
859		     14 =>  16 KB for each CPU
860		     13 =>   8 KB for each CPU
861		     12 =>   4 KB for each CPU
862
863config PRINTK_INDEX
864	bool "Printk indexing debugfs interface"
865	depends on PRINTK && DEBUG_FS
866	help
867	  Add support for indexing of all printk formats known at compile time
868	  at <debugfs>/printk/index/<module>.
869
870	  This can be used as part of maintaining daemons which monitor
871	  /dev/kmsg, as it permits auditing the printk formats present in a
872	  kernel, allowing detection of cases where monitored printks are
873	  changed or no longer present.
874
875	  There is no additional runtime cost to printk with this enabled.
876
877#
878# Architectures with an unreliable sched_clock() should select this:
879#
880config HAVE_UNSTABLE_SCHED_CLOCK
881	bool
882
883config GENERIC_SCHED_CLOCK
884	bool
885
886menu "Scheduler features"
887
888config UCLAMP_TASK
889	bool "Enable utilization clamping for RT/FAIR tasks"
890	depends on CPU_FREQ_GOV_SCHEDUTIL
891	help
892	  This feature enables the scheduler to track the clamped utilization
893	  of each CPU based on RUNNABLE tasks scheduled on that CPU.
894
895	  With this option, the user can specify the min and max CPU
896	  utilization allowed for RUNNABLE tasks. The max utilization defines
897	  the maximum frequency a task should use while the min utilization
898	  defines the minimum frequency it should use.
899
900	  Both min and max utilization clamp values are hints to the scheduler,
901	  aiming at improving its frequency selection policy, but they do not
902	  enforce or grant any specific bandwidth for tasks.
903
904	  If in doubt, say N.
905
906config UCLAMP_BUCKETS_COUNT
907	int "Number of supported utilization clamp buckets"
908	range 5 20
909	default 5
910	depends on UCLAMP_TASK
911	help
912	  Defines the number of clamp buckets to use. The range of each bucket
913	  will be SCHED_CAPACITY_SCALE/UCLAMP_BUCKETS_COUNT. The higher the
914	  number of clamp buckets the finer their granularity and the higher
915	  the precision of clamping aggregation and tracking at run-time.
916
917	  For example, with the minimum configuration value we will have 5
918	  clamp buckets tracking 20% utilization each. A 25% boosted tasks will
919	  be refcounted in the [20..39]% bucket and will set the bucket clamp
920	  effective value to 25%.
921	  If a second 30% boosted task should be co-scheduled on the same CPU,
922	  that task will be refcounted in the same bucket of the first task and
923	  it will boost the bucket clamp effective value to 30%.
924	  The clamp effective value of a bucket is reset to its nominal value
925	  (20% in the example above) when there are no more tasks refcounted in
926	  that bucket.
927
928	  An additional boost/capping margin can be added to some tasks. In the
929	  example above the 25% task will be boosted to 30% until it exits the
930	  CPU. If that should be considered not acceptable on certain systems,
931	  it's always possible to reduce the margin by increasing the number of
932	  clamp buckets to trade off used memory for run-time tracking
933	  precision.
934
935	  If in doubt, use the default value.
936
937config SCHED_PROXY_EXEC
938	bool "Proxy Execution"
939	# Avoid some build failures w/ PREEMPT_RT until it can be fixed
940	depends on !PREEMPT_RT
941	# Need to investigate how to inform sched_ext of split contexts
942	depends on !SCHED_CLASS_EXT
943	# Not particularly useful until we get to multi-rq proxying
944	depends on EXPERT
945	help
946	  This option enables proxy execution, a mechanism for mutex-owning
947	  tasks to inherit the scheduling context of higher priority waiters.
948
949endmenu
950
951#
952# For architectures that want to enable the support for NUMA-affine scheduler
953# balancing logic:
954#
955config ARCH_SUPPORTS_NUMA_BALANCING
956	bool
957
958#
959# For architectures that prefer to flush all TLBs after a number of pages
960# are unmapped instead of sending one IPI per page to flush. The architecture
961# must provide guarantees on what happens if a clean TLB cache entry is
962# written after the unmap. Details are in mm/rmap.c near the check for
963# should_defer_flush. The architecture should also consider if the full flush
964# and the refill costs are offset by the savings of sending fewer IPIs.
965config ARCH_WANT_BATCHED_UNMAP_TLB_FLUSH
966	bool
967
968config CC_HAS_INT128
969	def_bool !$(cc-option,$(m64-flag) -D__SIZEOF_INT128__=0) && 64BIT
970
971config CC_IMPLICIT_FALLTHROUGH
972	string
973	default "-Wimplicit-fallthrough=5" if CC_IS_GCC && $(cc-option,-Wimplicit-fallthrough=5)
974	default "-Wimplicit-fallthrough" if CC_IS_CLANG && $(cc-option,-Wunreachable-code-fallthrough)
975
976config CC_MS_EXTENSIONS
977	string
978	default "-fms-anonymous-structs" if $(cc-option,-fms-anonymous-structs)
979	default "-fms-extensions"
980
981# Currently, disable gcc-10+ array-bounds globally.
982# It's still broken in gcc-13, so no upper bound yet.
983config GCC10_NO_ARRAY_BOUNDS
984	def_bool y
985
986config CC_NO_ARRAY_BOUNDS
987	bool
988	default y if CC_IS_GCC && GCC_VERSION >= 90000 && GCC10_NO_ARRAY_BOUNDS
989
990# Currently, disable -Wstringop-overflow for GCC globally.
991config GCC_NO_STRINGOP_OVERFLOW
992	def_bool y
993
994config CC_NO_STRINGOP_OVERFLOW
995	bool
996	default y if CC_IS_GCC && GCC_NO_STRINGOP_OVERFLOW
997
998config CC_STRINGOP_OVERFLOW
999	bool
1000	default y if CC_IS_GCC && !CC_NO_STRINGOP_OVERFLOW
1001
1002#
1003# For architectures that know their GCC __int128 support is sound
1004#
1005config ARCH_SUPPORTS_INT128
1006	bool
1007
1008# For architectures that (ab)use NUMA to represent different memory regions
1009# all cpu-local but of different latencies, such as SuperH.
1010#
1011config ARCH_WANT_NUMA_VARIABLE_LOCALITY
1012	bool
1013
1014config NUMA_BALANCING
1015	bool "Memory placement aware NUMA scheduler"
1016	depends on ARCH_SUPPORTS_NUMA_BALANCING
1017	depends on !ARCH_WANT_NUMA_VARIABLE_LOCALITY
1018	depends on SMP && NUMA_MIGRATION && !PREEMPT_RT
1019	help
1020	  This option adds support for automatic NUMA aware memory/task placement.
1021	  The mechanism is quite primitive and is based on migrating memory when
1022	  it has references to the node the task is running on.
1023
1024	  This system will be inactive on UMA systems.
1025
1026config SCHED_CACHE
1027	bool "Cache aware load balance"
1028	default y
1029	depends on SMP
1030	help
1031	  When enabled, the scheduler will attempt to aggregate tasks from
1032	  the same process onto a single Last Level Cache (LLC) domain when
1033	  possible. This improves cache locality by keeping tasks that share
1034	  resources within the same cache domain, reducing cache misses and
1035	  lowering data access latency.
1036
1037config NUMA_BALANCING_DEFAULT_ENABLED
1038	bool "Automatically enable NUMA aware memory/task placement"
1039	default y
1040	depends on NUMA_BALANCING
1041	help
1042	  If set, automatic NUMA balancing will be enabled if running on a NUMA
1043	  machine.
1044
1045config SLAB_OBJ_EXT
1046	bool
1047
1048menuconfig CGROUPS
1049	bool "Control Group support"
1050	select KERNFS
1051	help
1052	  This option adds support for grouping sets of processes together, for
1053	  use with process control subsystems such as Cpusets, CFS, memory
1054	  controls or device isolation.
1055	  See
1056		- Documentation/scheduler/sched-design-CFS.rst	(CFS)
1057		- Documentation/admin-guide/cgroup-v1/ (features for grouping, isolation
1058					  and resource control)
1059
1060	  Say N if unsure.
1061
1062if CGROUPS
1063
1064config PAGE_COUNTER
1065	bool
1066
1067config CGROUP_FAVOR_DYNMODS
1068	bool "Favor dynamic modification latency reduction by default"
1069	help
1070	  This option enables the "favordynmods" mount option by default
1071	  which reduces the latencies of dynamic cgroup modifications such
1072	  as task migrations and controller on/offs at the cost of making
1073	  hot path operations such as forks and exits more expensive.
1074
1075	  Say N if unsure.
1076
1077config MEMCG
1078	bool "Memory controller"
1079	select PAGE_COUNTER
1080	select EVENTFD
1081	select SLAB_OBJ_EXT
1082	select VM_EVENT_COUNTERS
1083	help
1084	  Provides control over the memory footprint of tasks in a cgroup.
1085
1086config MEMCG_NMI_UNSAFE
1087	bool
1088	depends on MEMCG
1089	depends on HAVE_NMI
1090	depends on !ARCH_HAS_NMI_SAFE_THIS_CPU_OPS && !ARCH_HAVE_NMI_SAFE_CMPXCHG
1091	default y
1092
1093config MEMCG_NMI_SAFETY_REQUIRES_ATOMIC
1094	bool
1095	depends on MEMCG
1096	depends on HAVE_NMI
1097	depends on !ARCH_HAS_NMI_SAFE_THIS_CPU_OPS && ARCH_HAVE_NMI_SAFE_CMPXCHG
1098	default y
1099
1100config MEMCG_V1
1101	bool "Legacy cgroup v1 memory controller"
1102	depends on MEMCG
1103	default n
1104	help
1105	  Legacy cgroup v1 memory controller which has been deprecated by
1106	  cgroup v2 implementation. The v1 is there for legacy applications
1107	  which haven't migrated to the new cgroup v2 interface yet. If you
1108	  do not have any such application then you are completely fine leaving
1109	  this option disabled.
1110
1111	  Please note that feature set of the legacy memory controller is likely
1112	  going to shrink due to deprecation process. New deployments with v1
1113	  controller are highly discouraged.
1114
1115	  Say N if unsure.
1116
1117config BLK_CGROUP
1118	bool "IO controller"
1119	depends on BLOCK
1120	default n
1121	help
1122	Generic block IO controller cgroup interface. This is the common
1123	cgroup interface which should be used by various IO controlling
1124	policies.
1125
1126	Currently, CFQ IO scheduler uses it to recognize task groups and
1127	control disk bandwidth allocation (proportional time slice allocation)
1128	to such task groups. It is also used by bio throttling logic in
1129	block layer to implement upper limit in IO rates on a device.
1130
1131	This option only enables generic Block IO controller infrastructure.
1132	One needs to also enable actual IO controlling logic/policy. For
1133	enabling proportional weight division of disk bandwidth in CFQ, set
1134	CONFIG_BFQ_GROUP_IOSCHED=y; for enabling throttling policy, set
1135	CONFIG_BLK_DEV_THROTTLING=y.
1136
1137	See Documentation/admin-guide/cgroup-v1/blkio-controller.rst for more information.
1138
1139config CGROUP_WRITEBACK
1140	bool
1141	depends on MEMCG && BLK_CGROUP
1142	default y
1143
1144menuconfig CGROUP_SCHED
1145	bool "CPU controller"
1146	default n
1147	help
1148	  This feature lets CPU scheduler recognize task groups and control CPU
1149	  bandwidth allocation to such task groups. It uses cgroups to group
1150	  tasks.
1151
1152if CGROUP_SCHED
1153config GROUP_SCHED_WEIGHT
1154	def_bool n
1155
1156config GROUP_SCHED_BANDWIDTH
1157	def_bool n
1158
1159config FAIR_GROUP_SCHED
1160	bool "Group scheduling for SCHED_OTHER"
1161	depends on CGROUP_SCHED
1162	select GROUP_SCHED_WEIGHT
1163	default CGROUP_SCHED
1164
1165config CFS_BANDWIDTH
1166	bool "CPU bandwidth provisioning for FAIR_GROUP_SCHED"
1167	depends on FAIR_GROUP_SCHED
1168	select GROUP_SCHED_BANDWIDTH
1169	default n
1170	help
1171	  This option allows users to define CPU bandwidth rates (limits) for
1172	  tasks running within the fair group scheduler.  Groups with no limit
1173	  set are considered to be unconstrained and will run with no
1174	  restriction.
1175	  See Documentation/scheduler/sched-bwc.rst for more information.
1176
1177config RT_GROUP_SCHED
1178	bool "Group scheduling for SCHED_RR/FIFO"
1179	depends on CGROUP_SCHED
1180	default n
1181	help
1182	  This feature lets you explicitly allocate real CPU bandwidth
1183	  to task groups. If enabled, it will also make it impossible to
1184	  schedule realtime tasks for non-root users until you allocate
1185	  realtime bandwidth for them.
1186	  See Documentation/scheduler/sched-rt-group.rst for more information.
1187
1188config RT_GROUP_SCHED_DEFAULT_DISABLED
1189	bool "Require boot parameter to enable group scheduling for SCHED_RR/FIFO"
1190	depends on RT_GROUP_SCHED
1191	default n
1192	help
1193	  When set, the RT group scheduling is disabled by default. The option
1194	  is in inverted form so that mere RT_GROUP_SCHED enables the group
1195	  scheduling.
1196
1197	  Say N if unsure.
1198
1199config EXT_GROUP_SCHED
1200	bool
1201	depends on SCHED_CLASS_EXT && CGROUP_SCHED
1202	select GROUP_SCHED_WEIGHT
1203	select GROUP_SCHED_BANDWIDTH
1204	default y
1205
1206endif #CGROUP_SCHED
1207
1208config EXT_SUB_SCHED
1209        def_bool y
1210        depends on SCHED_CLASS_EXT && CGROUPS
1211
1212config SCHED_MM_CID
1213	def_bool y
1214	depends on SMP && RSEQ
1215
1216config UCLAMP_TASK_GROUP
1217	bool "Utilization clamping per group of tasks"
1218	depends on CGROUP_SCHED
1219	depends on UCLAMP_TASK
1220	default n
1221	help
1222	  This feature enables the scheduler to track the clamped utilization
1223	  of each CPU based on RUNNABLE tasks currently scheduled on that CPU.
1224
1225	  When this option is enabled, the user can specify a min and max
1226	  CPU bandwidth which is allowed for each single task in a group.
1227	  The max bandwidth allows to clamp the maximum frequency a task
1228	  can use, while the min bandwidth allows to define a minimum
1229	  frequency a task will always use.
1230
1231	  When task group based utilization clamping is enabled, an eventually
1232	  specified task-specific clamp value is constrained by the cgroup
1233	  specified clamp value. Both minimum and maximum task clamping cannot
1234	  be bigger than the corresponding clamping defined at task group level.
1235
1236	  If in doubt, say N.
1237
1238config CGROUP_PIDS
1239	bool "PIDs controller"
1240	help
1241	  Provides enforcement of process number limits in the scope of a
1242	  cgroup. Any attempt to fork more processes than is allowed in the
1243	  cgroup will fail. PIDs are fundamentally a global resource because it
1244	  is fairly trivial to reach PID exhaustion before you reach even a
1245	  conservative kmemcg limit. As a result, it is possible to grind a
1246	  system to halt without being limited by other cgroup policies. The
1247	  PIDs controller is designed to stop this from happening.
1248
1249	  It should be noted that organisational operations (such as attaching
1250	  to a cgroup hierarchy) will *not* be blocked by the PIDs controller,
1251	  since the PIDs limit only affects a process's ability to fork, not to
1252	  attach to a cgroup.
1253
1254config CGROUP_RDMA
1255	bool "RDMA controller"
1256	help
1257	  Provides enforcement of RDMA resources defined by IB stack.
1258	  It is fairly easy for consumers to exhaust RDMA resources, which
1259	  can result into resource unavailability to other consumers.
1260	  RDMA controller is designed to stop this from happening.
1261	  Attaching processes with active RDMA resources to the cgroup
1262	  hierarchy is allowed even if can cross the hierarchy's limit.
1263
1264config CGROUP_DMEM
1265	bool "Device memory controller (DMEM)"
1266	select PAGE_COUNTER
1267	help
1268	  The DMEM controller allows compatible devices to restrict device
1269	  memory usage based on the cgroup hierarchy.
1270
1271	  As an example, it allows you to restrict VRAM usage for applications
1272	  in the DRM subsystem.
1273
1274config CGROUP_FREEZER
1275	bool "Freezer controller"
1276	help
1277	  Provides a way to freeze and unfreeze all tasks in a
1278	  cgroup.
1279
1280	  This option affects the ORIGINAL cgroup interface. The cgroup2 memory
1281	  controller includes important in-kernel memory consumers per default.
1282
1283	  If you're using cgroup2, say N.
1284
1285config CGROUP_HUGETLB
1286	bool "HugeTLB controller"
1287	depends on HUGETLB_PAGE
1288	select PAGE_COUNTER
1289	default n
1290	help
1291	  Provides a cgroup controller for HugeTLB pages.
1292	  When you enable this, you can put a per cgroup limit on HugeTLB usage.
1293	  The limit is enforced during page fault. Since HugeTLB doesn't
1294	  support page reclaim, enforcing the limit at page fault time implies
1295	  that, the application will get SIGBUS signal if it tries to access
1296	  HugeTLB pages beyond its limit. This requires the application to know
1297	  beforehand how much HugeTLB pages it would require for its use. The
1298	  control group is tracked in the third page lru pointer. This means
1299	  that we cannot use the controller with huge page less than 3 pages.
1300
1301config CPUSETS
1302	bool "Cpuset controller"
1303	depends on SMP
1304	select UNION_FIND
1305	select CPU_ISOLATION
1306	help
1307	  This option will let you create and manage CPUSETs which
1308	  allow dynamically partitioning a system into sets of CPUs and
1309	  Memory Nodes and assigning tasks to run only within those sets.
1310	  This is primarily useful on large SMP or NUMA systems.
1311
1312	  Say N if unsure.
1313
1314config CPUSETS_V1
1315	bool "Legacy cgroup v1 cpusets controller"
1316	depends on CPUSETS
1317	default n
1318	help
1319	  Legacy cgroup v1 cpusets controller which has been deprecated by
1320	  cgroup v2 implementation. The v1 is there for legacy applications
1321	  which haven't migrated to the new cgroup v2 interface yet. Legacy
1322	  interface includes cpuset filesystem and /proc/<pid>/cpuset. If you
1323	  do not have any such application then you are completely fine leaving
1324	  this option disabled.
1325
1326	  Say N if unsure.
1327
1328config PROC_PID_CPUSET
1329	bool "Include legacy /proc/<pid>/cpuset file"
1330	depends on CPUSETS_V1
1331	default y
1332
1333config CGROUP_DEVICE
1334	bool "Device controller"
1335	help
1336	  Provides a cgroup controller implementing whitelists for
1337	  devices which a process in the cgroup can mknod or open.
1338
1339config CGROUP_CPUACCT
1340	bool "Simple CPU accounting controller"
1341	help
1342	  Provides a simple controller for monitoring the
1343	  total CPU consumed by the tasks in a cgroup.
1344
1345config CGROUP_PERF
1346	bool "Perf controller"
1347	depends on PERF_EVENTS
1348	help
1349	  This option extends the perf per-cpu mode to restrict monitoring
1350	  to threads which belong to the cgroup specified and run on the
1351	  designated cpu.  Or this can be used to have cgroup ID in samples
1352	  so that it can monitor performance events among cgroups.
1353
1354	  Say N if unsure.
1355
1356config CGROUP_BPF
1357	bool "Support for eBPF programs attached to cgroups"
1358	depends on BPF_SYSCALL
1359	select SOCK_CGROUP_DATA
1360	help
1361	  Allow attaching eBPF programs to a cgroup using the bpf(2)
1362	  syscall command BPF_PROG_ATTACH.
1363
1364	  In which context these programs are accessed depends on the type
1365	  of attachment. For instance, programs that are attached using
1366	  BPF_CGROUP_INET_INGRESS will be executed on the ingress path of
1367	  inet sockets.
1368
1369config CGROUP_MISC
1370	bool "Misc resource controller"
1371	default n
1372	help
1373	  Provides a controller for miscellaneous resources on a host.
1374
1375	  Miscellaneous scalar resources are the resources on the host system
1376	  which cannot be abstracted like the other cgroups. This controller
1377	  tracks and limits the miscellaneous resources used by a process
1378	  attached to a cgroup hierarchy.
1379
1380	  For more information, please check misc cgroup section in
1381	  /Documentation/admin-guide/cgroup-v2.rst.
1382
1383config CGROUP_DEBUG
1384	bool "Debug controller"
1385	default n
1386	depends on DEBUG_KERNEL
1387	help
1388	  This option enables a simple controller that exports
1389	  debugging information about the cgroups framework. This
1390	  controller is for control cgroup debugging only. Its
1391	  interfaces are not stable.
1392
1393	  Say N.
1394
1395config SOCK_CGROUP_DATA
1396	bool
1397	default n
1398
1399endif # CGROUPS
1400
1401menuconfig NAMESPACES
1402	bool "Namespaces support" if EXPERT
1403	depends on MULTIUSER
1404	default !EXPERT
1405	help
1406	  Provides the way to make tasks work with different objects using
1407	  the same id. For example same IPC id may refer to different objects
1408	  or same user id or pid may refer to different tasks when used in
1409	  different namespaces.
1410
1411if NAMESPACES
1412
1413config UTS_NS
1414	bool "UTS namespace"
1415	default y
1416	help
1417	  In this namespace tasks see different info provided with the
1418	  uname() system call
1419
1420config TIME_NS
1421	bool "TIME namespace"
1422	default y
1423	help
1424	  In this namespace boottime and monotonic clocks can be set.
1425	  The time will keep going with the same pace.
1426
1427config TIME_NS_VDSO
1428	def_bool TIME_NS && GENERIC_GETTIMEOFDAY
1429
1430config IPC_NS
1431	bool "IPC namespace"
1432	depends on (SYSVIPC || POSIX_MQUEUE)
1433	default y
1434	help
1435	  In this namespace tasks work with IPC ids which correspond to
1436	  different IPC objects in different namespaces.
1437
1438config USER_NS
1439	bool "User namespace"
1440	default n
1441	help
1442	  This allows containers, i.e. vservers, to use user namespaces
1443	  to provide different user info for different servers.
1444
1445	  When user namespaces are enabled in the kernel it is
1446	  recommended that the MEMCG option also be enabled and that
1447	  user-space use the memory control groups to limit the amount
1448	  of memory a memory unprivileged users can use.
1449
1450	  If unsure, say N.
1451
1452config PID_NS
1453	bool "PID Namespaces"
1454	default y
1455	help
1456	  Support process id namespaces.  This allows having multiple
1457	  processes with the same pid as long as they are in different
1458	  pid namespaces.  This is a building block of containers.
1459
1460config NET_NS
1461	bool "Network namespace"
1462	depends on NET
1463	default y
1464	help
1465	  Allow user space to create what appear to be multiple instances
1466	  of the network stack.
1467
1468endif # NAMESPACES
1469
1470config CHECKPOINT_RESTORE
1471	bool "Checkpoint/restore support"
1472	depends on PROC_FS
1473	select PROC_CHILDREN
1474	select KCMP
1475	default n
1476	help
1477	  Enables additional kernel features in a sake of checkpoint/restore.
1478	  In particular it adds auxiliary prctl codes to setup process text,
1479	  data and heap segment sizes, and a few additional /proc filesystem
1480	  entries.
1481
1482	  If unsure, say N here.
1483
1484config SCHED_AUTOGROUP
1485	bool "Automatic process group scheduling"
1486	select CGROUPS
1487	select CGROUP_SCHED
1488	select FAIR_GROUP_SCHED
1489	help
1490	  This option optimizes the scheduler for common desktop workloads by
1491	  automatically creating and populating task groups.  This separation
1492	  of workloads isolates aggressive CPU burners (like build jobs) from
1493	  desktop applications.  Task group autogeneration is currently based
1494	  upon task session.
1495
1496config RELAY
1497	bool "Kernel->user space relay support (formerly relayfs)"
1498	select IRQ_WORK
1499	help
1500	  This option enables support for relay interface support in
1501	  certain file systems (such as debugfs).
1502	  It is designed to provide an efficient mechanism for tools and
1503	  facilities to relay large amounts of data from kernel space to
1504	  user space.
1505
1506	  If unsure, say N.
1507
1508config BLK_DEV_INITRD
1509	bool "Initial RAM filesystem and RAM disk (initramfs/initrd) support"
1510	help
1511	  The initial RAM filesystem is a ramfs which is loaded by the
1512	  boot loader (loadlin or lilo) and that is mounted as root
1513	  before the normal boot procedure. It is typically used to
1514	  load modules needed to mount the "real" root file system,
1515	  etc. See <file:Documentation/admin-guide/initrd.rst> for details.
1516
1517	  If RAM disk support (BLK_DEV_RAM) is also included, this
1518	  also enables initial RAM disk (initrd) support and adds
1519	  15 Kbytes (more on some other architectures) to the kernel size.
1520
1521	  If unsure say Y.
1522
1523if BLK_DEV_INITRD
1524
1525source "usr/Kconfig"
1526
1527endif
1528
1529config BOOT_CONFIG
1530	bool "Boot config support"
1531	select BLK_DEV_INITRD if !BOOT_CONFIG_EMBED
1532	help
1533	  Extra boot config allows system admin to pass a config file as
1534	  complemental extension of kernel cmdline when booting.
1535	  The boot config file must be attached at the end of initramfs
1536	  with checksum, size and magic word.
1537	  See <file:Documentation/admin-guide/bootconfig.rst> for details.
1538
1539	  If unsure, say Y.
1540
1541config BOOT_CONFIG_FORCE
1542	bool "Force unconditional bootconfig processing"
1543	depends on BOOT_CONFIG
1544	default y if BOOT_CONFIG_EMBED
1545	help
1546	  With this Kconfig option set, BOOT_CONFIG processing is carried
1547	  out even when the "bootconfig" kernel-boot parameter is omitted.
1548	  In fact, with this Kconfig option set, there is no way to
1549	  make the kernel ignore the BOOT_CONFIG-supplied kernel-boot
1550	  parameters.
1551
1552	  If unsure, say N.
1553
1554config BOOT_CONFIG_EMBED
1555	bool "Embed bootconfig file in the kernel"
1556	depends on BOOT_CONFIG
1557	help
1558	  Embed a bootconfig file given by BOOT_CONFIG_EMBED_FILE in the
1559	  kernel. Usually, the bootconfig file is loaded with the initrd
1560	  image. But if the system doesn't support initrd, this option will
1561	  help you by embedding a bootconfig file while building the kernel.
1562
1563	  If unsure, say N.
1564
1565config BOOT_CONFIG_EMBED_FILE
1566	string "Embedded bootconfig file path"
1567	depends on BOOT_CONFIG_EMBED
1568	help
1569	  Specify a bootconfig file which will be embedded to the kernel.
1570	  This bootconfig will be used if there is no initrd or no other
1571	  bootconfig in the initrd.
1572
1573config CMDLINE_LOG_WRAP_IDEAL_LEN
1574	int "Length to try to wrap the cmdline when logged at boot"
1575	default 1021
1576	range 0 1021
1577	help
1578	  At boot time, the kernel command line is logged to the console.
1579	  The log message will start with the prefix "Kernel command line: ".
1580	  The log message will attempt to be wrapped (split into multiple log
1581	  messages) at spaces based on CMDLINE_LOG_WRAP_IDEAL_LEN characters.
1582	  If wrapping happens, each log message will start with the prefix and
1583	  all but the last message will end with " \". Messages may exceed the
1584	  ideal length if a place to wrap isn't found before the specified
1585	  number of characters.
1586
1587	  A value of 0 disables wrapping, though be warned that the maximum
1588	  length of a log message (1021 characters) may cause the cmdline to
1589	  be truncated.
1590
1591config INITRAMFS_PRESERVE_MTIME
1592	bool "Preserve cpio archive mtimes in initramfs"
1593	depends on BLK_DEV_INITRD
1594	default y
1595	help
1596	  Each entry in an initramfs cpio archive carries an mtime value. When
1597	  enabled, extracted cpio items take this mtime, with directory mtime
1598	  setting deferred until after creation of any child entries.
1599
1600	  If unsure, say Y.
1601
1602config INITRAMFS_TEST
1603	bool "Test initramfs cpio archive extraction" if !KUNIT_ALL_TESTS
1604	depends on BLK_DEV_INITRD && KUNIT=y
1605	default KUNIT_ALL_TESTS
1606	help
1607	  Build KUnit tests for initramfs. See Documentation/dev-tools/kunit
1608
1609choice
1610	prompt "Compiler optimization level"
1611	default CC_OPTIMIZE_FOR_PERFORMANCE
1612
1613config CC_OPTIMIZE_FOR_PERFORMANCE
1614	bool "Optimize for performance (-O2)"
1615	help
1616	  This is the default optimization level for the kernel, building
1617	  with the "-O2" compiler flag for best performance and most
1618	  helpful compile-time warnings.
1619
1620config CC_OPTIMIZE_FOR_SIZE
1621	bool "Optimize for size (-Os)"
1622	help
1623	  Choosing this option will pass "-Os" to your compiler resulting
1624	  in a smaller kernel.
1625
1626endchoice
1627
1628config HAVE_LD_DEAD_CODE_DATA_ELIMINATION
1629	bool
1630	help
1631	  This requires that the arch annotates or otherwise protects
1632	  its external entry points from being discarded. Linker scripts
1633	  must also merge .text.*, .data.*, and .bss.* correctly into
1634	  output sections. Care must be taken not to pull in unrelated
1635	  sections (e.g., '.text.init'). Typically '.' in section names
1636	  is used to distinguish them from label names / C identifiers.
1637
1638config LD_DEAD_CODE_DATA_ELIMINATION
1639	bool "Dead code and data elimination (EXPERIMENTAL)"
1640	depends on HAVE_LD_DEAD_CODE_DATA_ELIMINATION
1641	depends on EXPERT
1642	depends on $(cc-option,-ffunction-sections -fdata-sections)
1643	depends on $(ld-option,--gc-sections)
1644	help
1645	  Enable this if you want to do dead code and data elimination with
1646	  the linker by compiling with -ffunction-sections -fdata-sections,
1647	  and linking with --gc-sections.
1648
1649	  This can reduce on disk and in-memory size of the kernel
1650	  code and static data, particularly for small configs and
1651	  on small systems. This has the possibility of introducing
1652	  silently broken kernel if the required annotations are not
1653	  present. This option is not well tested yet, so use at your
1654	  own risk.
1655
1656config LD_ORPHAN_WARN
1657	def_bool y
1658	depends on ARCH_WANT_LD_ORPHAN_WARN
1659	depends on $(ld-option,--orphan-handling=warn)
1660	depends on $(ld-option,--orphan-handling=error)
1661
1662config LD_ORPHAN_WARN_LEVEL
1663	string
1664	depends on LD_ORPHAN_WARN
1665	default "error" if WERROR
1666	default "warn"
1667
1668config HAVE_UID16
1669	bool
1670
1671config SYSCTL_EXCEPTION_TRACE
1672	bool
1673	help
1674	  Enable support for /proc/sys/debug/exception-trace.
1675
1676config SYSCTL_ARCH_UNALIGN_NO_WARN
1677	bool
1678	help
1679	  Enable support for /proc/sys/kernel/ignore-unaligned-usertrap
1680	  Allows arch to define/use @no_unaligned_warning to possibly warn
1681	  about unaligned access emulation going on under the hood.
1682
1683config SYSCTL_ARCH_UNALIGN_ALLOW
1684	bool
1685	help
1686	  Enable support for /proc/sys/kernel/unaligned-trap
1687	  Allows arches to define/use @unaligned_enabled to runtime toggle
1688	  the unaligned access emulation.
1689	  see arch/parisc/kernel/unaligned.c for reference
1690
1691config SYSFS_SYSCALL
1692	bool "Sysfs syscall support"
1693	default n
1694	help
1695	  sys_sysfs is an obsolete system call no longer supported in libc.
1696	  Note that disabling this option is more secure but might break
1697	  compatibility with some systems.
1698
1699	  If unsure say N here.
1700
1701config HAVE_PCSPKR_PLATFORM
1702	bool
1703
1704menuconfig EXPERT
1705	bool "Configure standard kernel features (expert users)"
1706	# Unhide debug options, to make the on-by-default options visible
1707	select DEBUG_KERNEL
1708	help
1709	  This option allows certain base kernel options and settings
1710	  to be disabled or tweaked. This is for specialized
1711	  environments which can tolerate a "non-standard" kernel.
1712	  Only use this if you really know what you are doing.
1713
1714config UID16
1715	bool "Enable 16-bit UID system calls" if EXPERT
1716	depends on HAVE_UID16 && MULTIUSER
1717	default y
1718	help
1719	  This enables the legacy 16-bit UID syscall wrappers.
1720
1721config MULTIUSER
1722	bool "Multiple users, groups and capabilities support" if EXPERT
1723	default y
1724	help
1725	  This option enables support for non-root users, groups and
1726	  capabilities.
1727
1728	  If you say N here, all processes will run with UID 0, GID 0, and all
1729	  possible capabilities.  Saying N here also compiles out support for
1730	  system calls related to UIDs, GIDs, and capabilities, such as setuid,
1731	  setgid, and capset.
1732
1733	  If unsure, say Y here.
1734
1735config SGETMASK_SYSCALL
1736	bool "sgetmask/ssetmask syscalls support" if EXPERT
1737	default PARISC || M68K || PPC || MIPS || X86 || SPARC || MICROBLAZE || SUPERH
1738	help
1739	  sys_sgetmask and sys_ssetmask are obsolete system calls
1740	  no longer supported in libc but still enabled by default in some
1741	  architectures.
1742
1743	  If unsure, leave the default option here.
1744
1745config FHANDLE
1746	bool "open by fhandle syscalls" if EXPERT
1747	select EXPORTFS
1748	default y
1749	help
1750	  If you say Y here, a user level program will be able to map
1751	  file names to handle and then later use the handle for
1752	  different file system operations. This is useful in implementing
1753	  userspace file servers, which now track files using handles instead
1754	  of names. The handle would remain the same even if file names
1755	  get renamed. Enables open_by_handle_at(2) and name_to_handle_at(2)
1756	  syscalls.
1757
1758config POSIX_TIMERS
1759	bool "Posix Clocks & timers" if EXPERT
1760	default y
1761	help
1762	  This includes native support for POSIX timers to the kernel.
1763	  Some embedded systems have no use for them and therefore they
1764	  can be configured out to reduce the size of the kernel image.
1765
1766	  When this option is disabled, the following syscalls won't be
1767	  available: timer_create, timer_gettime: timer_getoverrun,
1768	  timer_settime, timer_delete, clock_adjtime, getitimer,
1769	  setitimer, alarm. Furthermore, the clock_settime, clock_gettime,
1770	  clock_getres and clock_nanosleep syscalls will be limited to
1771	  CLOCK_REALTIME, CLOCK_MONOTONIC and CLOCK_BOOTTIME only.
1772
1773	  If unsure say y.
1774
1775config PRINTK
1776	default y
1777	bool "Enable support for printk" if EXPERT
1778	select IRQ_WORK
1779	help
1780	  This option enables normal printk support. Removing it
1781	  eliminates most of the message strings from the kernel image
1782	  and makes the kernel more or less silent. As this makes it
1783	  very difficult to diagnose system problems, saying N here is
1784	  strongly discouraged.
1785
1786config PRINTK_RINGBUFFER_KUNIT_TEST
1787	tristate "KUnit Test for the printk ringbuffer" if !KUNIT_ALL_TESTS
1788	depends on PRINTK && KUNIT
1789	default KUNIT_ALL_TESTS
1790	help
1791	  This builds the printk ringbuffer KUnit test suite.
1792
1793	  For more information on KUnit and unit tests in general, please refer
1794	  to the KUnit documentation.
1795
1796	  If unsure, say N.
1797
1798config BUG
1799	bool "BUG() support" if EXPERT
1800	default y
1801	help
1802	  Disabling this option eliminates support for BUG and WARN, reducing
1803	  the size of your kernel image and potentially quietly ignoring
1804	  numerous fatal conditions. You should only consider disabling this
1805	  option for embedded systems with no facilities for reporting errors.
1806	  Just say Y.
1807
1808config ELF_CORE
1809	depends on COREDUMP
1810	default y
1811	bool "Enable ELF core dumps" if EXPERT
1812	help
1813	  Enable support for generating core dumps. Disabling saves about 4k.
1814
1815
1816config PCSPKR_PLATFORM
1817	bool "Enable PC-Speaker support" if EXPERT
1818	depends on HAVE_PCSPKR_PLATFORM
1819	select I8253_LOCK
1820	default y
1821	help
1822	  This option allows to disable the internal PC-Speaker
1823	  support, saving some memory.
1824
1825config BASE_SMALL
1826	bool "Enable smaller-sized data structures for core" if EXPERT
1827	help
1828	  Enabling this option reduces the size of miscellaneous core
1829	  kernel data structures. This saves memory on small machines,
1830	  but may reduce performance.
1831
1832config FUTEX
1833	bool "Enable futex support" if EXPERT
1834	depends on !(SPARC32 && SMP)
1835	default y
1836	imply RT_MUTEXES
1837	help
1838	  Disabling this option will cause the kernel to be built without
1839	  support for "fast userspace mutexes".  The resulting kernel may not
1840	  run glibc-based applications correctly.
1841
1842config FUTEX_PI
1843	bool
1844	depends on FUTEX && RT_MUTEXES
1845	default y
1846
1847config FUTEX_PRIVATE_HASH
1848	bool
1849	depends on FUTEX && !BASE_SMALL && MMU
1850	default y
1851
1852config FUTEX_MPOL
1853	bool
1854	depends on FUTEX && NUMA
1855	default y
1856
1857config HAVE_FUTEX_ROBUST_UNLOCK
1858	bool
1859
1860config FUTEX_ROBUST_UNLOCK
1861	def_bool FUTEX && GENERIC_IRQ_ENTRY && RSEQ && HAVE_FUTEX_ROBUST_UNLOCK
1862
1863config EPOLL
1864	bool "Enable eventpoll support" if EXPERT
1865	default y
1866	help
1867	  Disabling this option will cause the kernel to be built without
1868	  support for epoll family of system calls.
1869
1870config SIGNALFD
1871	bool "Enable signalfd() system call" if EXPERT
1872	default y
1873	help
1874	  Enable the signalfd() system call that allows to receive signals
1875	  on a file descriptor.
1876
1877	  If unsure, say Y.
1878
1879config TIMERFD
1880	bool "Enable timerfd() system call" if EXPERT
1881	default y
1882	help
1883	  Enable the timerfd() system call that allows to receive timer
1884	  events on a file descriptor.
1885
1886	  If unsure, say Y.
1887
1888config EVENTFD
1889	bool "Enable eventfd() system call" if EXPERT
1890	default y
1891	help
1892	  Enable the eventfd() system call that allows to receive both
1893	  kernel notification (ie. KAIO) or userspace notifications.
1894
1895	  If unsure, say Y.
1896
1897config SHMEM
1898	bool "Use full shmem filesystem" if EXPERT
1899	default y
1900	depends on MMU
1901	help
1902	  The shmem is an internal filesystem used to manage shared memory.
1903	  It is backed by swap and manages resource limits. It is also exported
1904	  to userspace as tmpfs if TMPFS is enabled. Disabling this
1905	  option replaces shmem and tmpfs with the much simpler ramfs code,
1906	  which may be appropriate on small systems without swap.
1907
1908config AIO
1909	bool "Enable AIO support" if EXPERT
1910	default y
1911	help
1912	  This option enables POSIX asynchronous I/O which may by used
1913	  by some high performance threaded applications. Disabling
1914	  this option saves about 7k.
1915
1916config IO_URING
1917	bool "Enable IO uring support" if EXPERT
1918	select IO_WQ
1919	default y
1920	help
1921	  This option enables support for the io_uring interface, enabling
1922	  applications to submit and complete IO through submission and
1923	  completion rings that are shared between the kernel and application.
1924
1925config GCOV_PROFILE_URING
1926	bool "Enable GCOV profiling on the io_uring subsystem"
1927	depends on IO_URING && GCOV_KERNEL
1928	help
1929	  Enable GCOV profiling on the io_uring subsystem, to facilitate
1930	  code coverage testing.
1931
1932	  If unsure, say N.
1933
1934	  Note that this will have a negative impact on the performance of
1935	  the io_uring subsystem, hence this should only be enabled for
1936	  specific test purposes.
1937
1938config IO_URING_MOCK_FILE
1939	tristate "Enable io_uring mock files (Experimental)" if EXPERT
1940	default n
1941	depends on IO_URING
1942	help
1943	  Enable mock files for io_uring subsystem testing. The ABI might
1944	  still change, so it's still experimental and should only be enabled
1945	  for specific test purposes.
1946
1947	  If unsure, say N.
1948
1949config ADVISE_SYSCALLS
1950	bool "Enable madvise/fadvise syscalls" if EXPERT
1951	default y
1952	help
1953	  This option enables the madvise and fadvise syscalls, used by
1954	  applications to advise the kernel about their future memory or file
1955	  usage, improving performance. If building an embedded system where no
1956	  applications use these syscalls, you can disable this option to save
1957	  space.
1958
1959config MEMBARRIER
1960	bool "Enable membarrier() system call" if EXPERT
1961	default y
1962	help
1963	  Enable the membarrier() system call that allows issuing memory
1964	  barriers across all running threads, which can be used to distribute
1965	  the cost of user-space memory barriers asymmetrically by transforming
1966	  pairs of memory barriers into pairs consisting of membarrier() and a
1967	  compiler barrier.
1968
1969	  If unsure, say Y.
1970
1971config KCMP
1972	bool "Enable kcmp() system call" if EXPERT
1973	help
1974	  Enable the kernel resource comparison system call. It provides
1975	  user-space with the ability to compare two processes to see if they
1976	  share a common resource, such as a file descriptor or even virtual
1977	  memory space.
1978
1979	  If unsure, say N.
1980
1981config RSEQ
1982	bool "Enable rseq() system call" if EXPERT
1983	default y
1984	depends on HAVE_RSEQ
1985	select MEMBARRIER
1986	help
1987	  Enable the restartable sequences system call. It provides a
1988	  user-space cache for the current CPU number value, which
1989	  speeds up getting the current CPU number from user-space,
1990	  as well as an ABI to speed up user-space operations on
1991	  per-CPU data.
1992
1993	  If unsure, say Y.
1994
1995config RSEQ_SLICE_EXTENSION
1996	bool "Enable rseq-based time slice extension mechanism"
1997	depends on RSEQ && HIGH_RES_TIMERS && GENERIC_ENTRY && HAVE_GENERIC_TIF_BITS
1998	help
1999	  Allows userspace to request a limited time slice extension when
2000	  returning from an interrupt to user space via the RSEQ shared
2001	  data ABI. If granted, that allows to complete a critical section,
2002	  so that other threads are not stuck on a conflicted resource,
2003	  while the task is scheduled out.
2004
2005	  If unsure, say N.
2006
2007config RSEQ_STATS
2008	default n
2009	bool "Enable lightweight statistics of restartable sequences" if EXPERT
2010	depends on RSEQ && DEBUG_FS
2011	help
2012	  Enable lightweight counters which expose information about the
2013	  frequency of RSEQ operations via debugfs. Mostly interesting for
2014	  kernel debugging or performance analysis. While lightweight it's
2015	  still adding code into the user/kernel mode transitions.
2016
2017	  If unsure, say N.
2018
2019config RSEQ_DEBUG_DEFAULT_ENABLE
2020	default n
2021	bool "Enable restartable sequences debug mode by default" if EXPERT
2022	depends on RSEQ
2023	help
2024	  This enables the static branch for debug mode of restartable
2025	  sequences.
2026
2027	  This also can be controlled on the kernel command line via the
2028	  command line parameter "rseq_debug=0/1" and through debugfs.
2029
2030	  If unsure, say N.
2031
2032config DEBUG_RSEQ
2033	default n
2034	bool "Enable debugging of rseq() system call" if EXPERT
2035	depends on RSEQ && DEBUG_KERNEL && !GENERIC_ENTRY
2036	select RSEQ_DEBUG_DEFAULT_ENABLE
2037	help
2038	  Enable extra debugging checks for the rseq system call.
2039
2040	  If unsure, say N.
2041
2042config CACHESTAT_SYSCALL
2043	bool "Enable cachestat() system call" if EXPERT
2044	default y
2045	help
2046	  Enable the cachestat system call, which queries the page cache
2047	  statistics of a file (number of cached pages, dirty pages,
2048	  pages marked for writeback, (recently) evicted pages).
2049
2050	  If unsure say Y here.
2051
2052config KALLSYMS
2053	bool "Load all symbols for debugging/ksymoops" if EXPERT
2054	default y
2055	help
2056	  Say Y here to let the kernel print out symbolic crash information and
2057	  symbolic stack backtraces. This increases the size of the kernel
2058	  somewhat, as all symbols have to be loaded into the kernel image.
2059
2060config KALLSYMS_SELFTEST
2061	bool "Test the basic functions and performance of kallsyms"
2062	depends on KALLSYMS
2063	default n
2064	help
2065	  Test the basic functions and performance of some interfaces, such as
2066	  kallsyms_lookup_name. It also calculates the compression rate of the
2067	  kallsyms compression algorithm for the current symbol set.
2068
2069	  Start self-test automatically after system startup. Suggest executing
2070	  "dmesg | grep kallsyms_selftest" to collect test results. "finish" is
2071	  displayed in the last line, indicating that the test is complete.
2072
2073config KALLSYMS_ALL
2074	bool "Include all symbols in kallsyms"
2075	depends on DEBUG_KERNEL && KALLSYMS
2076	help
2077	  Normally kallsyms only contains the symbols of functions for nicer
2078	  OOPS messages and backtraces (i.e., symbols from the text and inittext
2079	  sections). This is sufficient for most cases. And only if you want to
2080	  enable kernel live patching, or other less common use cases (e.g.,
2081	  when a debugger is used) all symbols are required (i.e., names of
2082	  variables from the data sections, etc).
2083
2084	  This option makes sure that all symbols are loaded into the kernel
2085	  image (i.e., symbols from all sections) in cost of increased kernel
2086	  size (depending on the kernel configuration, it may be 300KiB or
2087	  something like this).
2088
2089	  Say N unless you really need all symbols, or kernel live patching.
2090
2091# end of the "standard kernel features (expert users)" menu
2092
2093config ARCH_HAS_MEMBARRIER_CALLBACKS
2094	bool
2095
2096config ARCH_HAS_MEMBARRIER_SYNC_CORE
2097	bool
2098
2099config ARCH_SUPPORTS_MSEAL_SYSTEM_MAPPINGS
2100	bool
2101	help
2102	  Control MSEAL_SYSTEM_MAPPINGS access based on architecture.
2103
2104	  A 64-bit kernel is required for the memory sealing feature.
2105	  No specific hardware features from the CPU are needed.
2106
2107	  To enable this feature, the architecture needs to update their
2108	  special mappings calls to include the sealing flag and confirm
2109	  that it doesn't unmap/remap system mappings during the life
2110	  time of the process. The existence of this flag for an architecture
2111	  implies that it does not require the remapping of the system
2112	  mappings during process lifetime, so sealing these mappings is safe
2113	  from a kernel perspective.
2114
2115	  After the architecture enables this, a distribution can set
2116	  CONFIG_MSEAL_SYSTEM_MAPPING to manage access to the feature.
2117
2118	  For complete descriptions of memory sealing, please see
2119	  Documentation/userspace-api/mseal.rst
2120
2121config HAVE_PERF_EVENTS
2122	bool
2123	help
2124	  See tools/perf/design.txt for details.
2125
2126config GUEST_PERF_EVENTS
2127	bool
2128	depends on HAVE_PERF_EVENTS
2129
2130config PERF_GUEST_MEDIATED_PMU
2131	bool
2132	depends on GUEST_PERF_EVENTS
2133
2134config PERF_USE_VMALLOC
2135	bool
2136	help
2137	  See tools/perf/design.txt for details
2138
2139menu "Kernel Performance Events And Counters"
2140
2141config PERF_EVENTS
2142	bool "Kernel performance events and counters"
2143	default y if PROFILING
2144	depends on HAVE_PERF_EVENTS
2145	select IRQ_WORK
2146	help
2147	  Enable kernel support for various performance events provided
2148	  by software and hardware.
2149
2150	  Software events are supported either built-in or via the
2151	  use of generic tracepoints.
2152
2153	  Most modern CPUs support performance events via performance
2154	  counter registers. These registers count the number of certain
2155	  types of hw events: such as instructions executed, cachemisses
2156	  suffered, or branches mis-predicted - without slowing down the
2157	  kernel or applications. These registers can also trigger interrupts
2158	  when a threshold number of events have passed - and can thus be
2159	  used to profile the code that runs on that CPU.
2160
2161	  The Linux Performance Event subsystem provides an abstraction of
2162	  these software and hardware event capabilities, available via a
2163	  system call and used by the "perf" utility in tools/perf/. It
2164	  provides per task and per CPU counters, and it provides event
2165	  capabilities on top of those.
2166
2167	  Say Y if unsure.
2168
2169config DEBUG_PERF_USE_VMALLOC
2170	default n
2171	bool "Debug: use vmalloc to back perf mmap() buffers"
2172	depends on PERF_EVENTS && DEBUG_KERNEL && !PPC
2173	select PERF_USE_VMALLOC
2174	help
2175	  Use vmalloc memory to back perf mmap() buffers.
2176
2177	  Mostly useful for debugging the vmalloc code on platforms
2178	  that don't require it.
2179
2180	  Say N if unsure.
2181
2182endmenu
2183
2184config SYSTEM_DATA_VERIFICATION
2185	def_bool n
2186	select SYSTEM_TRUSTED_KEYRING
2187	select KEYS
2188	select CRYPTO
2189	select CRYPTO_RSA
2190	select ASYMMETRIC_KEY_TYPE
2191	select ASYMMETRIC_PUBLIC_KEY_SUBTYPE
2192	select ASN1
2193	select OID_REGISTRY
2194	select X509_CERTIFICATE_PARSER
2195	select PKCS7_MESSAGE_PARSER
2196	help
2197	  Provide PKCS#7 message verification using the contents of the system
2198	  trusted keyring to provide public keys.  This then can be used for
2199	  module verification, kexec image verification and firmware blob
2200	  verification.
2201
2202config PROFILING
2203	bool "Profiling support"
2204	help
2205	  Say Y here to enable the extended profiling support mechanisms used
2206	  by profilers.
2207
2208config RUST
2209	bool "Rust support"
2210	depends on HAVE_RUST
2211	depends on RUST_IS_AVAILABLE
2212	select EXTENDED_MODVERSIONS if MODVERSIONS
2213	depends on !MODVERSIONS || GENDWARFKSYMS
2214	depends on !GCC_PLUGIN_RANDSTRUCT
2215	depends on !RANDSTRUCT
2216	depends on !DEBUG_INFO_BTF || (PAHOLE_HAS_LANG_EXCLUDE && !LTO)
2217	depends on !CFI || HAVE_CFI_ICALL_NORMALIZE_INTEGERS_RUSTC
2218	select CFI_ICALL_NORMALIZE_INTEGERS if CFI
2219	depends on !KASAN || CC_IS_CLANG
2220	depends on !KASAN_SW_TAGS || RUSTC_VERSION >= 109600
2221	help
2222	  Enables Rust support in the kernel.
2223
2224	  This allows other Rust-related options, like drivers written in Rust,
2225	  to be selected.
2226
2227	  It is also required to be able to load external kernel modules
2228	  written in Rust.
2229
2230	  See Documentation/rust/ for more information.
2231
2232	  If unsure, say N.
2233
2234source "rust/kernel/Kconfig.test"
2235
2236config RUSTC_VERSION_TEXT
2237	string
2238	depends on RUST
2239	default "$(RUSTC_VERSION_TEXT)"
2240	help
2241	  See `CC_VERSION_TEXT`.
2242
2243config BINDGEN_VERSION_TEXT
2244	string
2245	depends on RUST
2246	default "$(shell,$(BINDGEN) --version 2>/dev/null)"
2247
2248#
2249# Place an empty function call at each tracepoint site. Can be
2250# dynamically changed for a probe function.
2251#
2252config TRACEPOINTS
2253	bool
2254	select TASKS_TRACE_RCU
2255
2256source "kernel/Kconfig.kexec"
2257
2258source "kernel/liveupdate/Kconfig"
2259
2260endmenu		# General setup
2261
2262source "arch/Kconfig"
2263
2264config RT_MUTEXES
2265	bool
2266	default y if PREEMPT_RT
2267
2268config MODULE_SIG_FORMAT
2269	def_bool n
2270	select SYSTEM_DATA_VERIFICATION
2271
2272source "kernel/module/Kconfig"
2273
2274config INIT_ALL_POSSIBLE
2275	bool
2276	help
2277	  Back when each arch used to define their own cpu_online_mask and
2278	  cpu_possible_mask, some of them chose to initialize cpu_possible_mask
2279	  with all 1s, and others with all 0s.  When they were centralised,
2280	  it was better to provide this option than to break all the archs
2281	  and have several arch maintainers pursuing me down dark alleys.
2282
2283source "block/Kconfig"
2284
2285config PREEMPT_NOTIFIERS
2286	bool
2287
2288config PADATA
2289	depends on SMP
2290	bool
2291
2292config ASN1
2293	tristate
2294	help
2295	  Build a simple ASN.1 grammar compiler that produces a bytecode output
2296	  that can be interpreted by the ASN.1 stream decoder and used to
2297	  inform it as to what tags are to be expected in a stream and what
2298	  functions to call on what tags.
2299
2300source "kernel/Kconfig.locks"
2301
2302config ARCH_HAS_NON_OVERLAPPING_ADDRESS_SPACE
2303	bool
2304
2305config ARCH_HAS_PREPARE_SYNC_CORE_CMD
2306	bool
2307
2308config ARCH_HAS_SYNC_CORE_BEFORE_USERMODE
2309	bool
2310
2311# It may be useful for an architecture to override the definitions of the
2312# SYSCALL_DEFINE() and __SYSCALL_DEFINEx() macros in <linux/syscalls.h>
2313# and the COMPAT_ variants in <linux/compat.h>, in particular to use a
2314# different calling convention for syscalls. They can also override the
2315# macros for not-implemented syscalls in kernel/sys_ni.c and
2316# kernel/time/posix-stubs.c. All these overrides need to be available in
2317# <asm/syscall_wrapper.h>.
2318config ARCH_HAS_SYSCALL_WRAPPER
2319	def_bool n
2320