Kconfig 42 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322
  1. config ARCH
  2. string
  3. option env="ARCH"
  4. config KERNELVERSION
  5. string
  6. option env="KERNELVERSION"
  7. config DEFCONFIG_LIST
  8. string
  9. depends on !UML
  10. option defconfig_list
  11. default "/lib/modules/$UNAME_RELEASE/.config"
  12. default "/etc/kernel-config"
  13. default "/boot/config-$UNAME_RELEASE"
  14. default "$ARCH_DEFCONFIG"
  15. default "arch/$ARCH/defconfig"
  16. config CONSTRUCTORS
  17. bool
  18. depends on !UML
  19. default y
  20. menu "General setup"
  21. config EXPERIMENTAL
  22. bool "Prompt for development and/or incomplete code/drivers"
  23. ---help---
  24. Some of the various things that Linux supports (such as network
  25. drivers, file systems, network protocols, etc.) can be in a state
  26. of development where the functionality, stability, or the level of
  27. testing is not yet high enough for general use. This is usually
  28. known as the "alpha-test" phase among developers. If a feature is
  29. currently in alpha-test, then the developers usually discourage
  30. uninformed widespread use of this feature by the general public to
  31. avoid "Why doesn't this work?" type mail messages. However, active
  32. testing and use of these systems is welcomed. Just be aware that it
  33. may not meet the normal level of reliability or it may fail to work
  34. in some special cases. Detailed bug reports from people familiar
  35. with the kernel internals are usually welcomed by the developers
  36. (before submitting bug reports, please read the documents
  37. <file:README>, <file:MAINTAINERS>, <file:REPORTING-BUGS>,
  38. <file:Documentation/BUG-HUNTING>, and
  39. <file:Documentation/oops-tracing.txt> in the kernel source).
  40. This option will also make obsoleted drivers available. These are
  41. drivers that have been replaced by something else, and/or are
  42. scheduled to be removed in a future kernel release.
  43. Unless you intend to help test and develop a feature or driver that
  44. falls into this category, or you have a situation that requires
  45. using these features, you should probably say N here, which will
  46. cause the configurator to present you with fewer choices. If
  47. you say Y here, you will be offered the choice of using features or
  48. drivers that are currently considered to be in the alpha-test phase.
  49. config BROKEN
  50. bool
  51. config BROKEN_ON_SMP
  52. bool
  53. depends on BROKEN || !SMP
  54. default y
  55. config LOCK_KERNEL
  56. bool
  57. depends on SMP || PREEMPT
  58. default y
  59. config INIT_ENV_ARG_LIMIT
  60. int
  61. default 32 if !UML
  62. default 128 if UML
  63. help
  64. Maximum of each of the number of arguments and environment
  65. variables passed to init from the kernel command line.
  66. config CROSS_COMPILE
  67. string "Cross-compiler tool prefix"
  68. help
  69. Same as running 'make CROSS_COMPILE=prefix-' but stored for
  70. default make runs in this kernel build directory. You don't
  71. need to set this unless you want the configured kernel build
  72. directory to select the cross-compiler automatically.
  73. config LOCALVERSION
  74. string "Local version - append to kernel release"
  75. help
  76. Append an extra string to the end of your kernel version.
  77. This will show up when you type uname, for example.
  78. The string you set here will be appended after the contents of
  79. any files with a filename matching localversion* in your
  80. object and source tree, in that order. Your total string can
  81. be a maximum of 64 characters.
  82. config LOCALVERSION_AUTO
  83. bool "Automatically append version information to the version string"
  84. default y
  85. help
  86. This will try to automatically determine if the current tree is a
  87. release tree by looking for git tags that belong to the current
  88. top of tree revision.
  89. A string of the format -gxxxxxxxx will be added to the localversion
  90. if a git-based tree is found. The string generated by this will be
  91. appended after any matching localversion* files, and after the value
  92. set in CONFIG_LOCALVERSION.
  93. (The actual string used here is the first eight characters produced
  94. by running the command:
  95. $ git rev-parse --verify HEAD
  96. which is done within the script "scripts/setlocalversion".)
  97. config HAVE_KERNEL_GZIP
  98. bool
  99. config HAVE_KERNEL_BZIP2
  100. bool
  101. config HAVE_KERNEL_LZMA
  102. bool
  103. config HAVE_KERNEL_LZO
  104. bool
  105. choice
  106. prompt "Kernel compression mode"
  107. default KERNEL_GZIP
  108. depends on HAVE_KERNEL_GZIP || HAVE_KERNEL_BZIP2 || HAVE_KERNEL_LZMA || HAVE_KERNEL_LZO
  109. help
  110. The linux kernel is a kind of self-extracting executable.
  111. Several compression algorithms are available, which differ
  112. in efficiency, compression and decompression speed.
  113. Compression speed is only relevant when building a kernel.
  114. Decompression speed is relevant at each boot.
  115. If you have any problems with bzip2 or lzma compressed
  116. kernels, mail me (Alain Knaff) <alain@knaff.lu>. (An older
  117. version of this functionality (bzip2 only), for 2.4, was
  118. supplied by Christian Ludwig)
  119. High compression options are mostly useful for users, who
  120. are low on disk space (embedded systems), but for whom ram
  121. size matters less.
  122. If in doubt, select 'gzip'
  123. config KERNEL_GZIP
  124. bool "Gzip"
  125. depends on HAVE_KERNEL_GZIP
  126. help
  127. The old and tried gzip compression. It provides a good balance
  128. between compression ratio and decompression speed.
  129. config KERNEL_BZIP2
  130. bool "Bzip2"
  131. depends on HAVE_KERNEL_BZIP2
  132. help
  133. Its compression ratio and speed is intermediate.
  134. Decompression speed is slowest among the three. The kernel
  135. size is about 10% smaller with bzip2, in comparison to gzip.
  136. Bzip2 uses a large amount of memory. For modern kernels you
  137. will need at least 8MB RAM or more for booting.
  138. config KERNEL_LZMA
  139. bool "LZMA"
  140. depends on HAVE_KERNEL_LZMA
  141. help
  142. The most recent compression algorithm.
  143. Its ratio is best, decompression speed is between the other
  144. two. Compression is slowest. The kernel size is about 33%
  145. smaller with LZMA in comparison to gzip.
  146. config KERNEL_LZO
  147. bool "LZO"
  148. depends on HAVE_KERNEL_LZO
  149. help
  150. Its compression ratio is the poorest among the 4. The kernel
  151. size is about about 10% bigger than gzip; however its speed
  152. (both compression and decompression) is the fastest.
  153. endchoice
  154. config SWAP
  155. bool "Support for paging of anonymous memory (swap)"
  156. depends on MMU && BLOCK
  157. default y
  158. help
  159. This option allows you to choose whether you want to have support
  160. for so called swap devices or swap files in your kernel that are
  161. used to provide more virtual memory than the actual RAM present
  162. in your computer. If unsure say Y.
  163. config SYSVIPC
  164. bool "System V IPC"
  165. ---help---
  166. Inter Process Communication is a suite of library functions and
  167. system calls which let processes (running programs) synchronize and
  168. exchange information. It is generally considered to be a good thing,
  169. and some programs won't run unless you say Y here. In particular, if
  170. you want to run the DOS emulator dosemu under Linux (read the
  171. DOSEMU-HOWTO, available from <http://www.tldp.org/docs.html#howto>),
  172. you'll need to say Y here.
  173. You can find documentation about IPC with "info ipc" and also in
  174. section 6.4 of the Linux Programmer's Guide, available from
  175. <http://www.tldp.org/guides.html>.
  176. config SYSVIPC_SYSCTL
  177. bool
  178. depends on SYSVIPC
  179. depends on SYSCTL
  180. default y
  181. config POSIX_MQUEUE
  182. bool "POSIX Message Queues"
  183. depends on NET && EXPERIMENTAL
  184. ---help---
  185. POSIX variant of message queues is a part of IPC. In POSIX message
  186. queues every message has a priority which decides about succession
  187. of receiving it by a process. If you want to compile and run
  188. programs written e.g. for Solaris with use of its POSIX message
  189. queues (functions mq_*) say Y here.
  190. POSIX message queues are visible as a filesystem called 'mqueue'
  191. and can be mounted somewhere if you want to do filesystem
  192. operations on message queues.
  193. If unsure, say Y.
  194. config POSIX_MQUEUE_SYSCTL
  195. bool
  196. depends on POSIX_MQUEUE
  197. depends on SYSCTL
  198. default y
  199. config BSD_PROCESS_ACCT
  200. bool "BSD Process Accounting"
  201. help
  202. If you say Y here, a user level program will be able to instruct the
  203. kernel (via a special system call) to write process accounting
  204. information to a file: whenever a process exits, information about
  205. that process will be appended to the file by the kernel. The
  206. information includes things such as creation time, owning user,
  207. command name, memory usage, controlling terminal etc. (the complete
  208. list is in the struct acct in <file:include/linux/acct.h>). It is
  209. up to the user level program to do useful things with this
  210. information. This is generally a good idea, so say Y.
  211. config BSD_PROCESS_ACCT_V3
  212. bool "BSD Process Accounting version 3 file format"
  213. depends on BSD_PROCESS_ACCT
  214. default n
  215. help
  216. If you say Y here, the process accounting information is written
  217. in a new file format that also logs the process IDs of each
  218. process and it's parent. Note that this file format is incompatible
  219. with previous v0/v1/v2 file formats, so you will need updated tools
  220. for processing it. A preliminary version of these tools is available
  221. at <http://www.gnu.org/software/acct/>.
  222. config TASKSTATS
  223. bool "Export task/process statistics through netlink (EXPERIMENTAL)"
  224. depends on NET
  225. default n
  226. help
  227. Export selected statistics for tasks/processes through the
  228. generic netlink interface. Unlike BSD process accounting, the
  229. statistics are available during the lifetime of tasks/processes as
  230. responses to commands. Like BSD accounting, they are sent to user
  231. space on task exit.
  232. Say N if unsure.
  233. config TASK_DELAY_ACCT
  234. bool "Enable per-task delay accounting (EXPERIMENTAL)"
  235. depends on TASKSTATS
  236. help
  237. Collect information on time spent by a task waiting for system
  238. resources like cpu, synchronous block I/O completion and swapping
  239. in pages. Such statistics can help in setting a task's priorities
  240. relative to other tasks for cpu, io, rss limits etc.
  241. Say N if unsure.
  242. config TASK_XACCT
  243. bool "Enable extended accounting over taskstats (EXPERIMENTAL)"
  244. depends on TASKSTATS
  245. help
  246. Collect extended task accounting data and send the data
  247. to userland for processing over the taskstats interface.
  248. Say N if unsure.
  249. config TASK_IO_ACCOUNTING
  250. bool "Enable per-task storage I/O accounting (EXPERIMENTAL)"
  251. depends on TASK_XACCT
  252. help
  253. Collect information on the number of bytes of storage I/O which this
  254. task has caused.
  255. Say N if unsure.
  256. config AUDIT
  257. bool "Auditing support"
  258. depends on NET
  259. help
  260. Enable auditing infrastructure that can be used with another
  261. kernel subsystem, such as SELinux (which requires this for
  262. logging of avc messages output). Does not do system-call
  263. auditing without CONFIG_AUDITSYSCALL.
  264. config AUDITSYSCALL
  265. bool "Enable system-call auditing support"
  266. depends on AUDIT && (X86 || PPC || S390 || IA64 || UML || SPARC64 || SUPERH)
  267. default y if SECURITY_SELINUX
  268. help
  269. Enable low-overhead system-call auditing infrastructure that
  270. can be used independently or with another kernel subsystem,
  271. such as SELinux.
  272. config AUDIT_WATCH
  273. def_bool y
  274. depends on AUDITSYSCALL
  275. select FSNOTIFY
  276. config AUDIT_TREE
  277. def_bool y
  278. depends on AUDITSYSCALL
  279. select FSNOTIFY
  280. menu "RCU Subsystem"
  281. choice
  282. prompt "RCU Implementation"
  283. default TREE_RCU
  284. config TREE_RCU
  285. bool "Tree-based hierarchical RCU"
  286. depends on !PREEMPT && SMP
  287. help
  288. This option selects the RCU implementation that is
  289. designed for very large SMP system with hundreds or
  290. thousands of CPUs. It also scales down nicely to
  291. smaller systems.
  292. config TREE_PREEMPT_RCU
  293. bool "Preemptible tree-based hierarchical RCU"
  294. depends on PREEMPT
  295. help
  296. This option selects the RCU implementation that is
  297. designed for very large SMP systems with hundreds or
  298. thousands of CPUs, but for which real-time response
  299. is also required. It also scales down nicely to
  300. smaller systems.
  301. config TINY_RCU
  302. bool "UP-only small-memory-footprint RCU"
  303. depends on !SMP
  304. help
  305. This option selects the RCU implementation that is
  306. designed for UP systems from which real-time response
  307. is not required. This option greatly reduces the
  308. memory footprint of RCU.
  309. config TINY_PREEMPT_RCU
  310. bool "Preemptible UP-only small-memory-footprint RCU"
  311. depends on !SMP && PREEMPT
  312. help
  313. This option selects the RCU implementation that is designed
  314. for real-time UP systems. This option greatly reduces the
  315. memory footprint of RCU.
  316. endchoice
  317. config PREEMPT_RCU
  318. def_bool ( TREE_PREEMPT_RCU || TINY_PREEMPT_RCU )
  319. help
  320. This option enables preemptible-RCU code that is common between
  321. the TREE_PREEMPT_RCU and TINY_PREEMPT_RCU implementations.
  322. config RCU_TRACE
  323. bool "Enable tracing for RCU"
  324. help
  325. This option provides tracing in RCU which presents stats
  326. in debugfs for debugging RCU implementation.
  327. Say Y here if you want to enable RCU tracing
  328. Say N if you are unsure.
  329. config RCU_FANOUT
  330. int "Tree-based hierarchical RCU fanout value"
  331. range 2 64 if 64BIT
  332. range 2 32 if !64BIT
  333. depends on TREE_RCU || TREE_PREEMPT_RCU
  334. default 64 if 64BIT
  335. default 32 if !64BIT
  336. help
  337. This option controls the fanout of hierarchical implementations
  338. of RCU, allowing RCU to work efficiently on machines with
  339. large numbers of CPUs. This value must be at least the fourth
  340. root of NR_CPUS, which allows NR_CPUS to be insanely large.
  341. The default value of RCU_FANOUT should be used for production
  342. systems, but if you are stress-testing the RCU implementation
  343. itself, small RCU_FANOUT values allow you to test large-system
  344. code paths on small(er) systems.
  345. Select a specific number if testing RCU itself.
  346. Take the default if unsure.
  347. config RCU_FANOUT_EXACT
  348. bool "Disable tree-based hierarchical RCU auto-balancing"
  349. depends on TREE_RCU || TREE_PREEMPT_RCU
  350. default n
  351. help
  352. This option forces use of the exact RCU_FANOUT value specified,
  353. regardless of imbalances in the hierarchy. This is useful for
  354. testing RCU itself, and might one day be useful on systems with
  355. strong NUMA behavior.
  356. Without RCU_FANOUT_EXACT, the code will balance the hierarchy.
  357. Say N if unsure.
  358. config RCU_FAST_NO_HZ
  359. bool "Accelerate last non-dyntick-idle CPU's grace periods"
  360. depends on TREE_RCU && NO_HZ && SMP
  361. default n
  362. help
  363. This option causes RCU to attempt to accelerate grace periods
  364. in order to allow the final CPU to enter dynticks-idle state
  365. more quickly. On the other hand, this option increases the
  366. overhead of the dynticks-idle checking, particularly on systems
  367. with large numbers of CPUs.
  368. Say Y if energy efficiency is critically important, particularly
  369. if you have relatively few CPUs.
  370. Say N if you are unsure.
  371. config TREE_RCU_TRACE
  372. def_bool RCU_TRACE && ( TREE_RCU || TREE_PREEMPT_RCU )
  373. select DEBUG_FS
  374. help
  375. This option provides tracing for the TREE_RCU and
  376. TREE_PREEMPT_RCU implementations, permitting Makefile to
  377. trivially select kernel/rcutree_trace.c.
  378. config RCU_BOOST
  379. bool "Enable RCU priority boosting"
  380. depends on RT_MUTEXES && TINY_PREEMPT_RCU
  381. default n
  382. help
  383. This option boosts the priority of preempted RCU readers that
  384. block the current preemptible RCU grace period for too long.
  385. This option also prevents heavy loads from blocking RCU
  386. callback invocation for all flavors of RCU.
  387. Say Y here if you are working with real-time apps or heavy loads
  388. Say N here if you are unsure.
  389. config RCU_BOOST_PRIO
  390. int "Real-time priority to boost RCU readers to"
  391. range 1 99
  392. depends on RCU_BOOST
  393. default 1
  394. help
  395. This option specifies the real-time priority to which preempted
  396. RCU readers are to be boosted. If you are working with CPU-bound
  397. real-time applications, you should specify a priority higher then
  398. the highest-priority CPU-bound application.
  399. Specify the real-time priority, or take the default if unsure.
  400. config RCU_BOOST_DELAY
  401. int "Milliseconds to delay boosting after RCU grace-period start"
  402. range 0 3000
  403. depends on RCU_BOOST
  404. default 500
  405. help
  406. This option specifies the time to wait after the beginning of
  407. a given grace period before priority-boosting preempted RCU
  408. readers blocking that grace period. Note that any RCU reader
  409. blocking an expedited RCU grace period is boosted immediately.
  410. Accept the default if unsure.
  411. endmenu # "RCU Subsystem"
  412. config IKCONFIG
  413. tristate "Kernel .config support"
  414. ---help---
  415. This option enables the complete Linux kernel ".config" file
  416. contents to be saved in the kernel. It provides documentation
  417. of which kernel options are used in a running kernel or in an
  418. on-disk kernel. This information can be extracted from the kernel
  419. image file with the script scripts/extract-ikconfig and used as
  420. input to rebuild the current kernel or to build another kernel.
  421. It can also be extracted from a running kernel by reading
  422. /proc/config.gz if enabled (below).
  423. config IKCONFIG_PROC
  424. bool "Enable access to .config through /proc/config.gz"
  425. depends on IKCONFIG && PROC_FS
  426. ---help---
  427. This option enables access to the kernel configuration file
  428. through /proc/config.gz.
  429. config LOG_BUF_SHIFT
  430. int "Kernel log buffer size (16 => 64KB, 17 => 128KB)"
  431. range 12 21
  432. default 17
  433. help
  434. Select kernel log buffer size as a power of 2.
  435. Examples:
  436. 17 => 128 KB
  437. 16 => 64 KB
  438. 15 => 32 KB
  439. 14 => 16 KB
  440. 13 => 8 KB
  441. 12 => 4 KB
  442. #
  443. # Architectures with an unreliable sched_clock() should select this:
  444. #
  445. config HAVE_UNSTABLE_SCHED_CLOCK
  446. bool
  447. menuconfig CGROUPS
  448. boolean "Control Group support"
  449. depends on EVENTFD
  450. help
  451. This option adds support for grouping sets of processes together, for
  452. use with process control subsystems such as Cpusets, CFS, memory
  453. controls or device isolation.
  454. See
  455. - Documentation/scheduler/sched-design-CFS.txt (CFS)
  456. - Documentation/cgroups/ (features for grouping, isolation
  457. and resource control)
  458. Say N if unsure.
  459. if CGROUPS
  460. config CGROUP_DEBUG
  461. bool "Example debug cgroup subsystem"
  462. depends on CGROUPS
  463. default n
  464. help
  465. This option enables a simple cgroup subsystem that
  466. exports useful debugging information about the cgroups
  467. framework.
  468. Say N if unsure.
  469. config CGROUP_NS
  470. bool "Namespace cgroup subsystem"
  471. depends on CGROUPS
  472. help
  473. Provides a simple namespace cgroup subsystem to
  474. provide hierarchical naming of sets of namespaces,
  475. for instance virtual servers and checkpoint/restart
  476. jobs.
  477. config CGROUP_FREEZER
  478. bool "Freezer cgroup subsystem"
  479. depends on CGROUPS
  480. help
  481. Provides a way to freeze and unfreeze all tasks in a
  482. cgroup.
  483. config CGROUP_DEVICE
  484. bool "Device controller for cgroups"
  485. depends on CGROUPS && EXPERIMENTAL
  486. help
  487. Provides a cgroup implementing whitelists for devices which
  488. a process in the cgroup can mknod or open.
  489. config CPUSETS
  490. bool "Cpuset support"
  491. depends on CGROUPS
  492. help
  493. This option will let you create and manage CPUSETs which
  494. allow dynamically partitioning a system into sets of CPUs and
  495. Memory Nodes and assigning tasks to run only within those sets.
  496. This is primarily useful on large SMP or NUMA systems.
  497. Say N if unsure.
  498. config PROC_PID_CPUSET
  499. bool "Include legacy /proc/<pid>/cpuset file"
  500. depends on CPUSETS
  501. default y
  502. config CGROUP_CPUACCT
  503. bool "Simple CPU accounting cgroup subsystem"
  504. depends on CGROUPS
  505. help
  506. Provides a simple Resource Controller for monitoring the
  507. total CPU consumed by the tasks in a cgroup.
  508. config RESOURCE_COUNTERS
  509. bool "Resource counters"
  510. help
  511. This option enables controller independent resource accounting
  512. infrastructure that works with cgroups.
  513. depends on CGROUPS
  514. config CGROUP_MEM_RES_CTLR
  515. bool "Memory Resource Controller for Control Groups"
  516. depends on CGROUPS && RESOURCE_COUNTERS
  517. select MM_OWNER
  518. help
  519. Provides a memory resource controller that manages both anonymous
  520. memory and page cache. (See Documentation/cgroups/memory.txt)
  521. Note that setting this option increases fixed memory overhead
  522. associated with each page of memory in the system. By this,
  523. 20(40)bytes/PAGE_SIZE on 32(64)bit system will be occupied by memory
  524. usage tracking struct at boot. Total amount of this is printed out
  525. at boot.
  526. Only enable when you're ok with these trade offs and really
  527. sure you need the memory resource controller. Even when you enable
  528. this, you can set "cgroup_disable=memory" at your boot option to
  529. disable memory resource controller and you can avoid overheads.
  530. (and lose benefits of memory resource controller)
  531. This config option also selects MM_OWNER config option, which
  532. could in turn add some fork/exit overhead.
  533. config CGROUP_MEM_RES_CTLR_SWAP
  534. bool "Memory Resource Controller Swap Extension"
  535. depends on CGROUP_MEM_RES_CTLR && SWAP
  536. help
  537. Add swap management feature to memory resource controller. When you
  538. enable this, you can limit mem+swap usage per cgroup. In other words,
  539. when you disable this, memory resource controller has no cares to
  540. usage of swap...a process can exhaust all of the swap. This extension
  541. is useful when you want to avoid exhaustion swap but this itself
  542. adds more overheads and consumes memory for remembering information.
  543. Especially if you use 32bit system or small memory system, please
  544. be careful about enabling this. When memory resource controller
  545. is disabled by boot option, this will be automatically disabled and
  546. there will be no overhead from this. Even when you set this config=y,
  547. if boot option "noswapaccount" is set, swap will not be accounted.
  548. Now, memory usage of swap_cgroup is 2 bytes per entry. If swap page
  549. size is 4096bytes, 512k per 1Gbytes of swap.
  550. menuconfig CGROUP_SCHED
  551. bool "Group CPU scheduler"
  552. depends on EXPERIMENTAL && CGROUPS
  553. default n
  554. help
  555. This feature lets CPU scheduler recognize task groups and control CPU
  556. bandwidth allocation to such task groups. It uses cgroups to group
  557. tasks.
  558. if CGROUP_SCHED
  559. config FAIR_GROUP_SCHED
  560. bool "Group scheduling for SCHED_OTHER"
  561. depends on CGROUP_SCHED
  562. default CGROUP_SCHED
  563. config RT_GROUP_SCHED
  564. bool "Group scheduling for SCHED_RR/FIFO"
  565. depends on EXPERIMENTAL
  566. depends on CGROUP_SCHED
  567. default n
  568. help
  569. This feature lets you explicitly allocate real CPU bandwidth
  570. to task groups. If enabled, it will also make it impossible to
  571. schedule realtime tasks for non-root users until you allocate
  572. realtime bandwidth for them.
  573. See Documentation/scheduler/sched-rt-group.txt for more information.
  574. endif #CGROUP_SCHED
  575. config BLK_CGROUP
  576. tristate "Block IO controller"
  577. depends on CGROUPS && BLOCK
  578. default n
  579. ---help---
  580. Generic block IO controller cgroup interface. This is the common
  581. cgroup interface which should be used by various IO controlling
  582. policies.
  583. Currently, CFQ IO scheduler uses it to recognize task groups and
  584. control disk bandwidth allocation (proportional time slice allocation)
  585. to such task groups.
  586. This option only enables generic Block IO controller infrastructure.
  587. One needs to also enable actual IO controlling logic in CFQ for it
  588. to take effect. (CONFIG_CFQ_GROUP_IOSCHED=y).
  589. See Documentation/cgroups/blkio-controller.txt for more information.
  590. config DEBUG_BLK_CGROUP
  591. bool "Enable Block IO controller debugging"
  592. depends on BLK_CGROUP
  593. default n
  594. ---help---
  595. Enable some debugging help. Currently it exports additional stat
  596. files in a cgroup which can be useful for debugging.
  597. endif # CGROUPS
  598. config MM_OWNER
  599. bool
  600. config SYSFS_DEPRECATED
  601. bool
  602. config SYSFS_DEPRECATED_V2
  603. bool "enable deprecated sysfs features to support old userspace tools"
  604. depends on SYSFS
  605. default n
  606. select SYSFS_DEPRECATED
  607. help
  608. This option switches the layout of sysfs to the deprecated
  609. version. Do not use it on recent distributions.
  610. The current sysfs layout features a unified device tree at
  611. /sys/devices/, which is able to express a hierarchy between
  612. class devices. If the deprecated option is set to Y, the
  613. unified device tree is split into a bus device tree at
  614. /sys/devices/ and several individual class device trees at
  615. /sys/class/. The class and bus devices will be connected by
  616. "<subsystem>:<name>" and the "device" links. The "block"
  617. class devices, will not show up in /sys/class/block/. Some
  618. subsystems will suppress the creation of some devices which
  619. depend on the unified device tree.
  620. This option is not a pure compatibility option that can
  621. be safely enabled on newer distributions. It will change the
  622. layout of sysfs to the non-extensible deprecated version,
  623. and disable some features, which can not be exported without
  624. confusing older userspace tools. Since 2007/2008 all major
  625. distributions do not enable this option, and ship no tools which
  626. depend on the deprecated layout or this option.
  627. If you are using a new kernel on an older distribution, or use
  628. older userspace tools, you might need to say Y here. Do not say Y,
  629. if the original kernel, that came with your distribution, has
  630. this option set to N.
  631. config RELAY
  632. bool "Kernel->user space relay support (formerly relayfs)"
  633. help
  634. This option enables support for relay interface support in
  635. certain file systems (such as debugfs).
  636. It is designed to provide an efficient mechanism for tools and
  637. facilities to relay large amounts of data from kernel space to
  638. user space.
  639. If unsure, say N.
  640. config NAMESPACES
  641. bool "Namespaces support" if EMBEDDED
  642. default !EMBEDDED
  643. help
  644. Provides the way to make tasks work with different objects using
  645. the same id. For example same IPC id may refer to different objects
  646. or same user id or pid may refer to different tasks when used in
  647. different namespaces.
  648. config UTS_NS
  649. bool "UTS namespace"
  650. depends on NAMESPACES
  651. help
  652. In this namespace tasks see different info provided with the
  653. uname() system call
  654. config IPC_NS
  655. bool "IPC namespace"
  656. depends on NAMESPACES && (SYSVIPC || POSIX_MQUEUE)
  657. help
  658. In this namespace tasks work with IPC ids which correspond to
  659. different IPC objects in different namespaces.
  660. config USER_NS
  661. bool "User namespace (EXPERIMENTAL)"
  662. depends on NAMESPACES && EXPERIMENTAL
  663. help
  664. This allows containers, i.e. vservers, to use user namespaces
  665. to provide different user info for different servers.
  666. If unsure, say N.
  667. config PID_NS
  668. bool "PID Namespaces (EXPERIMENTAL)"
  669. default n
  670. depends on NAMESPACES && EXPERIMENTAL
  671. help
  672. Support process id namespaces. This allows having multiple
  673. processes with the same pid as long as they are in different
  674. pid namespaces. This is a building block of containers.
  675. Unless you want to work with an experimental feature
  676. say N here.
  677. config NET_NS
  678. bool "Network namespace"
  679. default n
  680. depends on NAMESPACES && EXPERIMENTAL && NET
  681. help
  682. Allow user space to create what appear to be multiple instances
  683. of the network stack.
  684. config BLK_DEV_INITRD
  685. bool "Initial RAM filesystem and RAM disk (initramfs/initrd) support"
  686. depends on BROKEN || !FRV
  687. help
  688. The initial RAM filesystem is a ramfs which is loaded by the
  689. boot loader (loadlin or lilo) and that is mounted as root
  690. before the normal boot procedure. It is typically used to
  691. load modules needed to mount the "real" root file system,
  692. etc. See <file:Documentation/initrd.txt> for details.
  693. If RAM disk support (BLK_DEV_RAM) is also included, this
  694. also enables initial RAM disk (initrd) support and adds
  695. 15 Kbytes (more on some other architectures) to the kernel size.
  696. If unsure say Y.
  697. if BLK_DEV_INITRD
  698. source "usr/Kconfig"
  699. endif
  700. config CC_OPTIMIZE_FOR_SIZE
  701. bool "Optimize for size"
  702. default y
  703. help
  704. Enabling this option will pass "-Os" instead of "-O2" to gcc
  705. resulting in a smaller kernel.
  706. If unsure, say Y.
  707. config SYSCTL
  708. bool
  709. config ANON_INODES
  710. bool
  711. menuconfig EMBEDDED
  712. bool "Configure standard kernel features (for small systems)"
  713. help
  714. This option allows certain base kernel options and settings
  715. to be disabled or tweaked. This is for specialized
  716. environments which can tolerate a "non-standard" kernel.
  717. Only use this if you really know what you are doing.
  718. config UID16
  719. bool "Enable 16-bit UID system calls" if EMBEDDED
  720. depends on ARM || BLACKFIN || CRIS || FRV || H8300 || X86_32 || M68K || (S390 && !64BIT) || SUPERH || SPARC32 || (SPARC64 && COMPAT) || UML || (X86_64 && IA32_EMULATION)
  721. default y
  722. help
  723. This enables the legacy 16-bit UID syscall wrappers.
  724. config SYSCTL_SYSCALL
  725. bool "Sysctl syscall support" if EMBEDDED
  726. depends on PROC_SYSCTL
  727. default y
  728. select SYSCTL
  729. ---help---
  730. sys_sysctl uses binary paths that have been found challenging
  731. to properly maintain and use. The interface in /proc/sys
  732. using paths with ascii names is now the primary path to this
  733. information.
  734. Almost nothing using the binary sysctl interface so if you are
  735. trying to save some space it is probably safe to disable this,
  736. making your kernel marginally smaller.
  737. If unsure say Y here.
  738. config KALLSYMS
  739. bool "Load all symbols for debugging/ksymoops" if EMBEDDED
  740. default y
  741. help
  742. Say Y here to let the kernel print out symbolic crash information and
  743. symbolic stack backtraces. This increases the size of the kernel
  744. somewhat, as all symbols have to be loaded into the kernel image.
  745. config KALLSYMS_ALL
  746. bool "Include all symbols in kallsyms"
  747. depends on DEBUG_KERNEL && KALLSYMS
  748. help
  749. Normally kallsyms only contains the symbols of functions, for nicer
  750. OOPS messages. Some debuggers can use kallsyms for other
  751. symbols too: say Y here to include all symbols, if you need them
  752. and you don't care about adding 300k to the size of your kernel.
  753. Say N.
  754. config KALLSYMS_EXTRA_PASS
  755. bool "Do an extra kallsyms pass"
  756. depends on KALLSYMS
  757. help
  758. If kallsyms is not working correctly, the build will fail with
  759. inconsistent kallsyms data. If that occurs, log a bug report and
  760. turn on KALLSYMS_EXTRA_PASS which should result in a stable build.
  761. Always say N here unless you find a bug in kallsyms, which must be
  762. reported. KALLSYMS_EXTRA_PASS is only a temporary workaround while
  763. you wait for kallsyms to be fixed.
  764. config HOTPLUG
  765. bool "Support for hot-pluggable devices" if EMBEDDED
  766. default y
  767. help
  768. This option is provided for the case where no hotplug or uevent
  769. capabilities is wanted by the kernel. You should only consider
  770. disabling this option for embedded systems that do not use modules, a
  771. dynamic /dev tree, or dynamic device discovery. Just say Y.
  772. config PRINTK
  773. default y
  774. bool "Enable support for printk" if EMBEDDED
  775. help
  776. This option enables normal printk support. Removing it
  777. eliminates most of the message strings from the kernel image
  778. and makes the kernel more or less silent. As this makes it
  779. very difficult to diagnose system problems, saying N here is
  780. strongly discouraged.
  781. config BUG
  782. bool "BUG() support" if EMBEDDED
  783. default y
  784. help
  785. Disabling this option eliminates support for BUG and WARN, reducing
  786. the size of your kernel image and potentially quietly ignoring
  787. numerous fatal conditions. You should only consider disabling this
  788. option for embedded systems with no facilities for reporting errors.
  789. Just say Y.
  790. config ELF_CORE
  791. default y
  792. bool "Enable ELF core dumps" if EMBEDDED
  793. help
  794. Enable support for generating core dumps. Disabling saves about 4k.
  795. config PCSPKR_PLATFORM
  796. bool "Enable PC-Speaker support" if EMBEDDED
  797. depends on ALPHA || X86 || MIPS || PPC_PREP || PPC_CHRP || PPC_PSERIES
  798. default y
  799. help
  800. This option allows to disable the internal PC-Speaker
  801. support, saving some memory.
  802. config BASE_FULL
  803. default y
  804. bool "Enable full-sized data structures for core" if EMBEDDED
  805. help
  806. Disabling this option reduces the size of miscellaneous core
  807. kernel data structures. This saves memory on small machines,
  808. but may reduce performance.
  809. config FUTEX
  810. bool "Enable futex support" if EMBEDDED
  811. default y
  812. select RT_MUTEXES
  813. help
  814. Disabling this option will cause the kernel to be built without
  815. support for "fast userspace mutexes". The resulting kernel may not
  816. run glibc-based applications correctly.
  817. config EPOLL
  818. bool "Enable eventpoll support" if EMBEDDED
  819. default y
  820. select ANON_INODES
  821. help
  822. Disabling this option will cause the kernel to be built without
  823. support for epoll family of system calls.
  824. config SIGNALFD
  825. bool "Enable signalfd() system call" if EMBEDDED
  826. select ANON_INODES
  827. default y
  828. help
  829. Enable the signalfd() system call that allows to receive signals
  830. on a file descriptor.
  831. If unsure, say Y.
  832. config TIMERFD
  833. bool "Enable timerfd() system call" if EMBEDDED
  834. select ANON_INODES
  835. default y
  836. help
  837. Enable the timerfd() system call that allows to receive timer
  838. events on a file descriptor.
  839. If unsure, say Y.
  840. config EVENTFD
  841. bool "Enable eventfd() system call" if EMBEDDED
  842. select ANON_INODES
  843. default y
  844. help
  845. Enable the eventfd() system call that allows to receive both
  846. kernel notification (ie. KAIO) or userspace notifications.
  847. If unsure, say Y.
  848. config SHMEM
  849. bool "Use full shmem filesystem" if EMBEDDED
  850. default y
  851. depends on MMU
  852. help
  853. The shmem is an internal filesystem used to manage shared memory.
  854. It is backed by swap and manages resource limits. It is also exported
  855. to userspace as tmpfs if TMPFS is enabled. Disabling this
  856. option replaces shmem and tmpfs with the much simpler ramfs code,
  857. which may be appropriate on small systems without swap.
  858. config AIO
  859. bool "Enable AIO support" if EMBEDDED
  860. default y
  861. help
  862. This option enables POSIX asynchronous I/O which may by used
  863. by some high performance threaded applications. Disabling
  864. this option saves about 7k.
  865. config HAVE_PERF_EVENTS
  866. bool
  867. help
  868. See tools/perf/design.txt for details.
  869. config PERF_USE_VMALLOC
  870. bool
  871. help
  872. See tools/perf/design.txt for details
  873. menu "Kernel Performance Events And Counters"
  874. config PERF_EVENTS
  875. bool "Kernel performance events and counters"
  876. default y if (PROFILING || PERF_COUNTERS)
  877. depends on HAVE_PERF_EVENTS
  878. select ANON_INODES
  879. help
  880. Enable kernel support for various performance events provided
  881. by software and hardware.
  882. Software events are supported either built-in or via the
  883. use of generic tracepoints.
  884. Most modern CPUs support performance events via performance
  885. counter registers. These registers count the number of certain
  886. types of hw events: such as instructions executed, cachemisses
  887. suffered, or branches mis-predicted - without slowing down the
  888. kernel or applications. These registers can also trigger interrupts
  889. when a threshold number of events have passed - and can thus be
  890. used to profile the code that runs on that CPU.
  891. The Linux Performance Event subsystem provides an abstraction of
  892. these software and hardware event capabilities, available via a
  893. system call and used by the "perf" utility in tools/perf/. It
  894. provides per task and per CPU counters, and it provides event
  895. capabilities on top of those.
  896. Say Y if unsure.
  897. config PERF_COUNTERS
  898. bool "Kernel performance counters (old config option)"
  899. depends on HAVE_PERF_EVENTS
  900. help
  901. This config has been obsoleted by the PERF_EVENTS
  902. config option - please see that one for details.
  903. It has no effect on the kernel whether you enable
  904. it or not, it is a compatibility placeholder.
  905. Say N if unsure.
  906. config DEBUG_PERF_USE_VMALLOC
  907. default n
  908. bool "Debug: use vmalloc to back perf mmap() buffers"
  909. depends on PERF_EVENTS && DEBUG_KERNEL
  910. select PERF_USE_VMALLOC
  911. help
  912. Use vmalloc memory to back perf mmap() buffers.
  913. Mostly useful for debugging the vmalloc code on platforms
  914. that don't require it.
  915. Say N if unsure.
  916. endmenu
  917. config VM_EVENT_COUNTERS
  918. default y
  919. bool "Enable VM event counters for /proc/vmstat" if EMBEDDED
  920. help
  921. VM event counters are needed for event counts to be shown.
  922. This option allows the disabling of the VM event counters
  923. on EMBEDDED systems. /proc/vmstat will only show page counts
  924. if VM event counters are disabled.
  925. config PCI_QUIRKS
  926. default y
  927. bool "Enable PCI quirk workarounds" if EMBEDDED
  928. depends on PCI
  929. help
  930. This enables workarounds for various PCI chipset
  931. bugs/quirks. Disable this only if your target machine is
  932. unaffected by PCI quirks.
  933. config SLUB_DEBUG
  934. default y
  935. bool "Enable SLUB debugging support" if EMBEDDED
  936. depends on SLUB && SYSFS
  937. help
  938. SLUB has extensive debug support features. Disabling these can
  939. result in significant savings in code size. This also disables
  940. SLUB sysfs support. /sys/slab will not exist and there will be
  941. no support for cache validation etc.
  942. config COMPAT_BRK
  943. bool "Disable heap randomization"
  944. default y
  945. help
  946. Randomizing heap placement makes heap exploits harder, but it
  947. also breaks ancient binaries (including anything libc5 based).
  948. This option changes the bootup default to heap randomization
  949. disabled, and can be overridden at runtime by setting
  950. /proc/sys/kernel/randomize_va_space to 2.
  951. On non-ancient distros (post-2000 ones) N is usually a safe choice.
  952. choice
  953. prompt "Choose SLAB allocator"
  954. default SLUB
  955. help
  956. This option allows to select a slab allocator.
  957. config SLAB
  958. bool "SLAB"
  959. help
  960. The regular slab allocator that is established and known to work
  961. well in all environments. It organizes cache hot objects in
  962. per cpu and per node queues.
  963. config SLUB
  964. bool "SLUB (Unqueued Allocator)"
  965. help
  966. SLUB is a slab allocator that minimizes cache line usage
  967. instead of managing queues of cached objects (SLAB approach).
  968. Per cpu caching is realized using slabs of objects instead
  969. of queues of objects. SLUB can use memory efficiently
  970. and has enhanced diagnostics. SLUB is the default choice for
  971. a slab allocator.
  972. config SLOB
  973. depends on EMBEDDED
  974. bool "SLOB (Simple Allocator)"
  975. help
  976. SLOB replaces the stock allocator with a drastically simpler
  977. allocator. SLOB is generally more space efficient but
  978. does not perform as well on large systems.
  979. endchoice
  980. config MMAP_ALLOW_UNINITIALIZED
  981. bool "Allow mmapped anonymous memory to be uninitialized"
  982. depends on EMBEDDED && !MMU
  983. default n
  984. help
  985. Normally, and according to the Linux spec, anonymous memory obtained
  986. from mmap() has it's contents cleared before it is passed to
  987. userspace. Enabling this config option allows you to request that
  988. mmap() skip that if it is given an MAP_UNINITIALIZED flag, thus
  989. providing a huge performance boost. If this option is not enabled,
  990. then the flag will be ignored.
  991. This is taken advantage of by uClibc's malloc(), and also by
  992. ELF-FDPIC binfmt's brk and stack allocator.
  993. Because of the obvious security issues, this option should only be
  994. enabled on embedded devices where you control what is run in
  995. userspace. Since that isn't generally a problem on no-MMU systems,
  996. it is normally safe to say Y here.
  997. See Documentation/nommu-mmap.txt for more information.
  998. config PROFILING
  999. bool "Profiling support"
  1000. help
  1001. Say Y here to enable the extended profiling support mechanisms used
  1002. by profilers such as OProfile.
  1003. #
  1004. # Place an empty function call at each tracepoint site. Can be
  1005. # dynamically changed for a probe function.
  1006. #
  1007. config TRACEPOINTS
  1008. bool
  1009. source "arch/Kconfig"
  1010. endmenu # General setup
  1011. config HAVE_GENERIC_DMA_COHERENT
  1012. bool
  1013. default n
  1014. config SLABINFO
  1015. bool
  1016. depends on PROC_FS
  1017. depends on SLAB || SLUB_DEBUG
  1018. default y
  1019. config RT_MUTEXES
  1020. boolean
  1021. config BASE_SMALL
  1022. int
  1023. default 0 if BASE_FULL
  1024. default 1 if !BASE_FULL
  1025. menuconfig MODULES
  1026. bool "Enable loadable module support"
  1027. help
  1028. Kernel modules are small pieces of compiled code which can
  1029. be inserted in the running kernel, rather than being
  1030. permanently built into the kernel. You use the "modprobe"
  1031. tool to add (and sometimes remove) them. If you say Y here,
  1032. many parts of the kernel can be built as modules (by
  1033. answering M instead of Y where indicated): this is most
  1034. useful for infrequently used options which are not required
  1035. for booting. For more information, see the man pages for
  1036. modprobe, lsmod, modinfo, insmod and rmmod.
  1037. If you say Y here, you will need to run "make
  1038. modules_install" to put the modules under /lib/modules/
  1039. where modprobe can find them (you may need to be root to do
  1040. this).
  1041. If unsure, say Y.
  1042. if MODULES
  1043. config MODULE_FORCE_LOAD
  1044. bool "Forced module loading"
  1045. default n
  1046. help
  1047. Allow loading of modules without version information (ie. modprobe
  1048. --force). Forced module loading sets the 'F' (forced) taint flag and
  1049. is usually a really bad idea.
  1050. config MODULE_UNLOAD
  1051. bool "Module unloading"
  1052. help
  1053. Without this option you will not be able to unload any
  1054. modules (note that some modules may not be unloadable
  1055. anyway), which makes your kernel smaller, faster
  1056. and simpler. If unsure, say Y.
  1057. config MODULE_FORCE_UNLOAD
  1058. bool "Forced module unloading"
  1059. depends on MODULE_UNLOAD && EXPERIMENTAL
  1060. help
  1061. This option allows you to force a module to unload, even if the
  1062. kernel believes it is unsafe: the kernel will remove the module
  1063. without waiting for anyone to stop using it (using the -f option to
  1064. rmmod). This is mainly for kernel developers and desperate users.
  1065. If unsure, say N.
  1066. config MODVERSIONS
  1067. bool "Module versioning support"
  1068. help
  1069. Usually, you have to use modules compiled with your kernel.
  1070. Saying Y here makes it sometimes possible to use modules
  1071. compiled for different kernels, by adding enough information
  1072. to the modules to (hopefully) spot any changes which would
  1073. make them incompatible with the kernel you are running. If
  1074. unsure, say N.
  1075. config MODULE_SRCVERSION_ALL
  1076. bool "Source checksum for all modules"
  1077. help
  1078. Modules which contain a MODULE_VERSION get an extra "srcversion"
  1079. field inserted into their modinfo section, which contains a
  1080. sum of the source files which made it. This helps maintainers
  1081. see exactly which source was used to build a module (since
  1082. others sometimes change the module source without updating
  1083. the version). With this option, such a "srcversion" field
  1084. will be created for all modules. If unsure, say N.
  1085. endif # MODULES
  1086. config INIT_ALL_POSSIBLE
  1087. bool
  1088. help
  1089. Back when each arch used to define their own cpu_online_map and
  1090. cpu_possible_map, some of them chose to initialize cpu_possible_map
  1091. with all 1s, and others with all 0s. When they were centralised,
  1092. it was better to provide this option than to break all the archs
  1093. and have several arch maintainers pursuing me down dark alleys.
  1094. config STOP_MACHINE
  1095. bool
  1096. default y
  1097. depends on (SMP && MODULE_UNLOAD) || HOTPLUG_CPU
  1098. help
  1099. Need stop_machine() primitive.
  1100. source "block/Kconfig"
  1101. config PREEMPT_NOTIFIERS
  1102. bool
  1103. config PADATA
  1104. depends on SMP
  1105. bool
  1106. source "kernel/Kconfig.locks"