Kconfig 42 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323
  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. depends on TREE_RCU || TREE_PREEMPT_RCU
  325. help
  326. This option provides tracing in RCU which presents stats
  327. in debugfs for debugging RCU implementation.
  328. Say Y here if you want to enable RCU tracing
  329. Say N if you are unsure.
  330. config RCU_FANOUT
  331. int "Tree-based hierarchical RCU fanout value"
  332. range 2 64 if 64BIT
  333. range 2 32 if !64BIT
  334. depends on TREE_RCU || TREE_PREEMPT_RCU
  335. default 64 if 64BIT
  336. default 32 if !64BIT
  337. help
  338. This option controls the fanout of hierarchical implementations
  339. of RCU, allowing RCU to work efficiently on machines with
  340. large numbers of CPUs. This value must be at least the fourth
  341. root of NR_CPUS, which allows NR_CPUS to be insanely large.
  342. The default value of RCU_FANOUT should be used for production
  343. systems, but if you are stress-testing the RCU implementation
  344. itself, small RCU_FANOUT values allow you to test large-system
  345. code paths on small(er) systems.
  346. Select a specific number if testing RCU itself.
  347. Take the default if unsure.
  348. config RCU_FANOUT_EXACT
  349. bool "Disable tree-based hierarchical RCU auto-balancing"
  350. depends on TREE_RCU || TREE_PREEMPT_RCU
  351. default n
  352. help
  353. This option forces use of the exact RCU_FANOUT value specified,
  354. regardless of imbalances in the hierarchy. This is useful for
  355. testing RCU itself, and might one day be useful on systems with
  356. strong NUMA behavior.
  357. Without RCU_FANOUT_EXACT, the code will balance the hierarchy.
  358. Say N if unsure.
  359. config RCU_FAST_NO_HZ
  360. bool "Accelerate last non-dyntick-idle CPU's grace periods"
  361. depends on TREE_RCU && NO_HZ && SMP
  362. default n
  363. help
  364. This option causes RCU to attempt to accelerate grace periods
  365. in order to allow the final CPU to enter dynticks-idle state
  366. more quickly. On the other hand, this option increases the
  367. overhead of the dynticks-idle checking, particularly on systems
  368. with large numbers of CPUs.
  369. Say Y if energy efficiency is critically important, particularly
  370. if you have relatively few CPUs.
  371. Say N if you are unsure.
  372. config TREE_RCU_TRACE
  373. def_bool RCU_TRACE && ( TREE_RCU || TREE_PREEMPT_RCU )
  374. select DEBUG_FS
  375. help
  376. This option provides tracing for the TREE_RCU and
  377. TREE_PREEMPT_RCU implementations, permitting Makefile to
  378. trivially select kernel/rcutree_trace.c.
  379. config RCU_BOOST
  380. bool "Enable RCU priority boosting"
  381. depends on RT_MUTEXES && TINY_PREEMPT_RCU
  382. default n
  383. help
  384. This option boosts the priority of preempted RCU readers that
  385. block the current preemptible RCU grace period for too long.
  386. This option also prevents heavy loads from blocking RCU
  387. callback invocation for all flavors of RCU.
  388. Say Y here if you are working with real-time apps or heavy loads
  389. Say N here if you are unsure.
  390. config RCU_BOOST_PRIO
  391. int "Real-time priority to boost RCU readers to"
  392. range 1 99
  393. depends on RCU_BOOST
  394. default 1
  395. help
  396. This option specifies the real-time priority to which preempted
  397. RCU readers are to be boosted. If you are working with CPU-bound
  398. real-time applications, you should specify a priority higher then
  399. the highest-priority CPU-bound application.
  400. Specify the real-time priority, or take the default if unsure.
  401. config RCU_BOOST_DELAY
  402. int "Milliseconds to delay boosting after RCU grace-period start"
  403. range 0 3000
  404. depends on RCU_BOOST
  405. default 500
  406. help
  407. This option specifies the time to wait after the beginning of
  408. a given grace period before priority-boosting preempted RCU
  409. readers blocking that grace period. Note that any RCU reader
  410. blocking an expedited RCU grace period is boosted immediately.
  411. Accept the default if unsure.
  412. endmenu # "RCU Subsystem"
  413. config IKCONFIG
  414. tristate "Kernel .config support"
  415. ---help---
  416. This option enables the complete Linux kernel ".config" file
  417. contents to be saved in the kernel. It provides documentation
  418. of which kernel options are used in a running kernel or in an
  419. on-disk kernel. This information can be extracted from the kernel
  420. image file with the script scripts/extract-ikconfig and used as
  421. input to rebuild the current kernel or to build another kernel.
  422. It can also be extracted from a running kernel by reading
  423. /proc/config.gz if enabled (below).
  424. config IKCONFIG_PROC
  425. bool "Enable access to .config through /proc/config.gz"
  426. depends on IKCONFIG && PROC_FS
  427. ---help---
  428. This option enables access to the kernel configuration file
  429. through /proc/config.gz.
  430. config LOG_BUF_SHIFT
  431. int "Kernel log buffer size (16 => 64KB, 17 => 128KB)"
  432. range 12 21
  433. default 17
  434. help
  435. Select kernel log buffer size as a power of 2.
  436. Examples:
  437. 17 => 128 KB
  438. 16 => 64 KB
  439. 15 => 32 KB
  440. 14 => 16 KB
  441. 13 => 8 KB
  442. 12 => 4 KB
  443. #
  444. # Architectures with an unreliable sched_clock() should select this:
  445. #
  446. config HAVE_UNSTABLE_SCHED_CLOCK
  447. bool
  448. menuconfig CGROUPS
  449. boolean "Control Group support"
  450. depends on EVENTFD
  451. help
  452. This option adds support for grouping sets of processes together, for
  453. use with process control subsystems such as Cpusets, CFS, memory
  454. controls or device isolation.
  455. See
  456. - Documentation/scheduler/sched-design-CFS.txt (CFS)
  457. - Documentation/cgroups/ (features for grouping, isolation
  458. and resource control)
  459. Say N if unsure.
  460. if CGROUPS
  461. config CGROUP_DEBUG
  462. bool "Example debug cgroup subsystem"
  463. depends on CGROUPS
  464. default n
  465. help
  466. This option enables a simple cgroup subsystem that
  467. exports useful debugging information about the cgroups
  468. framework.
  469. Say N if unsure.
  470. config CGROUP_NS
  471. bool "Namespace cgroup subsystem"
  472. depends on CGROUPS
  473. help
  474. Provides a simple namespace cgroup subsystem to
  475. provide hierarchical naming of sets of namespaces,
  476. for instance virtual servers and checkpoint/restart
  477. jobs.
  478. config CGROUP_FREEZER
  479. bool "Freezer cgroup subsystem"
  480. depends on CGROUPS
  481. help
  482. Provides a way to freeze and unfreeze all tasks in a
  483. cgroup.
  484. config CGROUP_DEVICE
  485. bool "Device controller for cgroups"
  486. depends on CGROUPS && EXPERIMENTAL
  487. help
  488. Provides a cgroup implementing whitelists for devices which
  489. a process in the cgroup can mknod or open.
  490. config CPUSETS
  491. bool "Cpuset support"
  492. depends on CGROUPS
  493. help
  494. This option will let you create and manage CPUSETs which
  495. allow dynamically partitioning a system into sets of CPUs and
  496. Memory Nodes and assigning tasks to run only within those sets.
  497. This is primarily useful on large SMP or NUMA systems.
  498. Say N if unsure.
  499. config PROC_PID_CPUSET
  500. bool "Include legacy /proc/<pid>/cpuset file"
  501. depends on CPUSETS
  502. default y
  503. config CGROUP_CPUACCT
  504. bool "Simple CPU accounting cgroup subsystem"
  505. depends on CGROUPS
  506. help
  507. Provides a simple Resource Controller for monitoring the
  508. total CPU consumed by the tasks in a cgroup.
  509. config RESOURCE_COUNTERS
  510. bool "Resource counters"
  511. help
  512. This option enables controller independent resource accounting
  513. infrastructure that works with cgroups.
  514. depends on CGROUPS
  515. config CGROUP_MEM_RES_CTLR
  516. bool "Memory Resource Controller for Control Groups"
  517. depends on CGROUPS && RESOURCE_COUNTERS
  518. select MM_OWNER
  519. help
  520. Provides a memory resource controller that manages both anonymous
  521. memory and page cache. (See Documentation/cgroups/memory.txt)
  522. Note that setting this option increases fixed memory overhead
  523. associated with each page of memory in the system. By this,
  524. 20(40)bytes/PAGE_SIZE on 32(64)bit system will be occupied by memory
  525. usage tracking struct at boot. Total amount of this is printed out
  526. at boot.
  527. Only enable when you're ok with these trade offs and really
  528. sure you need the memory resource controller. Even when you enable
  529. this, you can set "cgroup_disable=memory" at your boot option to
  530. disable memory resource controller and you can avoid overheads.
  531. (and lose benefits of memory resource controller)
  532. This config option also selects MM_OWNER config option, which
  533. could in turn add some fork/exit overhead.
  534. config CGROUP_MEM_RES_CTLR_SWAP
  535. bool "Memory Resource Controller Swap Extension"
  536. depends on CGROUP_MEM_RES_CTLR && SWAP
  537. help
  538. Add swap management feature to memory resource controller. When you
  539. enable this, you can limit mem+swap usage per cgroup. In other words,
  540. when you disable this, memory resource controller has no cares to
  541. usage of swap...a process can exhaust all of the swap. This extension
  542. is useful when you want to avoid exhaustion swap but this itself
  543. adds more overheads and consumes memory for remembering information.
  544. Especially if you use 32bit system or small memory system, please
  545. be careful about enabling this. When memory resource controller
  546. is disabled by boot option, this will be automatically disabled and
  547. there will be no overhead from this. Even when you set this config=y,
  548. if boot option "noswapaccount" is set, swap will not be accounted.
  549. Now, memory usage of swap_cgroup is 2 bytes per entry. If swap page
  550. size is 4096bytes, 512k per 1Gbytes of swap.
  551. menuconfig CGROUP_SCHED
  552. bool "Group CPU scheduler"
  553. depends on EXPERIMENTAL && CGROUPS
  554. default n
  555. help
  556. This feature lets CPU scheduler recognize task groups and control CPU
  557. bandwidth allocation to such task groups. It uses cgroups to group
  558. tasks.
  559. if CGROUP_SCHED
  560. config FAIR_GROUP_SCHED
  561. bool "Group scheduling for SCHED_OTHER"
  562. depends on CGROUP_SCHED
  563. default CGROUP_SCHED
  564. config RT_GROUP_SCHED
  565. bool "Group scheduling for SCHED_RR/FIFO"
  566. depends on EXPERIMENTAL
  567. depends on CGROUP_SCHED
  568. default n
  569. help
  570. This feature lets you explicitly allocate real CPU bandwidth
  571. to task groups. If enabled, it will also make it impossible to
  572. schedule realtime tasks for non-root users until you allocate
  573. realtime bandwidth for them.
  574. See Documentation/scheduler/sched-rt-group.txt for more information.
  575. endif #CGROUP_SCHED
  576. config BLK_CGROUP
  577. tristate "Block IO controller"
  578. depends on CGROUPS && BLOCK
  579. default n
  580. ---help---
  581. Generic block IO controller cgroup interface. This is the common
  582. cgroup interface which should be used by various IO controlling
  583. policies.
  584. Currently, CFQ IO scheduler uses it to recognize task groups and
  585. control disk bandwidth allocation (proportional time slice allocation)
  586. to such task groups.
  587. This option only enables generic Block IO controller infrastructure.
  588. One needs to also enable actual IO controlling logic in CFQ for it
  589. to take effect. (CONFIG_CFQ_GROUP_IOSCHED=y).
  590. See Documentation/cgroups/blkio-controller.txt for more information.
  591. config DEBUG_BLK_CGROUP
  592. bool "Enable Block IO controller debugging"
  593. depends on BLK_CGROUP
  594. default n
  595. ---help---
  596. Enable some debugging help. Currently it exports additional stat
  597. files in a cgroup which can be useful for debugging.
  598. endif # CGROUPS
  599. config MM_OWNER
  600. bool
  601. config SYSFS_DEPRECATED
  602. bool
  603. config SYSFS_DEPRECATED_V2
  604. bool "enable deprecated sysfs features to support old userspace tools"
  605. depends on SYSFS
  606. default n
  607. select SYSFS_DEPRECATED
  608. help
  609. This option switches the layout of sysfs to the deprecated
  610. version. Do not use it on recent distributions.
  611. The current sysfs layout features a unified device tree at
  612. /sys/devices/, which is able to express a hierarchy between
  613. class devices. If the deprecated option is set to Y, the
  614. unified device tree is split into a bus device tree at
  615. /sys/devices/ and several individual class device trees at
  616. /sys/class/. The class and bus devices will be connected by
  617. "<subsystem>:<name>" and the "device" links. The "block"
  618. class devices, will not show up in /sys/class/block/. Some
  619. subsystems will suppress the creation of some devices which
  620. depend on the unified device tree.
  621. This option is not a pure compatibility option that can
  622. be safely enabled on newer distributions. It will change the
  623. layout of sysfs to the non-extensible deprecated version,
  624. and disable some features, which can not be exported without
  625. confusing older userspace tools. Since 2007/2008 all major
  626. distributions do not enable this option, and ship no tools which
  627. depend on the deprecated layout or this option.
  628. If you are using a new kernel on an older distribution, or use
  629. older userspace tools, you might need to say Y here. Do not say Y,
  630. if the original kernel, that came with your distribution, has
  631. this option set to N.
  632. config RELAY
  633. bool "Kernel->user space relay support (formerly relayfs)"
  634. help
  635. This option enables support for relay interface support in
  636. certain file systems (such as debugfs).
  637. It is designed to provide an efficient mechanism for tools and
  638. facilities to relay large amounts of data from kernel space to
  639. user space.
  640. If unsure, say N.
  641. config NAMESPACES
  642. bool "Namespaces support" if EMBEDDED
  643. default !EMBEDDED
  644. help
  645. Provides the way to make tasks work with different objects using
  646. the same id. For example same IPC id may refer to different objects
  647. or same user id or pid may refer to different tasks when used in
  648. different namespaces.
  649. config UTS_NS
  650. bool "UTS namespace"
  651. depends on NAMESPACES
  652. help
  653. In this namespace tasks see different info provided with the
  654. uname() system call
  655. config IPC_NS
  656. bool "IPC namespace"
  657. depends on NAMESPACES && (SYSVIPC || POSIX_MQUEUE)
  658. help
  659. In this namespace tasks work with IPC ids which correspond to
  660. different IPC objects in different namespaces.
  661. config USER_NS
  662. bool "User namespace (EXPERIMENTAL)"
  663. depends on NAMESPACES && EXPERIMENTAL
  664. help
  665. This allows containers, i.e. vservers, to use user namespaces
  666. to provide different user info for different servers.
  667. If unsure, say N.
  668. config PID_NS
  669. bool "PID Namespaces (EXPERIMENTAL)"
  670. default n
  671. depends on NAMESPACES && EXPERIMENTAL
  672. help
  673. Support process id namespaces. This allows having multiple
  674. processes with the same pid as long as they are in different
  675. pid namespaces. This is a building block of containers.
  676. Unless you want to work with an experimental feature
  677. say N here.
  678. config NET_NS
  679. bool "Network namespace"
  680. default n
  681. depends on NAMESPACES && EXPERIMENTAL && NET
  682. help
  683. Allow user space to create what appear to be multiple instances
  684. of the network stack.
  685. config BLK_DEV_INITRD
  686. bool "Initial RAM filesystem and RAM disk (initramfs/initrd) support"
  687. depends on BROKEN || !FRV
  688. help
  689. The initial RAM filesystem is a ramfs which is loaded by the
  690. boot loader (loadlin or lilo) and that is mounted as root
  691. before the normal boot procedure. It is typically used to
  692. load modules needed to mount the "real" root file system,
  693. etc. See <file:Documentation/initrd.txt> for details.
  694. If RAM disk support (BLK_DEV_RAM) is also included, this
  695. also enables initial RAM disk (initrd) support and adds
  696. 15 Kbytes (more on some other architectures) to the kernel size.
  697. If unsure say Y.
  698. if BLK_DEV_INITRD
  699. source "usr/Kconfig"
  700. endif
  701. config CC_OPTIMIZE_FOR_SIZE
  702. bool "Optimize for size"
  703. default y
  704. help
  705. Enabling this option will pass "-Os" instead of "-O2" to gcc
  706. resulting in a smaller kernel.
  707. If unsure, say Y.
  708. config SYSCTL
  709. bool
  710. config ANON_INODES
  711. bool
  712. menuconfig EMBEDDED
  713. bool "Configure standard kernel features (for small systems)"
  714. help
  715. This option allows certain base kernel options and settings
  716. to be disabled or tweaked. This is for specialized
  717. environments which can tolerate a "non-standard" kernel.
  718. Only use this if you really know what you are doing.
  719. config UID16
  720. bool "Enable 16-bit UID system calls" if EMBEDDED
  721. depends on ARM || BLACKFIN || CRIS || FRV || H8300 || X86_32 || M68K || (S390 && !64BIT) || SUPERH || SPARC32 || (SPARC64 && COMPAT) || UML || (X86_64 && IA32_EMULATION)
  722. default y
  723. help
  724. This enables the legacy 16-bit UID syscall wrappers.
  725. config SYSCTL_SYSCALL
  726. bool "Sysctl syscall support" if EMBEDDED
  727. depends on PROC_SYSCTL
  728. default y
  729. select SYSCTL
  730. ---help---
  731. sys_sysctl uses binary paths that have been found challenging
  732. to properly maintain and use. The interface in /proc/sys
  733. using paths with ascii names is now the primary path to this
  734. information.
  735. Almost nothing using the binary sysctl interface so if you are
  736. trying to save some space it is probably safe to disable this,
  737. making your kernel marginally smaller.
  738. If unsure say Y here.
  739. config KALLSYMS
  740. bool "Load all symbols for debugging/ksymoops" if EMBEDDED
  741. default y
  742. help
  743. Say Y here to let the kernel print out symbolic crash information and
  744. symbolic stack backtraces. This increases the size of the kernel
  745. somewhat, as all symbols have to be loaded into the kernel image.
  746. config KALLSYMS_ALL
  747. bool "Include all symbols in kallsyms"
  748. depends on DEBUG_KERNEL && KALLSYMS
  749. help
  750. Normally kallsyms only contains the symbols of functions, for nicer
  751. OOPS messages. Some debuggers can use kallsyms for other
  752. symbols too: say Y here to include all symbols, if you need them
  753. and you don't care about adding 300k to the size of your kernel.
  754. Say N.
  755. config KALLSYMS_EXTRA_PASS
  756. bool "Do an extra kallsyms pass"
  757. depends on KALLSYMS
  758. help
  759. If kallsyms is not working correctly, the build will fail with
  760. inconsistent kallsyms data. If that occurs, log a bug report and
  761. turn on KALLSYMS_EXTRA_PASS which should result in a stable build.
  762. Always say N here unless you find a bug in kallsyms, which must be
  763. reported. KALLSYMS_EXTRA_PASS is only a temporary workaround while
  764. you wait for kallsyms to be fixed.
  765. config HOTPLUG
  766. bool "Support for hot-pluggable devices" if EMBEDDED
  767. default y
  768. help
  769. This option is provided for the case where no hotplug or uevent
  770. capabilities is wanted by the kernel. You should only consider
  771. disabling this option for embedded systems that do not use modules, a
  772. dynamic /dev tree, or dynamic device discovery. Just say Y.
  773. config PRINTK
  774. default y
  775. bool "Enable support for printk" if EMBEDDED
  776. help
  777. This option enables normal printk support. Removing it
  778. eliminates most of the message strings from the kernel image
  779. and makes the kernel more or less silent. As this makes it
  780. very difficult to diagnose system problems, saying N here is
  781. strongly discouraged.
  782. config BUG
  783. bool "BUG() support" if EMBEDDED
  784. default y
  785. help
  786. Disabling this option eliminates support for BUG and WARN, reducing
  787. the size of your kernel image and potentially quietly ignoring
  788. numerous fatal conditions. You should only consider disabling this
  789. option for embedded systems with no facilities for reporting errors.
  790. Just say Y.
  791. config ELF_CORE
  792. default y
  793. bool "Enable ELF core dumps" if EMBEDDED
  794. help
  795. Enable support for generating core dumps. Disabling saves about 4k.
  796. config PCSPKR_PLATFORM
  797. bool "Enable PC-Speaker support" if EMBEDDED
  798. depends on ALPHA || X86 || MIPS || PPC_PREP || PPC_CHRP || PPC_PSERIES
  799. default y
  800. help
  801. This option allows to disable the internal PC-Speaker
  802. support, saving some memory.
  803. config BASE_FULL
  804. default y
  805. bool "Enable full-sized data structures for core" if EMBEDDED
  806. help
  807. Disabling this option reduces the size of miscellaneous core
  808. kernel data structures. This saves memory on small machines,
  809. but may reduce performance.
  810. config FUTEX
  811. bool "Enable futex support" if EMBEDDED
  812. default y
  813. select RT_MUTEXES
  814. help
  815. Disabling this option will cause the kernel to be built without
  816. support for "fast userspace mutexes". The resulting kernel may not
  817. run glibc-based applications correctly.
  818. config EPOLL
  819. bool "Enable eventpoll support" if EMBEDDED
  820. default y
  821. select ANON_INODES
  822. help
  823. Disabling this option will cause the kernel to be built without
  824. support for epoll family of system calls.
  825. config SIGNALFD
  826. bool "Enable signalfd() system call" if EMBEDDED
  827. select ANON_INODES
  828. default y
  829. help
  830. Enable the signalfd() system call that allows to receive signals
  831. on a file descriptor.
  832. If unsure, say Y.
  833. config TIMERFD
  834. bool "Enable timerfd() system call" if EMBEDDED
  835. select ANON_INODES
  836. default y
  837. help
  838. Enable the timerfd() system call that allows to receive timer
  839. events on a file descriptor.
  840. If unsure, say Y.
  841. config EVENTFD
  842. bool "Enable eventfd() system call" if EMBEDDED
  843. select ANON_INODES
  844. default y
  845. help
  846. Enable the eventfd() system call that allows to receive both
  847. kernel notification (ie. KAIO) or userspace notifications.
  848. If unsure, say Y.
  849. config SHMEM
  850. bool "Use full shmem filesystem" if EMBEDDED
  851. default y
  852. depends on MMU
  853. help
  854. The shmem is an internal filesystem used to manage shared memory.
  855. It is backed by swap and manages resource limits. It is also exported
  856. to userspace as tmpfs if TMPFS is enabled. Disabling this
  857. option replaces shmem and tmpfs with the much simpler ramfs code,
  858. which may be appropriate on small systems without swap.
  859. config AIO
  860. bool "Enable AIO support" if EMBEDDED
  861. default y
  862. help
  863. This option enables POSIX asynchronous I/O which may by used
  864. by some high performance threaded applications. Disabling
  865. this option saves about 7k.
  866. config HAVE_PERF_EVENTS
  867. bool
  868. help
  869. See tools/perf/design.txt for details.
  870. config PERF_USE_VMALLOC
  871. bool
  872. help
  873. See tools/perf/design.txt for details
  874. menu "Kernel Performance Events And Counters"
  875. config PERF_EVENTS
  876. bool "Kernel performance events and counters"
  877. default y if (PROFILING || PERF_COUNTERS)
  878. depends on HAVE_PERF_EVENTS
  879. select ANON_INODES
  880. help
  881. Enable kernel support for various performance events provided
  882. by software and hardware.
  883. Software events are supported either built-in or via the
  884. use of generic tracepoints.
  885. Most modern CPUs support performance events via performance
  886. counter registers. These registers count the number of certain
  887. types of hw events: such as instructions executed, cachemisses
  888. suffered, or branches mis-predicted - without slowing down the
  889. kernel or applications. These registers can also trigger interrupts
  890. when a threshold number of events have passed - and can thus be
  891. used to profile the code that runs on that CPU.
  892. The Linux Performance Event subsystem provides an abstraction of
  893. these software and hardware event capabilities, available via a
  894. system call and used by the "perf" utility in tools/perf/. It
  895. provides per task and per CPU counters, and it provides event
  896. capabilities on top of those.
  897. Say Y if unsure.
  898. config PERF_COUNTERS
  899. bool "Kernel performance counters (old config option)"
  900. depends on HAVE_PERF_EVENTS
  901. help
  902. This config has been obsoleted by the PERF_EVENTS
  903. config option - please see that one for details.
  904. It has no effect on the kernel whether you enable
  905. it or not, it is a compatibility placeholder.
  906. Say N if unsure.
  907. config DEBUG_PERF_USE_VMALLOC
  908. default n
  909. bool "Debug: use vmalloc to back perf mmap() buffers"
  910. depends on PERF_EVENTS && DEBUG_KERNEL
  911. select PERF_USE_VMALLOC
  912. help
  913. Use vmalloc memory to back perf mmap() buffers.
  914. Mostly useful for debugging the vmalloc code on platforms
  915. that don't require it.
  916. Say N if unsure.
  917. endmenu
  918. config VM_EVENT_COUNTERS
  919. default y
  920. bool "Enable VM event counters for /proc/vmstat" if EMBEDDED
  921. help
  922. VM event counters are needed for event counts to be shown.
  923. This option allows the disabling of the VM event counters
  924. on EMBEDDED systems. /proc/vmstat will only show page counts
  925. if VM event counters are disabled.
  926. config PCI_QUIRKS
  927. default y
  928. bool "Enable PCI quirk workarounds" if EMBEDDED
  929. depends on PCI
  930. help
  931. This enables workarounds for various PCI chipset
  932. bugs/quirks. Disable this only if your target machine is
  933. unaffected by PCI quirks.
  934. config SLUB_DEBUG
  935. default y
  936. bool "Enable SLUB debugging support" if EMBEDDED
  937. depends on SLUB && SYSFS
  938. help
  939. SLUB has extensive debug support features. Disabling these can
  940. result in significant savings in code size. This also disables
  941. SLUB sysfs support. /sys/slab will not exist and there will be
  942. no support for cache validation etc.
  943. config COMPAT_BRK
  944. bool "Disable heap randomization"
  945. default y
  946. help
  947. Randomizing heap placement makes heap exploits harder, but it
  948. also breaks ancient binaries (including anything libc5 based).
  949. This option changes the bootup default to heap randomization
  950. disabled, and can be overridden at runtime by setting
  951. /proc/sys/kernel/randomize_va_space to 2.
  952. On non-ancient distros (post-2000 ones) N is usually a safe choice.
  953. choice
  954. prompt "Choose SLAB allocator"
  955. default SLUB
  956. help
  957. This option allows to select a slab allocator.
  958. config SLAB
  959. bool "SLAB"
  960. help
  961. The regular slab allocator that is established and known to work
  962. well in all environments. It organizes cache hot objects in
  963. per cpu and per node queues.
  964. config SLUB
  965. bool "SLUB (Unqueued Allocator)"
  966. help
  967. SLUB is a slab allocator that minimizes cache line usage
  968. instead of managing queues of cached objects (SLAB approach).
  969. Per cpu caching is realized using slabs of objects instead
  970. of queues of objects. SLUB can use memory efficiently
  971. and has enhanced diagnostics. SLUB is the default choice for
  972. a slab allocator.
  973. config SLOB
  974. depends on EMBEDDED
  975. bool "SLOB (Simple Allocator)"
  976. help
  977. SLOB replaces the stock allocator with a drastically simpler
  978. allocator. SLOB is generally more space efficient but
  979. does not perform as well on large systems.
  980. endchoice
  981. config MMAP_ALLOW_UNINITIALIZED
  982. bool "Allow mmapped anonymous memory to be uninitialized"
  983. depends on EMBEDDED && !MMU
  984. default n
  985. help
  986. Normally, and according to the Linux spec, anonymous memory obtained
  987. from mmap() has it's contents cleared before it is passed to
  988. userspace. Enabling this config option allows you to request that
  989. mmap() skip that if it is given an MAP_UNINITIALIZED flag, thus
  990. providing a huge performance boost. If this option is not enabled,
  991. then the flag will be ignored.
  992. This is taken advantage of by uClibc's malloc(), and also by
  993. ELF-FDPIC binfmt's brk and stack allocator.
  994. Because of the obvious security issues, this option should only be
  995. enabled on embedded devices where you control what is run in
  996. userspace. Since that isn't generally a problem on no-MMU systems,
  997. it is normally safe to say Y here.
  998. See Documentation/nommu-mmap.txt for more information.
  999. config PROFILING
  1000. bool "Profiling support"
  1001. help
  1002. Say Y here to enable the extended profiling support mechanisms used
  1003. by profilers such as OProfile.
  1004. #
  1005. # Place an empty function call at each tracepoint site. Can be
  1006. # dynamically changed for a probe function.
  1007. #
  1008. config TRACEPOINTS
  1009. bool
  1010. source "arch/Kconfig"
  1011. endmenu # General setup
  1012. config HAVE_GENERIC_DMA_COHERENT
  1013. bool
  1014. default n
  1015. config SLABINFO
  1016. bool
  1017. depends on PROC_FS
  1018. depends on SLAB || SLUB_DEBUG
  1019. default y
  1020. config RT_MUTEXES
  1021. boolean
  1022. config BASE_SMALL
  1023. int
  1024. default 0 if BASE_FULL
  1025. default 1 if !BASE_FULL
  1026. menuconfig MODULES
  1027. bool "Enable loadable module support"
  1028. help
  1029. Kernel modules are small pieces of compiled code which can
  1030. be inserted in the running kernel, rather than being
  1031. permanently built into the kernel. You use the "modprobe"
  1032. tool to add (and sometimes remove) them. If you say Y here,
  1033. many parts of the kernel can be built as modules (by
  1034. answering M instead of Y where indicated): this is most
  1035. useful for infrequently used options which are not required
  1036. for booting. For more information, see the man pages for
  1037. modprobe, lsmod, modinfo, insmod and rmmod.
  1038. If you say Y here, you will need to run "make
  1039. modules_install" to put the modules under /lib/modules/
  1040. where modprobe can find them (you may need to be root to do
  1041. this).
  1042. If unsure, say Y.
  1043. if MODULES
  1044. config MODULE_FORCE_LOAD
  1045. bool "Forced module loading"
  1046. default n
  1047. help
  1048. Allow loading of modules without version information (ie. modprobe
  1049. --force). Forced module loading sets the 'F' (forced) taint flag and
  1050. is usually a really bad idea.
  1051. config MODULE_UNLOAD
  1052. bool "Module unloading"
  1053. help
  1054. Without this option you will not be able to unload any
  1055. modules (note that some modules may not be unloadable
  1056. anyway), which makes your kernel smaller, faster
  1057. and simpler. If unsure, say Y.
  1058. config MODULE_FORCE_UNLOAD
  1059. bool "Forced module unloading"
  1060. depends on MODULE_UNLOAD && EXPERIMENTAL
  1061. help
  1062. This option allows you to force a module to unload, even if the
  1063. kernel believes it is unsafe: the kernel will remove the module
  1064. without waiting for anyone to stop using it (using the -f option to
  1065. rmmod). This is mainly for kernel developers and desperate users.
  1066. If unsure, say N.
  1067. config MODVERSIONS
  1068. bool "Module versioning support"
  1069. help
  1070. Usually, you have to use modules compiled with your kernel.
  1071. Saying Y here makes it sometimes possible to use modules
  1072. compiled for different kernels, by adding enough information
  1073. to the modules to (hopefully) spot any changes which would
  1074. make them incompatible with the kernel you are running. If
  1075. unsure, say N.
  1076. config MODULE_SRCVERSION_ALL
  1077. bool "Source checksum for all modules"
  1078. help
  1079. Modules which contain a MODULE_VERSION get an extra "srcversion"
  1080. field inserted into their modinfo section, which contains a
  1081. sum of the source files which made it. This helps maintainers
  1082. see exactly which source was used to build a module (since
  1083. others sometimes change the module source without updating
  1084. the version). With this option, such a "srcversion" field
  1085. will be created for all modules. If unsure, say N.
  1086. endif # MODULES
  1087. config INIT_ALL_POSSIBLE
  1088. bool
  1089. help
  1090. Back when each arch used to define their own cpu_online_map and
  1091. cpu_possible_map, some of them chose to initialize cpu_possible_map
  1092. with all 1s, and others with all 0s. When they were centralised,
  1093. it was better to provide this option than to break all the archs
  1094. and have several arch maintainers pursuing me down dark alleys.
  1095. config STOP_MACHINE
  1096. bool
  1097. default y
  1098. depends on (SMP && MODULE_UNLOAD) || HOTPLUG_CPU
  1099. help
  1100. Need stop_machine() primitive.
  1101. source "block/Kconfig"
  1102. config PREEMPT_NOTIFIERS
  1103. bool
  1104. config PADATA
  1105. depends on SMP
  1106. bool
  1107. source "kernel/Kconfig.locks"