Kconfig 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554
  1. #
  2. # For a description of the syntax of this configuration file,
  3. # see Documentation/kbuild/kconfig-language.txt.
  4. #
  5. config MMU
  6. bool
  7. default y
  8. config LOCKDEP_SUPPORT
  9. bool
  10. default y
  11. config STACKTRACE_SUPPORT
  12. bool
  13. default y
  14. config RWSEM_GENERIC_SPINLOCK
  15. bool
  16. config RWSEM_XCHGADD_ALGORITHM
  17. bool
  18. default y
  19. config ARCH_HAS_ILOG2_U32
  20. bool
  21. default n
  22. config ARCH_HAS_ILOG2_U64
  23. bool
  24. default n
  25. config GENERIC_HWEIGHT
  26. bool
  27. default y
  28. config GENERIC_CALIBRATE_DELAY
  29. bool
  30. default y
  31. config GENERIC_TIME
  32. def_bool y
  33. mainmenu "Linux Kernel Configuration"
  34. config S390
  35. bool
  36. default y
  37. source "init/Kconfig"
  38. menu "Base setup"
  39. comment "Processor type and features"
  40. config 64BIT
  41. bool "64 bit kernel"
  42. help
  43. Select this option if you have a 64 bit IBM zSeries machine
  44. and want to use the 64 bit addressing mode.
  45. config 32BIT
  46. bool
  47. default y if !64BIT
  48. config SMP
  49. bool "Symmetric multi-processing support"
  50. ---help---
  51. This enables support for systems with more than one CPU. If you have
  52. a system with only one CPU, like most personal computers, say N. If
  53. you have a system with more than one CPU, say Y.
  54. If you say N here, the kernel will run on single and multiprocessor
  55. machines, but will use only one CPU of a multiprocessor machine. If
  56. you say Y here, the kernel will run on many, but not all,
  57. singleprocessor machines. On a singleprocessor machine, the kernel
  58. will run faster if you say N here.
  59. See also the <file:Documentation/smp.txt> and the SMP-HOWTO
  60. available at <http://www.tldp.org/docs.html#howto>.
  61. Even if you don't know what to do here, say Y.
  62. config NR_CPUS
  63. int "Maximum number of CPUs (2-64)"
  64. range 2 64
  65. depends on SMP
  66. default "32"
  67. help
  68. This allows you to specify the maximum number of CPUs which this
  69. kernel will support. The maximum supported value is 64 and the
  70. minimum value which makes sense is 2.
  71. This is purely to save memory - each supported CPU adds
  72. approximately sixteen kilobytes to the kernel image.
  73. config HOTPLUG_CPU
  74. bool "Support for hot-pluggable CPUs"
  75. depends on SMP
  76. select HOTPLUG
  77. default n
  78. help
  79. Say Y here to be able to turn CPUs off and on. CPUs
  80. can be controlled through /sys/devices/system/cpu/cpu#.
  81. Say N if you want to disable CPU hotplug.
  82. config DEFAULT_MIGRATION_COST
  83. int
  84. default "1000000"
  85. config MATHEMU
  86. bool "IEEE FPU emulation"
  87. depends on MARCH_G5
  88. help
  89. This option is required for IEEE compliant floating point arithmetic
  90. on older S/390 machines. Say Y unless you know your machine doesn't
  91. need this.
  92. config COMPAT
  93. bool "Kernel support for 31 bit emulation"
  94. depends on 64BIT
  95. help
  96. Select this option if you want to enable your system kernel to
  97. handle system-calls from ELF binaries for 31 bit ESA. This option
  98. (and some other stuff like libraries and such) is needed for
  99. executing 31 bit applications. It is safe to say "Y".
  100. config SYSVIPC_COMPAT
  101. bool
  102. depends on COMPAT && SYSVIPC
  103. default y
  104. config AUDIT_ARCH
  105. bool
  106. default y
  107. config S390_SWITCH_AMODE
  108. bool "Switch kernel/user addressing modes"
  109. help
  110. This option allows to switch the addressing modes of kernel and user
  111. space. The kernel parameter switch_amode=on will enable this feature,
  112. default is disabled. Enabling this (via kernel parameter) on machines
  113. earlier than IBM System z9-109 EC/BC will reduce system performance.
  114. Note that this option will also be selected by selecting the execute
  115. protection option below. Enabling the execute protection via the
  116. noexec kernel parameter will also switch the addressing modes,
  117. independent of the switch_amode kernel parameter.
  118. config S390_EXEC_PROTECT
  119. bool "Data execute protection"
  120. select S390_SWITCH_AMODE
  121. help
  122. This option allows to enable a buffer overflow protection for user
  123. space programs and it also selects the addressing mode option above.
  124. The kernel parameter noexec=on will enable this feature and also
  125. switch the addressing modes, default is disabled. Enabling this (via
  126. kernel parameter) on machines earlier than IBM System z9-109 EC/BC
  127. will reduce system performance.
  128. comment "Code generation options"
  129. choice
  130. prompt "Processor type"
  131. default MARCH_G5
  132. config MARCH_G5
  133. bool "S/390 model G5 and G6"
  134. depends on !64BIT
  135. help
  136. Select this to build a 31 bit kernel that works
  137. on all S/390 and zSeries machines.
  138. config MARCH_Z900
  139. bool "IBM eServer zSeries model z800 and z900"
  140. help
  141. Select this to optimize for zSeries machines. This
  142. will enable some optimizations that are not available
  143. on older 31 bit only CPUs.
  144. config MARCH_Z990
  145. bool "IBM eServer zSeries model z890 and z990"
  146. help
  147. Select this enable optimizations for model z890/z990.
  148. This will be slightly faster but does not work on
  149. older machines such as the z900.
  150. config MARCH_Z9_109
  151. bool "IBM System z9"
  152. help
  153. Select this to enable optimizations for IBM System z9-109, IBM
  154. System z9 Enterprise Class (z9 EC), and IBM System z9 Business
  155. Class (z9 BC). The kernel will be slightly faster but will not
  156. work on older machines such as the z990, z890, z900, and z800.
  157. endchoice
  158. config PACK_STACK
  159. bool "Pack kernel stack"
  160. help
  161. This option enables the compiler option -mkernel-backchain if it
  162. is available. If the option is available the compiler supports
  163. the new stack layout which dramatically reduces the minimum stack
  164. frame size. With an old compiler a non-leaf function needs a
  165. minimum of 96 bytes on 31 bit and 160 bytes on 64 bit. With
  166. -mkernel-backchain the minimum size drops to 16 byte on 31 bit
  167. and 24 byte on 64 bit.
  168. Say Y if you are unsure.
  169. config SMALL_STACK
  170. bool "Use 4kb/8kb for kernel stack instead of 8kb/16kb"
  171. depends on PACK_STACK && !LOCKDEP
  172. help
  173. If you say Y here and the compiler supports the -mkernel-backchain
  174. option the kernel will use a smaller kernel stack size. For 31 bit
  175. the reduced size is 4kb instead of 8kb and for 64 bit it is 8kb
  176. instead of 16kb. This allows to run more thread on a system and
  177. reduces the pressure on the memory management for higher order
  178. page allocations.
  179. Say N if you are unsure.
  180. config CHECK_STACK
  181. bool "Detect kernel stack overflow"
  182. help
  183. This option enables the compiler option -mstack-guard and
  184. -mstack-size if they are available. If the compiler supports them
  185. it will emit additional code to each function prolog to trigger
  186. an illegal operation if the kernel stack is about to overflow.
  187. Say N if you are unsure.
  188. config STACK_GUARD
  189. int "Size of the guard area (128-1024)"
  190. range 128 1024
  191. depends on CHECK_STACK
  192. default "256"
  193. help
  194. This allows you to specify the size of the guard area at the lower
  195. end of the kernel stack. If the kernel stack points into the guard
  196. area on function entry an illegal operation is triggered. The size
  197. needs to be a power of 2. Please keep in mind that the size of an
  198. interrupt frame is 184 bytes for 31 bit and 328 bytes on 64 bit.
  199. The minimum size for the stack guard should be 256 for 31 bit and
  200. 512 for 64 bit.
  201. config WARN_STACK
  202. bool "Emit compiler warnings for function with broken stack usage"
  203. help
  204. This option enables the compiler options -mwarn-framesize and
  205. -mwarn-dynamicstack. If the compiler supports these options it
  206. will generate warnings for function which either use alloca or
  207. create a stack frame bigger then CONFIG_WARN_STACK_SIZE.
  208. Say N if you are unsure.
  209. config WARN_STACK_SIZE
  210. int "Maximum frame size considered safe (128-2048)"
  211. range 128 2048
  212. depends on WARN_STACK
  213. default "256"
  214. help
  215. This allows you to specify the maximum frame size a function may
  216. have without the compiler complaining about it.
  217. config ARCH_POPULATES_NODE_MAP
  218. def_bool y
  219. source "mm/Kconfig"
  220. config HOLES_IN_ZONE
  221. def_bool y
  222. comment "I/O subsystem configuration"
  223. config MACHCHK_WARNING
  224. bool "Process warning machine checks"
  225. help
  226. Select this option if you want the machine check handler on IBM S/390 or
  227. zSeries to process warning machine checks (e.g. on power failures).
  228. If unsure, say "Y".
  229. config QDIO
  230. tristate "QDIO support"
  231. ---help---
  232. This driver provides the Queued Direct I/O base support for
  233. IBM mainframes.
  234. For details please refer to the documentation provided by IBM at
  235. <http://www10.software.ibm.com/developerworks/opensource/linux390>
  236. To compile this driver as a module, choose M here: the
  237. module will be called qdio.
  238. If unsure, say Y.
  239. config QDIO_DEBUG
  240. bool "Extended debugging information"
  241. depends on QDIO
  242. help
  243. Say Y here to get extended debugging output in
  244. /sys/kernel/debug/s390dbf/qdio...
  245. Warning: this option reduces the performance of the QDIO module.
  246. If unsure, say N.
  247. comment "Misc"
  248. config PREEMPT
  249. bool "Preemptible Kernel"
  250. help
  251. This option reduces the latency of the kernel when reacting to
  252. real-time or interactive events by allowing a low priority process to
  253. be preempted even if it is in kernel mode executing a system call.
  254. This allows applications to run more reliably even when the system is
  255. under load.
  256. Say N if you are unsure.
  257. config IPL
  258. bool "Builtin IPL record support"
  259. help
  260. If you want to use the produced kernel to IPL directly from a
  261. device, you have to merge a bootsector specific to the device
  262. into the first bytes of the kernel. You will have to select the
  263. IPL device.
  264. choice
  265. prompt "IPL method generated into head.S"
  266. depends on IPL
  267. default IPL_TAPE
  268. help
  269. Select "tape" if you want to IPL the image from a Tape.
  270. Select "vm_reader" if you are running under VM/ESA and want
  271. to IPL the image from the emulated card reader.
  272. config IPL_TAPE
  273. bool "tape"
  274. config IPL_VM
  275. bool "vm_reader"
  276. endchoice
  277. source "fs/Kconfig.binfmt"
  278. config PROCESS_DEBUG
  279. bool "Show crashed user process info"
  280. help
  281. Say Y to print all process fault locations to the console. This is
  282. a debugging option; you probably do not want to set it unless you
  283. are an S390 port maintainer.
  284. config PFAULT
  285. bool "Pseudo page fault support"
  286. help
  287. Select this option, if you want to use PFAULT pseudo page fault
  288. handling under VM. If running native or in LPAR, this option
  289. has no effect. If your VM does not support PFAULT, PAGEEX
  290. pseudo page fault handling will be used.
  291. Note that VM 4.2 supports PFAULT but has a bug in its
  292. implementation that causes some problems.
  293. Everybody who wants to run Linux under VM != VM4.2 should select
  294. this option.
  295. config SHARED_KERNEL
  296. bool "VM shared kernel support"
  297. help
  298. Select this option, if you want to share the text segment of the
  299. Linux kernel between different VM guests. This reduces memory
  300. usage with lots of guests but greatly increases kernel size.
  301. You should only select this option if you know what you are
  302. doing and want to exploit this feature.
  303. config CMM
  304. tristate "Cooperative memory management"
  305. help
  306. Select this option, if you want to enable the kernel interface
  307. to reduce the memory size of the system. This is accomplished
  308. by allocating pages of memory and put them "on hold". This only
  309. makes sense for a system running under VM where the unused pages
  310. will be reused by VM for other guest systems. The interface
  311. allows an external monitor to balance memory of many systems.
  312. Everybody who wants to run Linux under VM should select this
  313. option.
  314. config CMM_PROC
  315. bool "/proc interface to cooperative memory management"
  316. depends on CMM
  317. help
  318. Select this option to enable the /proc interface to the
  319. cooperative memory management.
  320. config CMM_IUCV
  321. bool "IUCV special message interface to cooperative memory management"
  322. depends on CMM && (SMSGIUCV=y || CMM=SMSGIUCV)
  323. help
  324. Select this option to enable the special message interface to
  325. the cooperative memory management.
  326. config VIRT_TIMER
  327. bool "Virtual CPU timer support"
  328. help
  329. This provides a kernel interface for virtual CPU timers.
  330. Default is disabled.
  331. config VIRT_CPU_ACCOUNTING
  332. bool "Base user process accounting on virtual cpu timer"
  333. depends on VIRT_TIMER
  334. help
  335. Select this option to use CPU timer deltas to do user
  336. process accounting.
  337. config APPLDATA_BASE
  338. bool "Linux - VM Monitor Stream, base infrastructure"
  339. depends on PROC_FS && VIRT_TIMER=y
  340. help
  341. This provides a kernel interface for creating and updating z/VM APPLDATA
  342. monitor records. The monitor records are updated at certain time
  343. intervals, once the timer is started.
  344. Writing 1 or 0 to /proc/appldata/timer starts(1) or stops(0) the timer,
  345. i.e. enables or disables monitoring on the Linux side.
  346. A custom interval value (in seconds) can be written to
  347. /proc/appldata/interval.
  348. Defaults are 60 seconds interval and timer off.
  349. The /proc entries can also be read from, showing the current settings.
  350. config APPLDATA_MEM
  351. tristate "Monitor memory management statistics"
  352. depends on APPLDATA_BASE && VM_EVENT_COUNTERS
  353. help
  354. This provides memory management related data to the Linux - VM Monitor
  355. Stream, like paging/swapping rate, memory utilisation, etc.
  356. Writing 1 or 0 to /proc/appldata/memory creates(1) or removes(0) a z/VM
  357. APPLDATA monitor record, i.e. enables or disables monitoring this record
  358. on the z/VM side.
  359. Default is disabled.
  360. The /proc entry can also be read from, showing the current settings.
  361. This can also be compiled as a module, which will be called
  362. appldata_mem.o.
  363. config APPLDATA_OS
  364. tristate "Monitor OS statistics"
  365. depends on APPLDATA_BASE
  366. help
  367. This provides OS related data to the Linux - VM Monitor Stream, like
  368. CPU utilisation, etc.
  369. Writing 1 or 0 to /proc/appldata/os creates(1) or removes(0) a z/VM
  370. APPLDATA monitor record, i.e. enables or disables monitoring this record
  371. on the z/VM side.
  372. Default is disabled.
  373. This can also be compiled as a module, which will be called
  374. appldata_os.o.
  375. config APPLDATA_NET_SUM
  376. tristate "Monitor overall network statistics"
  377. depends on APPLDATA_BASE
  378. help
  379. This provides network related data to the Linux - VM Monitor Stream,
  380. currently there is only a total sum of network I/O statistics, no
  381. per-interface data.
  382. Writing 1 or 0 to /proc/appldata/net_sum creates(1) or removes(0) a z/VM
  383. APPLDATA monitor record, i.e. enables or disables monitoring this record
  384. on the z/VM side.
  385. Default is disabled.
  386. This can also be compiled as a module, which will be called
  387. appldata_net_sum.o.
  388. config NO_IDLE_HZ
  389. bool "No HZ timer ticks in idle"
  390. help
  391. Switches the regular HZ timer off when the system is going idle.
  392. This helps z/VM to detect that the Linux system is idle. VM can
  393. then "swap-out" this guest which reduces memory usage. It also
  394. reduces the overhead of idle systems.
  395. The HZ timer can be switched on/off via /proc/sys/kernel/hz_timer.
  396. hz_timer=0 means HZ timer is disabled. hz_timer=1 means HZ
  397. timer is active.
  398. config NO_IDLE_HZ_INIT
  399. bool "HZ timer in idle off by default"
  400. depends on NO_IDLE_HZ
  401. help
  402. The HZ timer is switched off in idle by default. That means the
  403. HZ timer is already disabled at boot time.
  404. config S390_HYPFS_FS
  405. bool "s390 hypervisor file system support"
  406. select SYS_HYPERVISOR
  407. default y
  408. help
  409. This is a virtual file system intended to provide accounting
  410. information in an s390 hypervisor environment.
  411. config KEXEC
  412. bool "kexec system call"
  413. help
  414. kexec is a system call that implements the ability to shutdown your
  415. current kernel, and to start another kernel. It is like a reboot
  416. but is independent of hardware/microcode support.
  417. endmenu
  418. source "net/Kconfig"
  419. config PCMCIA
  420. bool
  421. default n
  422. source "drivers/base/Kconfig"
  423. source "drivers/connector/Kconfig"
  424. source "drivers/scsi/Kconfig"
  425. source "drivers/s390/Kconfig"
  426. source "drivers/net/Kconfig"
  427. source "fs/Kconfig"
  428. menu "Instrumentation Support"
  429. source "arch/s390/oprofile/Kconfig"
  430. config KPROBES
  431. bool "Kprobes (EXPERIMENTAL)"
  432. depends on EXPERIMENTAL && MODULES
  433. help
  434. Kprobes allows you to trap at almost any kernel address and
  435. execute a callback function. register_kprobe() establishes
  436. a probepoint and specifies the callback. Kprobes is useful
  437. for kernel debugging, non-intrusive instrumentation and testing.
  438. If in doubt, say "N".
  439. endmenu
  440. source "arch/s390/Kconfig.debug"
  441. source "security/Kconfig"
  442. source "crypto/Kconfig"
  443. source "lib/Kconfig"