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