blob: 1c7fb0a94e28a84cf6a8c2b56c82babe9fa34d64 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001Documentation for /proc/sys/kernel/* kernel version 2.2.10
2 (c) 1998, 1999, Rik van Riel <riel@nl.linux.org>
Shen Feng760df932009-04-02 16:57:20 -07003 (c) 2009, Shen Feng<shen@cn.fujitsu.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004
5For general info and legal blurb, please look in README.
6
7==============================================================
8
9This file contains documentation for the sysctl files in
10/proc/sys/kernel/ and is valid for Linux kernel version 2.2.
11
12The files in this directory can be used to tune and monitor
13miscellaneous and general things in the operation of the Linux
14kernel. Since some of the files _can_ be used to screw up your
15system, it is advisable to read both documentation and source
16before actually making adjustments.
17
18Currently, these files might (depending on your configuration)
19show up in /proc/sys/kernel:
Borislav Petkov807094c2011-07-23 10:39:29 -070020
Linus Torvalds1da177e2005-04-16 15:20:36 -070021- acct
Borislav Petkov807094c2011-07-23 10:39:29 -070022- acpi_video_flags
23- auto_msgmni
H. Peter Anvind75757a2009-12-11 14:23:44 -080024- bootloader_type [ X86 only ]
25- bootloader_version [ X86 only ]
Hans-Joachim Pichtc114728a2009-09-11 10:28:47 +020026- callhome [ S390 only ]
Linus Torvalds1da177e2005-04-16 15:20:36 -070027- core_pattern
Neil Hormana2939802009-09-23 15:56:56 -070028- core_pipe_limit
Linus Torvalds1da177e2005-04-16 15:20:36 -070029- core_uses_pid
30- ctrl-alt-del
Dan Rosenbergeaf06b22010-11-11 14:05:18 -080031- dmesg_restrict
Linus Torvalds1da177e2005-04-16 15:20:36 -070032- domainname
33- hostname
34- hotplug
Dan Rosenberg455cd5a2011-01-12 16:59:41 -080035- kptr_restrict
Chuck Ebbert0741f4d2006-12-07 02:14:11 +010036- kstack_depth_to_print [ X86 only ]
Linus Torvalds1da177e2005-04-16 15:20:36 -070037- l2cr [ PPC only ]
Michael Opdenackerac76cff2008-02-13 15:03:32 -080038- modprobe ==> Documentation/debugging-modules.txt
Kees Cook3d433212009-04-02 15:49:29 -070039- modules_disabled
Linus Torvalds1da177e2005-04-16 15:20:36 -070040- msgmax
41- msgmnb
42- msgmni
Shen Feng760df932009-04-02 16:57:20 -070043- nmi_watchdog
Linus Torvalds1da177e2005-04-16 15:20:36 -070044- osrelease
45- ostype
46- overflowgid
47- overflowuid
48- panic
Borislav Petkov807094c2011-07-23 10:39:29 -070049- panic_on_oops
50- panic_on_unrecovered_nmi
Linus Torvalds1da177e2005-04-16 15:20:36 -070051- pid_max
52- powersave-nap [ PPC only ]
53- printk
Borislav Petkov807094c2011-07-23 10:39:29 -070054- printk_delay
55- printk_ratelimit
56- printk_ratelimit_burst
Jiri Kosina1ec7fd52008-02-09 23:24:08 +010057- randomize_va_space
Linus Torvalds1da177e2005-04-16 15:20:36 -070058- real-root-dev ==> Documentation/initrd.txt
59- reboot-cmd [ SPARC only ]
60- rtsig-max
61- rtsig-nr
62- sem
63- sg-big-buff [ generic SCSI device (sg) ]
64- shmall
65- shmmax [ sysv ipc ]
66- shmmni
Borislav Petkov807094c2011-07-23 10:39:29 -070067- softlockup_thresh
Linus Torvalds1da177e2005-04-16 15:20:36 -070068- stop-a [ SPARC only ]
69- sysrq ==> Documentation/sysrq.txt
70- tainted
71- threads-max
Shen Feng760df932009-04-02 16:57:20 -070072- unknown_nmi_panic
Linus Torvalds1da177e2005-04-16 15:20:36 -070073- version
74
75==============================================================
76
77acct:
78
79highwater lowwater frequency
80
81If BSD-style process accounting is enabled these values control
82its behaviour. If free space on filesystem where the log lives
83goes below <lowwater>% accounting suspends. If free space gets
84above <highwater>% accounting resumes. <Frequency> determines
85how often do we check the amount of free space (value is in
86seconds). Default:
874 2 30
88That is, suspend accounting if there left <= 2% free; resume it
89if we got >=4%; consider information about amount of free space
90valid for 30 seconds.
91
92==============================================================
93
Borislav Petkov807094c2011-07-23 10:39:29 -070094acpi_video_flags:
95
96flags
97
98See Doc*/kernel/power/video.txt, it allows mode of video boot to be
99set during run time.
100
101==============================================================
102
103auto_msgmni:
104
105Enables/Disables automatic recomputing of msgmni upon memory add/remove
106or upon ipc namespace creation/removal (see the msgmni description
107above). Echoing "1" into this file enables msgmni automatic recomputing.
108Echoing "0" turns it off. auto_msgmni default value is 1.
109
110
111==============================================================
112
H. Peter Anvind75757a2009-12-11 14:23:44 -0800113bootloader_type:
114
115x86 bootloader identification
116
117This gives the bootloader type number as indicated by the bootloader,
118shifted left by 4, and OR'd with the low four bits of the bootloader
119version. The reason for this encoding is that this used to match the
120type_of_loader field in the kernel header; the encoding is kept for
121backwards compatibility. That is, if the full bootloader type number
122is 0x15 and the full version number is 0x234, this file will contain
123the value 340 = 0x154.
124
125See the type_of_loader and ext_loader_type fields in
126Documentation/x86/boot.txt for additional information.
127
128==============================================================
129
130bootloader_version:
131
132x86 bootloader version
133
134The complete bootloader version number. In the example above, this
135file will contain the value 564 = 0x234.
136
137See the type_of_loader and ext_loader_ver fields in
138Documentation/x86/boot.txt for additional information.
139
140==============================================================
141
Hans-Joachim Pichtc114728a2009-09-11 10:28:47 +0200142callhome:
143
144Controls the kernel's callhome behavior in case of a kernel panic.
145
146The s390 hardware allows an operating system to send a notification
147to a service organization (callhome) in case of an operating system panic.
148
149When the value in this file is 0 (which is the default behavior)
150nothing happens in case of a kernel panic. If this value is set to "1"
151the complete kernel oops message is send to the IBM customer service
152organization in case the mainframe the Linux operating system is running
153on has a service contract with IBM.
154
155==============================================================
156
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157core_pattern:
158
159core_pattern is used to specify a core dumpfile pattern name.
Matthias Urlichscd081042006-10-11 01:21:57 -0700160. max length 128 characters; default value is "core"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161. core_pattern is used as a pattern template for the output filename;
162 certain string patterns (beginning with '%') are substituted with
163 their actual values.
164. backward compatibility with core_uses_pid:
165 If core_pattern does not include "%p" (default does not)
166 and core_uses_pid is set, then .PID will be appended to
167 the filename.
168. corename format specifiers:
169 %<NUL> '%' is dropped
170 %% output one '%'
171 %p pid
172 %u uid
173 %g gid
174 %s signal number
175 %t UNIX time of dump
176 %h hostname
Jiri Slaby57cc0832011-05-26 16:25:46 -0700177 %e executable filename (may be shortened)
178 %E executable path
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 %<OTHER> both are dropped
Matthias Urlichscd081042006-10-11 01:21:57 -0700180. If the first character of the pattern is a '|', the kernel will treat
181 the rest of the pattern as a command to run. The core dump will be
182 written to the standard input of that program instead of to a file.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183
184==============================================================
185
Neil Hormana2939802009-09-23 15:56:56 -0700186core_pipe_limit:
187
Borislav Petkov807094c2011-07-23 10:39:29 -0700188This sysctl is only applicable when core_pattern is configured to pipe
189core files to a user space helper (when the first character of
190core_pattern is a '|', see above). When collecting cores via a pipe
191to an application, it is occasionally useful for the collecting
192application to gather data about the crashing process from its
193/proc/pid directory. In order to do this safely, the kernel must wait
194for the collecting process to exit, so as not to remove the crashing
195processes proc files prematurely. This in turn creates the
196possibility that a misbehaving userspace collecting process can block
197the reaping of a crashed process simply by never exiting. This sysctl
198defends against that. It defines how many concurrent crashing
199processes may be piped to user space applications in parallel. If
200this value is exceeded, then those crashing processes above that value
201are noted via the kernel log and their cores are skipped. 0 is a
202special value, indicating that unlimited processes may be captured in
203parallel, but that no waiting will take place (i.e. the collecting
204process is not guaranteed access to /proc/<crashing pid>/). This
205value defaults to 0.
Neil Hormana2939802009-09-23 15:56:56 -0700206
207==============================================================
208
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209core_uses_pid:
210
211The default coredump filename is "core". By setting
212core_uses_pid to 1, the coredump filename becomes core.PID.
213If core_pattern does not include "%p" (default does not)
214and core_uses_pid is set, then .PID will be appended to
215the filename.
216
217==============================================================
218
219ctrl-alt-del:
220
221When the value in this file is 0, ctrl-alt-del is trapped and
222sent to the init(1) program to handle a graceful restart.
223When, however, the value is > 0, Linux's reaction to a Vulcan
224Nerve Pinch (tm) will be an immediate reboot, without even
225syncing its dirty buffers.
226
227Note: when a program (like dosemu) has the keyboard in 'raw'
228mode, the ctrl-alt-del is intercepted by the program before it
229ever reaches the kernel tty layer, and it's up to the program
230to decide what to do with it.
231
232==============================================================
233
Dan Rosenbergeaf06b22010-11-11 14:05:18 -0800234dmesg_restrict:
235
Borislav Petkov807094c2011-07-23 10:39:29 -0700236This toggle indicates whether unprivileged users are prevented
237from using dmesg(8) to view messages from the kernel's log buffer.
238When dmesg_restrict is set to (0) there are no restrictions. When
Serge E. Hallyn38ef4c22010-12-08 15:19:01 +0000239dmesg_restrict is set set to (1), users must have CAP_SYSLOG to use
Dan Rosenbergeaf06b22010-11-11 14:05:18 -0800240dmesg(8).
241
Borislav Petkov807094c2011-07-23 10:39:29 -0700242The kernel config option CONFIG_SECURITY_DMESG_RESTRICT sets the
243default value of dmesg_restrict.
Dan Rosenbergeaf06b22010-11-11 14:05:18 -0800244
245==============================================================
246
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247domainname & hostname:
248
249These files can be used to set the NIS/YP domainname and the
250hostname of your box in exactly the same way as the commands
251domainname and hostname, i.e.:
252# echo "darkstar" > /proc/sys/kernel/hostname
253# echo "mydomain" > /proc/sys/kernel/domainname
254has the same effect as
255# hostname "darkstar"
256# domainname "mydomain"
257
258Note, however, that the classic darkstar.frop.org has the
259hostname "darkstar" and DNS (Internet Domain Name Server)
260domainname "frop.org", not to be confused with the NIS (Network
261Information Service) or YP (Yellow Pages) domainname. These two
262domain names are in general different. For a detailed discussion
263see the hostname(1) man page.
264
265==============================================================
266
267hotplug:
268
269Path for the hotplug policy agent.
270Default value is "/sbin/hotplug".
271
272==============================================================
273
Dan Rosenberg455cd5a2011-01-12 16:59:41 -0800274kptr_restrict:
275
276This toggle indicates whether restrictions are placed on
277exposing kernel addresses via /proc and other interfaces. When
278kptr_restrict is set to (0), there are no restrictions. When
279kptr_restrict is set to (1), the default, kernel pointers
280printed using the %pK format specifier will be replaced with 0's
281unless the user has CAP_SYSLOG. When kptr_restrict is set to
282(2), kernel pointers printed using %pK will be replaced with 0's
283regardless of privileges.
284
285==============================================================
286
Chuck Ebbert0741f4d2006-12-07 02:14:11 +0100287kstack_depth_to_print: (X86 only)
288
289Controls the number of words to print when dumping the raw
290kernel stack.
291
292==============================================================
293
Borislav Petkov807094c2011-07-23 10:39:29 -0700294l2cr: (PPC only)
295
296This flag controls the L2 cache of G3 processor boards. If
2970, the cache is disabled. Enabled if nonzero.
298
299==============================================================
300
Kees Cook3d433212009-04-02 15:49:29 -0700301modules_disabled:
302
303A toggle value indicating if modules are allowed to be loaded
304in an otherwise modular kernel. This toggle defaults to off
305(0), but can be set true (1). Once true, modules can be
306neither loaded nor unloaded, and the toggle cannot be set back
307to false.
308
309==============================================================
310
Borislav Petkov807094c2011-07-23 10:39:29 -0700311nmi_watchdog:
312
313Enables/Disables the NMI watchdog on x86 systems. When the value is
314non-zero the NMI watchdog is enabled and will continuously test all
315online cpus to determine whether or not they are still functioning
316properly. Currently, passing "nmi_watchdog=" parameter at boot time is
317required for this function to work.
318
319If LAPIC NMI watchdog method is in use (nmi_watchdog=2 kernel
320parameter), the NMI watchdog shares registers with oprofile. By
321disabling the NMI watchdog, oprofile may have more registers to
322utilize.
323
324==============================================================
325
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326osrelease, ostype & version:
327
328# cat osrelease
3292.1.88
330# cat ostype
331Linux
332# cat version
333#5 Wed Feb 25 21:49:24 MET 1998
334
335The files osrelease and ostype should be clear enough. Version
336needs a little more clarification however. The '#5' means that
337this is the fifth kernel built from this source base and the
338date behind it indicates the time the kernel was built.
339The only way to tune these values is to rebuild the kernel :-)
340
341==============================================================
342
343overflowgid & overflowuid:
344
Borislav Petkov807094c2011-07-23 10:39:29 -0700345if your architecture did not always support 32-bit UIDs (i.e. arm,
346i386, m68k, sh, and sparc32), a fixed UID and GID will be returned to
347applications that use the old 16-bit UID/GID system calls, if the
348actual UID or GID would exceed 65535.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349
350These sysctls allow you to change the value of the fixed UID and GID.
351The default is 65534.
352
353==============================================================
354
355panic:
356
Borislav Petkov807094c2011-07-23 10:39:29 -0700357The value in this file represents the number of seconds the kernel
358waits before rebooting on a panic. When you use the software watchdog,
359the recommended setting is 60.
360
361==============================================================
362
363panic_on_unrecovered_nmi:
364
365The default Linux behaviour on an NMI of either memory or unknown is
366to continue operation. For many environments such as scientific
367computing it is preferable that the box is taken out and the error
368dealt with than an uncorrected parity/ECC error get propagated.
369
370A small number of systems do generate NMI's for bizarre random reasons
371such as power management so the default is off. That sysctl works like
372the existing panic controls already in that directory.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373
374==============================================================
375
376panic_on_oops:
377
378Controls the kernel's behaviour when an oops or BUG is encountered.
379
3800: try to continue operation
381
Matt LaPlantea982ac02007-05-09 07:35:06 +02003821: panic immediately. If the `panic' sysctl is also non-zero then the
Maxime Bizon8b23d04d2006-08-05 12:14:32 -0700383 machine will be rebooted.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384
385==============================================================
386
387pid_max:
388
Robert P. J. Daybeb7dd82007-05-09 07:14:03 +0200389PID allocation wrap value. When the kernel's next PID value
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390reaches this value, it wraps back to a minimum PID value.
391PIDs of value pid_max or larger are not allocated.
392
393==============================================================
394
395powersave-nap: (PPC only)
396
397If set, Linux-PPC will use the 'nap' mode of powersaving,
398otherwise the 'doze' mode will be used.
399
400==============================================================
401
402printk:
403
404The four values in printk denote: console_loglevel,
405default_message_loglevel, minimum_console_loglevel and
406default_console_loglevel respectively.
407
408These values influence printk() behavior when printing or
409logging error messages. See 'man 2 syslog' for more info on
410the different loglevels.
411
412- console_loglevel: messages with a higher priority than
413 this will be printed to the console
Paul Bolle87889e12011-02-06 21:00:41 +0100414- default_message_loglevel: messages without an explicit priority
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 will be printed with this priority
416- minimum_console_loglevel: minimum (highest) value to which
417 console_loglevel can be set
418- default_console_loglevel: default value for console_loglevel
419
420==============================================================
421
Borislav Petkov807094c2011-07-23 10:39:29 -0700422printk_delay:
423
424Delay each printk message in printk_delay milliseconds
425
426Value from 0 - 10000 is allowed.
427
428==============================================================
429
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430printk_ratelimit:
431
432Some warning messages are rate limited. printk_ratelimit specifies
433the minimum length of time between these messages (in jiffies), by
434default we allow one every 5 seconds.
435
436A value of 0 will disable rate limiting.
437
438==============================================================
439
440printk_ratelimit_burst:
441
442While long term we enforce one message per printk_ratelimit
443seconds, we do allow a burst of messages to pass through.
444printk_ratelimit_burst specifies the number of messages we can
445send before ratelimiting kicks in.
446
447==============================================================
448
Borislav Petkov807094c2011-07-23 10:39:29 -0700449randomize_va_space:
Jiri Kosina1ec7fd52008-02-09 23:24:08 +0100450
451This option can be used to select the type of process address
452space randomization that is used in the system, for architectures
453that support this feature.
454
Horst Schirmeierb7f5ab62009-07-03 14:20:17 +02004550 - Turn the process address space randomization off. This is the
456 default for architectures that do not support this feature anyways,
457 and kernels that are booted with the "norandmaps" parameter.
Jiri Kosina1ec7fd52008-02-09 23:24:08 +0100458
4591 - Make the addresses of mmap base, stack and VDSO page randomized.
460 This, among other things, implies that shared libraries will be
Horst Schirmeierb7f5ab62009-07-03 14:20:17 +0200461 loaded to random addresses. Also for PIE-linked binaries, the
462 location of code start is randomized. This is the default if the
463 CONFIG_COMPAT_BRK option is enabled.
Jiri Kosina1ec7fd52008-02-09 23:24:08 +0100464
Horst Schirmeierb7f5ab62009-07-03 14:20:17 +02004652 - Additionally enable heap randomization. This is the default if
466 CONFIG_COMPAT_BRK is disabled.
467
468 There are a few legacy applications out there (such as some ancient
Jiri Kosina1ec7fd52008-02-09 23:24:08 +0100469 versions of libc.so.5 from 1996) that assume that brk area starts
Horst Schirmeierb7f5ab62009-07-03 14:20:17 +0200470 just after the end of the code+bss. These applications break when
471 start of the brk area is randomized. There are however no known
Jiri Kosina1ec7fd52008-02-09 23:24:08 +0100472 non-legacy applications that would be broken this way, so for most
Horst Schirmeierb7f5ab62009-07-03 14:20:17 +0200473 systems it is safe to choose full randomization.
474
475 Systems with ancient and/or broken binaries should be configured
476 with CONFIG_COMPAT_BRK enabled, which excludes the heap from process
477 address space randomization.
Jiri Kosina1ec7fd52008-02-09 23:24:08 +0100478
479==============================================================
480
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481reboot-cmd: (Sparc only)
482
483??? This seems to be a way to give an argument to the Sparc
484ROM/Flash boot loader. Maybe to tell it what to do after
485rebooting. ???
486
487==============================================================
488
489rtsig-max & rtsig-nr:
490
491The file rtsig-max can be used to tune the maximum number
492of POSIX realtime (queued) signals that can be outstanding
493in the system.
494
495rtsig-nr shows the number of RT signals currently queued.
496
497==============================================================
498
499sg-big-buff:
500
501This file shows the size of the generic SCSI (sg) buffer.
502You can't tune it just yet, but you could change it on
503compile time by editing include/scsi/sg.h and changing
504the value of SG_BIG_BUFF.
505
506There shouldn't be any reason to change this value. If
507you can come up with one, you probably know what you
508are doing anyway :)
509
510==============================================================
511
Borislav Petkov807094c2011-07-23 10:39:29 -0700512shmmax:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513
514This value can be used to query and set the run time limit
515on the maximum shared memory segment size that can be created.
Borislav Petkov807094c2011-07-23 10:39:29 -0700516Shared memory segments up to 1Gb are now supported in the
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517kernel. This value defaults to SHMMAX.
518
519==============================================================
520
Ravikiran G Thirumalaic4f3b632007-10-16 23:26:09 -0700521softlockup_thresh:
522
Andrew Mortonb4d19cc2008-09-22 13:57:51 -0700523This value can be used to lower the softlockup tolerance threshold. The
524default threshold is 60 seconds. If a cpu is locked up for 60 seconds,
525the kernel complains. Valid values are 1-60 seconds. Setting this
526tunable to zero will disable the softlockup detection altogether.
Ravikiran G Thirumalaic4f3b632007-10-16 23:26:09 -0700527
528==============================================================
529
Borislav Petkov807094c2011-07-23 10:39:29 -0700530tainted:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531
532Non-zero if the kernel has been tainted. Numeric values, which
533can be ORed together:
534
Greg Kroah-Hartmanbb206982008-10-17 15:01:07 -0700535 1 - A module with a non-GPL license has been loaded, this
536 includes modules with no license.
537 Set by modutils >= 2.4.9 and module-init-tools.
538 2 - A module was force loaded by insmod -f.
539 Set by modutils >= 2.4.9 and module-init-tools.
540 4 - Unsafe SMP processors: SMP with CPUs not designed for SMP.
541 8 - A module was forcibly unloaded from the system by rmmod -f.
542 16 - A hardware machine check error occurred on the system.
543 32 - A bad page was discovered on the system.
544 64 - The user has asked that the system be marked "tainted". This
545 could be because they are running software that directly modifies
546 the hardware, or for other reasons.
547 128 - The system has died.
548 256 - The ACPI DSDT has been overridden with one supplied by the user
549 instead of using the one provided by the hardware.
550 512 - A kernel warning has occurred.
5511024 - A module from drivers/staging was loaded.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552
Shen Feng760df932009-04-02 16:57:20 -0700553==============================================================
554
Shen Feng760df932009-04-02 16:57:20 -0700555unknown_nmi_panic:
556
Borislav Petkov807094c2011-07-23 10:39:29 -0700557The value in this file affects behavior of handling NMI. When the
558value is non-zero, unknown NMI is trapped and then panic occurs. At
559that time, kernel debugging information is displayed on console.
Shen Feng760df932009-04-02 16:57:20 -0700560
Borislav Petkov807094c2011-07-23 10:39:29 -0700561NMI switch that most IA32 servers have fires unknown NMI up, for
562example. If a system hangs up, try pressing the NMI switch.