Kconfig 25 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793
  1. config DEFCONFIG_LIST
  2. string
  3. depends on !UML
  4. option defconfig_list
  5. default "/lib/modules/$UNAME_RELEASE/.config"
  6. default "/etc/kernel-config"
  7. default "/boot/config-$UNAME_RELEASE"
  8. default "arch/$ARCH/defconfig"
  9. menu "General setup"
  10. config EXPERIMENTAL
  11. bool "Prompt for development and/or incomplete code/drivers"
  12. ---help---
  13. Some of the various things that Linux supports (such as network
  14. drivers, file systems, network protocols, etc.) can be in a state
  15. of development where the functionality, stability, or the level of
  16. testing is not yet high enough for general use. This is usually
  17. known as the "alpha-test" phase among developers. If a feature is
  18. currently in alpha-test, then the developers usually discourage
  19. uninformed widespread use of this feature by the general public to
  20. avoid "Why doesn't this work?" type mail messages. However, active
  21. testing and use of these systems is welcomed. Just be aware that it
  22. may not meet the normal level of reliability or it may fail to work
  23. in some special cases. Detailed bug reports from people familiar
  24. with the kernel internals are usually welcomed by the developers
  25. (before submitting bug reports, please read the documents
  26. <file:README>, <file:MAINTAINERS>, <file:REPORTING-BUGS>,
  27. <file:Documentation/BUG-HUNTING>, and
  28. <file:Documentation/oops-tracing.txt> in the kernel source).
  29. This option will also make obsoleted drivers available. These are
  30. drivers that have been replaced by something else, and/or are
  31. scheduled to be removed in a future kernel release.
  32. Unless you intend to help test and develop a feature or driver that
  33. falls into this category, or you have a situation that requires
  34. using these features, you should probably say N here, which will
  35. cause the configurator to present you with fewer choices. If
  36. you say Y here, you will be offered the choice of using features or
  37. drivers that are currently considered to be in the alpha-test phase.
  38. config BROKEN
  39. bool
  40. config BROKEN_ON_SMP
  41. bool
  42. depends on BROKEN || !SMP
  43. default y
  44. config LOCK_KERNEL
  45. bool
  46. depends on SMP || PREEMPT
  47. default y
  48. config INIT_ENV_ARG_LIMIT
  49. int
  50. default 32 if !UML
  51. default 128 if UML
  52. help
  53. Maximum of each of the number of arguments and environment
  54. variables passed to init from the kernel command line.
  55. config LOCALVERSION
  56. string "Local version - append to kernel release"
  57. help
  58. Append an extra string to the end of your kernel version.
  59. This will show up when you type uname, for example.
  60. The string you set here will be appended after the contents of
  61. any files with a filename matching localversion* in your
  62. object and source tree, in that order. Your total string can
  63. be a maximum of 64 characters.
  64. config LOCALVERSION_AUTO
  65. bool "Automatically append version information to the version string"
  66. default y
  67. help
  68. This will try to automatically determine if the current tree is a
  69. release tree by looking for git tags that belong to the current
  70. top of tree revision.
  71. A string of the format -gxxxxxxxx will be added to the localversion
  72. if a git-based tree is found. The string generated by this will be
  73. appended after any matching localversion* files, and after the value
  74. set in CONFIG_LOCALVERSION.
  75. (The actual string used here is the first eight characters produced
  76. by running the command:
  77. $ git rev-parse --verify HEAD
  78. which is done within the script "scripts/setlocalversion".)
  79. config SWAP
  80. bool "Support for paging of anonymous memory (swap)"
  81. depends on MMU && BLOCK
  82. default y
  83. help
  84. This option allows you to choose whether you want to have support
  85. for so called swap devices or swap files in your kernel that are
  86. used to provide more virtual memory than the actual RAM present
  87. in your computer. If unsure say Y.
  88. config SYSVIPC
  89. bool "System V IPC"
  90. ---help---
  91. Inter Process Communication is a suite of library functions and
  92. system calls which let processes (running programs) synchronize and
  93. exchange information. It is generally considered to be a good thing,
  94. and some programs won't run unless you say Y here. In particular, if
  95. you want to run the DOS emulator dosemu under Linux (read the
  96. DOSEMU-HOWTO, available from <http://www.tldp.org/docs.html#howto>),
  97. you'll need to say Y here.
  98. You can find documentation about IPC with "info ipc" and also in
  99. section 6.4 of the Linux Programmer's Guide, available from
  100. <http://www.tldp.org/guides.html>.
  101. config SYSVIPC_SYSCTL
  102. bool
  103. depends on SYSVIPC
  104. depends on SYSCTL
  105. default y
  106. config POSIX_MQUEUE
  107. bool "POSIX Message Queues"
  108. depends on NET && EXPERIMENTAL
  109. ---help---
  110. POSIX variant of message queues is a part of IPC. In POSIX message
  111. queues every message has a priority which decides about succession
  112. of receiving it by a process. If you want to compile and run
  113. programs written e.g. for Solaris with use of its POSIX message
  114. queues (functions mq_*) say Y here.
  115. POSIX message queues are visible as a filesystem called 'mqueue'
  116. and can be mounted somewhere if you want to do filesystem
  117. operations on message queues.
  118. If unsure, say Y.
  119. config BSD_PROCESS_ACCT
  120. bool "BSD Process Accounting"
  121. help
  122. If you say Y here, a user level program will be able to instruct the
  123. kernel (via a special system call) to write process accounting
  124. information to a file: whenever a process exits, information about
  125. that process will be appended to the file by the kernel. The
  126. information includes things such as creation time, owning user,
  127. command name, memory usage, controlling terminal etc. (the complete
  128. list is in the struct acct in <file:include/linux/acct.h>). It is
  129. up to the user level program to do useful things with this
  130. information. This is generally a good idea, so say Y.
  131. config BSD_PROCESS_ACCT_V3
  132. bool "BSD Process Accounting version 3 file format"
  133. depends on BSD_PROCESS_ACCT
  134. default n
  135. help
  136. If you say Y here, the process accounting information is written
  137. in a new file format that also logs the process IDs of each
  138. process and it's parent. Note that this file format is incompatible
  139. with previous v0/v1/v2 file formats, so you will need updated tools
  140. for processing it. A preliminary version of these tools is available
  141. at <http://www.physik3.uni-rostock.de/tim/kernel/utils/acct/>.
  142. config TASKSTATS
  143. bool "Export task/process statistics through netlink (EXPERIMENTAL)"
  144. depends on NET
  145. default n
  146. help
  147. Export selected statistics for tasks/processes through the
  148. generic netlink interface. Unlike BSD process accounting, the
  149. statistics are available during the lifetime of tasks/processes as
  150. responses to commands. Like BSD accounting, they are sent to user
  151. space on task exit.
  152. Say N if unsure.
  153. config TASK_DELAY_ACCT
  154. bool "Enable per-task delay accounting (EXPERIMENTAL)"
  155. depends on TASKSTATS
  156. help
  157. Collect information on time spent by a task waiting for system
  158. resources like cpu, synchronous block I/O completion and swapping
  159. in pages. Such statistics can help in setting a task's priorities
  160. relative to other tasks for cpu, io, rss limits etc.
  161. Say N if unsure.
  162. config TASK_XACCT
  163. bool "Enable extended accounting over taskstats (EXPERIMENTAL)"
  164. depends on TASKSTATS
  165. help
  166. Collect extended task accounting data and send the data
  167. to userland for processing over the taskstats interface.
  168. Say N if unsure.
  169. config TASK_IO_ACCOUNTING
  170. bool "Enable per-task storage I/O accounting (EXPERIMENTAL)"
  171. depends on TASK_XACCT
  172. help
  173. Collect information on the number of bytes of storage I/O which this
  174. task has caused.
  175. Say N if unsure.
  176. config USER_NS
  177. bool "User Namespaces (EXPERIMENTAL)"
  178. default n
  179. depends on EXPERIMENTAL
  180. help
  181. Support user namespaces. This allows containers, i.e.
  182. vservers, to use user namespaces to provide different
  183. user info for different servers. If unsure, say N.
  184. config PID_NS
  185. bool "PID Namespaces (EXPERIMENTAL)"
  186. default n
  187. depends on EXPERIMENTAL
  188. help
  189. Suport process id namespaces. This allows having multiple
  190. process with the same pid as long as they are in different
  191. pid namespaces. This is a building block of containers.
  192. Unless you want to work with an experimental feature
  193. say N here.
  194. config AUDIT
  195. bool "Auditing support"
  196. depends on NET
  197. help
  198. Enable auditing infrastructure that can be used with another
  199. kernel subsystem, such as SELinux (which requires this for
  200. logging of avc messages output). Does not do system-call
  201. auditing without CONFIG_AUDITSYSCALL.
  202. config AUDITSYSCALL
  203. bool "Enable system-call auditing support"
  204. depends on AUDIT && (X86 || PPC || PPC64 || S390 || IA64 || UML || SPARC64)
  205. default y if SECURITY_SELINUX
  206. help
  207. Enable low-overhead system-call auditing infrastructure that
  208. can be used independently or with another kernel subsystem,
  209. such as SELinux. To use audit's filesystem watch feature, please
  210. ensure that INOTIFY is configured.
  211. config AUDIT_TREE
  212. def_bool y
  213. depends on AUDITSYSCALL && INOTIFY
  214. config IKCONFIG
  215. tristate "Kernel .config support"
  216. ---help---
  217. This option enables the complete Linux kernel ".config" file
  218. contents to be saved in the kernel. It provides documentation
  219. of which kernel options are used in a running kernel or in an
  220. on-disk kernel. This information can be extracted from the kernel
  221. image file with the script scripts/extract-ikconfig and used as
  222. input to rebuild the current kernel or to build another kernel.
  223. It can also be extracted from a running kernel by reading
  224. /proc/config.gz if enabled (below).
  225. config IKCONFIG_PROC
  226. bool "Enable access to .config through /proc/config.gz"
  227. depends on IKCONFIG && PROC_FS
  228. ---help---
  229. This option enables access to the kernel configuration file
  230. through /proc/config.gz.
  231. config LOG_BUF_SHIFT
  232. int "Kernel log buffer size (16 => 64KB, 17 => 128KB)"
  233. range 12 21
  234. default 17 if S390 || LOCKDEP
  235. default 16 if X86_NUMAQ || IA64
  236. default 15 if SMP
  237. default 14
  238. help
  239. Select kernel log buffer size as a power of 2.
  240. Defaults and Examples:
  241. 17 => 128 KB for S/390
  242. 16 => 64 KB for x86 NUMAQ or IA-64
  243. 15 => 32 KB for SMP
  244. 14 => 16 KB for uniprocessor
  245. 13 => 8 KB
  246. 12 => 4 KB
  247. config CGROUPS
  248. bool "Control Group support"
  249. help
  250. This option will let you use process cgroup subsystems
  251. such as Cpusets
  252. Say N if unsure.
  253. config CGROUP_DEBUG
  254. bool "Example debug cgroup subsystem"
  255. depends on CGROUPS
  256. help
  257. This option enables a simple cgroup subsystem that
  258. exports useful debugging information about the cgroups
  259. framework
  260. Say N if unsure
  261. config CGROUP_NS
  262. bool "Namespace cgroup subsystem"
  263. depends on CGROUPS
  264. help
  265. Provides a simple namespace cgroup subsystem to
  266. provide hierarchical naming of sets of namespaces,
  267. for instance virtual servers and checkpoint/restart
  268. jobs.
  269. config CPUSETS
  270. bool "Cpuset support"
  271. depends on SMP && CGROUPS
  272. help
  273. This option will let you create and manage CPUSETs which
  274. allow dynamically partitioning a system into sets of CPUs and
  275. Memory Nodes and assigning tasks to run only within those sets.
  276. This is primarily useful on large SMP or NUMA systems.
  277. Say N if unsure.
  278. config FAIR_GROUP_SCHED
  279. bool "Fair group CPU scheduler"
  280. default y
  281. help
  282. This feature lets CPU scheduler recognize task groups and control CPU
  283. bandwidth allocation to such task groups.
  284. choice
  285. depends on FAIR_GROUP_SCHED
  286. prompt "Basis for grouping tasks"
  287. default FAIR_USER_SCHED
  288. config FAIR_USER_SCHED
  289. bool "user id"
  290. help
  291. This option will choose userid as the basis for grouping
  292. tasks, thus providing equal CPU bandwidth to each user.
  293. config FAIR_CGROUP_SCHED
  294. bool "Control groups"
  295. depends on CGROUPS
  296. help
  297. This option allows you to create arbitrary task groups
  298. using the "cgroup" pseudo filesystem and control
  299. the cpu bandwidth allocated to each such task group.
  300. Refer to Documentation/cgroups.txt for more information
  301. on "cgroup" pseudo filesystem.
  302. endchoice
  303. config CGROUP_CPUACCT
  304. bool "Simple CPU accounting cgroup subsystem"
  305. depends on CGROUPS
  306. help
  307. Provides a simple Resource Controller for monitoring the
  308. total CPU consumed by the tasks in a cgroup
  309. config SYSFS_DEPRECATED
  310. bool "Create deprecated sysfs files"
  311. depends on SYSFS
  312. default y
  313. help
  314. This option creates deprecated symlinks such as the
  315. "device"-link, the <subsystem>:<name>-link, and the
  316. "bus"-link. It may also add deprecated key in the
  317. uevent environment.
  318. None of these features or values should be used today, as
  319. they export driver core implementation details to userspace
  320. or export properties which can't be kept stable across kernel
  321. releases.
  322. If enabled, this option will also move any device structures
  323. that belong to a class, back into the /sys/class hierarchy, in
  324. order to support older versions of udev.
  325. If you are using a distro that was released in 2006 or later,
  326. it should be safe to say N here.
  327. config PROC_PID_CPUSET
  328. bool "Include legacy /proc/<pid>/cpuset file"
  329. depends on CPUSETS
  330. default y
  331. config RELAY
  332. bool "Kernel->user space relay support (formerly relayfs)"
  333. help
  334. This option enables support for relay interface support in
  335. certain file systems (such as debugfs).
  336. It is designed to provide an efficient mechanism for tools and
  337. facilities to relay large amounts of data from kernel space to
  338. user space.
  339. If unsure, say N.
  340. config BLK_DEV_INITRD
  341. bool "Initial RAM filesystem and RAM disk (initramfs/initrd) support"
  342. depends on BROKEN || !FRV
  343. help
  344. The initial RAM filesystem is a ramfs which is loaded by the
  345. boot loader (loadlin or lilo) and that is mounted as root
  346. before the normal boot procedure. It is typically used to
  347. load modules needed to mount the "real" root file system,
  348. etc. See <file:Documentation/initrd.txt> for details.
  349. If RAM disk support (BLK_DEV_RAM) is also included, this
  350. also enables initial RAM disk (initrd) support and adds
  351. 15 Kbytes (more on some other architectures) to the kernel size.
  352. If unsure say Y.
  353. if BLK_DEV_INITRD
  354. source "usr/Kconfig"
  355. endif
  356. config CC_OPTIMIZE_FOR_SIZE
  357. bool "Optimize for size (Look out for broken compilers!)"
  358. default y
  359. depends on ARM || H8300 || SUPERH || EXPERIMENTAL
  360. help
  361. Enabling this option will pass "-Os" instead of "-O2" to gcc
  362. resulting in a smaller kernel.
  363. WARNING: some versions of gcc may generate incorrect code with this
  364. option. If problems are observed, a gcc upgrade may be needed.
  365. If unsure, say N.
  366. config SYSCTL
  367. bool
  368. menuconfig EMBEDDED
  369. bool "Configure standard kernel features (for small systems)"
  370. help
  371. This option allows certain base kernel options and settings
  372. to be disabled or tweaked. This is for specialized
  373. environments which can tolerate a "non-standard" kernel.
  374. Only use this if you really know what you are doing.
  375. config UID16
  376. bool "Enable 16-bit UID system calls" if EMBEDDED
  377. depends on ARM || BLACKFIN || CRIS || FRV || H8300 || X86_32 || M68K || (S390 && !64BIT) || SUPERH || SPARC32 || (SPARC64 && SPARC32_COMPAT) || UML || (X86_64 && IA32_EMULATION)
  378. default y
  379. help
  380. This enables the legacy 16-bit UID syscall wrappers.
  381. config SYSCTL_SYSCALL
  382. bool "Sysctl syscall support" if EMBEDDED
  383. default y
  384. select SYSCTL
  385. ---help---
  386. sys_sysctl uses binary paths that have been found challenging
  387. to properly maintain and use. The interface in /proc/sys
  388. using paths with ascii names is now the primary path to this
  389. information.
  390. Almost nothing using the binary sysctl interface so if you are
  391. trying to save some space it is probably safe to disable this,
  392. making your kernel marginally smaller.
  393. If unsure say Y here.
  394. config KALLSYMS
  395. bool "Load all symbols for debugging/ksymoops" if EMBEDDED
  396. default y
  397. help
  398. Say Y here to let the kernel print out symbolic crash information and
  399. symbolic stack backtraces. This increases the size of the kernel
  400. somewhat, as all symbols have to be loaded into the kernel image.
  401. config KALLSYMS_ALL
  402. bool "Include all symbols in kallsyms"
  403. depends on DEBUG_KERNEL && KALLSYMS
  404. help
  405. Normally kallsyms only contains the symbols of functions, for nicer
  406. OOPS messages. Some debuggers can use kallsyms for other
  407. symbols too: say Y here to include all symbols, if you need them
  408. and you don't care about adding 300k to the size of your kernel.
  409. Say N.
  410. config KALLSYMS_EXTRA_PASS
  411. bool "Do an extra kallsyms pass"
  412. depends on KALLSYMS
  413. help
  414. If kallsyms is not working correctly, the build will fail with
  415. inconsistent kallsyms data. If that occurs, log a bug report and
  416. turn on KALLSYMS_EXTRA_PASS which should result in a stable build.
  417. Always say N here unless you find a bug in kallsyms, which must be
  418. reported. KALLSYMS_EXTRA_PASS is only a temporary workaround while
  419. you wait for kallsyms to be fixed.
  420. config HOTPLUG
  421. bool "Support for hot-pluggable devices" if EMBEDDED
  422. default y
  423. help
  424. This option is provided for the case where no hotplug or uevent
  425. capabilities is wanted by the kernel. You should only consider
  426. disabling this option for embedded systems that do not use modules, a
  427. dynamic /dev tree, or dynamic device discovery. Just say Y.
  428. config PRINTK
  429. default y
  430. bool "Enable support for printk" if EMBEDDED
  431. help
  432. This option enables normal printk support. Removing it
  433. eliminates most of the message strings from the kernel image
  434. and makes the kernel more or less silent. As this makes it
  435. very difficult to diagnose system problems, saying N here is
  436. strongly discouraged.
  437. config BUG
  438. bool "BUG() support" if EMBEDDED
  439. default y
  440. help
  441. Disabling this option eliminates support for BUG and WARN, reducing
  442. the size of your kernel image and potentially quietly ignoring
  443. numerous fatal conditions. You should only consider disabling this
  444. option for embedded systems with no facilities for reporting errors.
  445. Just say Y.
  446. config ELF_CORE
  447. default y
  448. bool "Enable ELF core dumps" if EMBEDDED
  449. help
  450. Enable support for generating core dumps. Disabling saves about 4k.
  451. config BASE_FULL
  452. default y
  453. bool "Enable full-sized data structures for core" if EMBEDDED
  454. help
  455. Disabling this option reduces the size of miscellaneous core
  456. kernel data structures. This saves memory on small machines,
  457. but may reduce performance.
  458. config FUTEX
  459. bool "Enable futex support" if EMBEDDED
  460. default y
  461. select RT_MUTEXES
  462. help
  463. Disabling this option will cause the kernel to be built without
  464. support for "fast userspace mutexes". The resulting kernel may not
  465. run glibc-based applications correctly.
  466. config ANON_INODES
  467. bool
  468. config EPOLL
  469. bool "Enable eventpoll support" if EMBEDDED
  470. default y
  471. select ANON_INODES
  472. help
  473. Disabling this option will cause the kernel to be built without
  474. support for epoll family of system calls.
  475. config SIGNALFD
  476. bool "Enable signalfd() system call" if EMBEDDED
  477. select ANON_INODES
  478. default y
  479. help
  480. Enable the signalfd() system call that allows to receive signals
  481. on a file descriptor.
  482. If unsure, say Y.
  483. config TIMERFD
  484. bool "Enable timerfd() system call" if EMBEDDED
  485. select ANON_INODES
  486. depends on BROKEN
  487. default y
  488. help
  489. Enable the timerfd() system call that allows to receive timer
  490. events on a file descriptor.
  491. If unsure, say Y.
  492. config EVENTFD
  493. bool "Enable eventfd() system call" if EMBEDDED
  494. select ANON_INODES
  495. default y
  496. help
  497. Enable the eventfd() system call that allows to receive both
  498. kernel notification (ie. KAIO) or userspace notifications.
  499. If unsure, say Y.
  500. config SHMEM
  501. bool "Use full shmem filesystem" if EMBEDDED
  502. default y
  503. depends on MMU
  504. help
  505. The shmem is an internal filesystem used to manage shared memory.
  506. It is backed by swap and manages resource limits. It is also exported
  507. to userspace as tmpfs if TMPFS is enabled. Disabling this
  508. option replaces shmem and tmpfs with the much simpler ramfs code,
  509. which may be appropriate on small systems without swap.
  510. config VM_EVENT_COUNTERS
  511. default y
  512. bool "Enable VM event counters for /proc/vmstat" if EMBEDDED
  513. help
  514. VM event counters are needed for event counts to be shown.
  515. This option allows the disabling of the VM event counters
  516. on EMBEDDED systems. /proc/vmstat will only show page counts
  517. if VM event counters are disabled.
  518. config SLUB_DEBUG
  519. default y
  520. bool "Enable SLUB debugging support" if EMBEDDED
  521. depends on SLUB
  522. help
  523. SLUB has extensive debug support features. Disabling these can
  524. result in significant savings in code size. This also disables
  525. SLUB sysfs support. /sys/slab will not exist and there will be
  526. no support for cache validation etc.
  527. choice
  528. prompt "Choose SLAB allocator"
  529. default SLUB
  530. help
  531. This option allows to select a slab allocator.
  532. config SLAB
  533. bool "SLAB"
  534. help
  535. The regular slab allocator that is established and known to work
  536. well in all environments. It organizes cache hot objects in
  537. per cpu and per node queues. SLAB is the default choice for
  538. a slab allocator.
  539. config SLUB
  540. bool "SLUB (Unqueued Allocator)"
  541. help
  542. SLUB is a slab allocator that minimizes cache line usage
  543. instead of managing queues of cached objects (SLAB approach).
  544. Per cpu caching is realized using slabs of objects instead
  545. of queues of objects. SLUB can use memory efficiently
  546. and has enhanced diagnostics.
  547. config SLOB
  548. depends on EMBEDDED
  549. bool "SLOB (Simple Allocator)"
  550. help
  551. SLOB replaces the SLAB allocator with a drastically simpler
  552. allocator. SLOB is more space efficient than SLAB but does not
  553. scale well (single lock for all operations) and is also highly
  554. susceptible to fragmentation. SLUB can accomplish a higher object
  555. density. It is usually better to use SLUB instead of SLOB.
  556. endchoice
  557. endmenu # General setup
  558. config SLABINFO
  559. bool
  560. depends on PROC_FS
  561. depends on SLAB || SLUB
  562. default y
  563. config RT_MUTEXES
  564. boolean
  565. select PLIST
  566. config TINY_SHMEM
  567. default !SHMEM
  568. bool
  569. config BASE_SMALL
  570. int
  571. default 0 if BASE_FULL
  572. default 1 if !BASE_FULL
  573. menuconfig MODULES
  574. bool "Enable loadable module support"
  575. help
  576. Kernel modules are small pieces of compiled code which can
  577. be inserted in the running kernel, rather than being
  578. permanently built into the kernel. You use the "modprobe"
  579. tool to add (and sometimes remove) them. If you say Y here,
  580. many parts of the kernel can be built as modules (by
  581. answering M instead of Y where indicated): this is most
  582. useful for infrequently used options which are not required
  583. for booting. For more information, see the man pages for
  584. modprobe, lsmod, modinfo, insmod and rmmod.
  585. If you say Y here, you will need to run "make
  586. modules_install" to put the modules under /lib/modules/
  587. where modprobe can find them (you may need to be root to do
  588. this).
  589. If unsure, say Y.
  590. config MODULE_UNLOAD
  591. bool "Module unloading"
  592. depends on MODULES
  593. help
  594. Without this option you will not be able to unload any
  595. modules (note that some modules may not be unloadable
  596. anyway), which makes your kernel slightly smaller and
  597. simpler. If unsure, say Y.
  598. config MODULE_FORCE_UNLOAD
  599. bool "Forced module unloading"
  600. depends on MODULE_UNLOAD && EXPERIMENTAL
  601. help
  602. This option allows you to force a module to unload, even if the
  603. kernel believes it is unsafe: the kernel will remove the module
  604. without waiting for anyone to stop using it (using the -f option to
  605. rmmod). This is mainly for kernel developers and desperate users.
  606. If unsure, say N.
  607. config MODVERSIONS
  608. bool "Module versioning support"
  609. depends on MODULES
  610. help
  611. Usually, you have to use modules compiled with your kernel.
  612. Saying Y here makes it sometimes possible to use modules
  613. compiled for different kernels, by adding enough information
  614. to the modules to (hopefully) spot any changes which would
  615. make them incompatible with the kernel you are running. If
  616. unsure, say N.
  617. config MODULE_SRCVERSION_ALL
  618. bool "Source checksum for all modules"
  619. depends on MODULES
  620. help
  621. Modules which contain a MODULE_VERSION get an extra "srcversion"
  622. field inserted into their modinfo section, which contains a
  623. sum of the source files which made it. This helps maintainers
  624. see exactly which source was used to build a module (since
  625. others sometimes change the module source without updating
  626. the version). With this option, such a "srcversion" field
  627. will be created for all modules. If unsure, say N.
  628. config KMOD
  629. bool "Automatic kernel module loading"
  630. depends on MODULES
  631. help
  632. Normally when you have selected some parts of the kernel to
  633. be created as kernel modules, you must load them (using the
  634. "modprobe" command) before you can use them. If you say Y
  635. here, some parts of the kernel will be able to load modules
  636. automatically: when a part of the kernel needs a module, it
  637. runs modprobe with the appropriate arguments, thereby
  638. loading the module if it is available. If unsure, say Y.
  639. config STOP_MACHINE
  640. bool
  641. default y
  642. depends on (SMP && MODULE_UNLOAD) || HOTPLUG_CPU
  643. help
  644. Need stop_machine() primitive.
  645. source "block/Kconfig"
  646. config PREEMPT_NOTIFIERS
  647. bool
  648. choice
  649. prompt "RCU implementation type:"
  650. default CLASSIC_RCU
  651. config CLASSIC_RCU
  652. bool "Classic RCU"
  653. help
  654. This option selects the classic RCU implementation that is
  655. designed for best read-side performance on non-realtime
  656. systems.
  657. Say Y if you are unsure.
  658. config PREEMPT_RCU
  659. bool "Preemptible RCU"
  660. depends on PREEMPT
  661. help
  662. This option reduces the latency of the kernel by making certain
  663. RCU sections preemptible. Normally RCU code is non-preemptible, if
  664. this option is selected then read-only RCU sections become
  665. preemptible. This helps latency, but may expose bugs due to
  666. now-naive assumptions about each RCU read-side critical section
  667. remaining on a given CPU through its execution.
  668. Say N if you are unsure.
  669. endchoice