1 Documentation for /proc/sys/kernel/* kernel version 2.2.10
2 (c) 1998, 1999, Rik van Riel <riel@nl.linux.org>
3 (c) 2009, Shen Feng<shen@cn.fujitsu.com>
5 For general info and legal blurb, please look in README.
7 ==============================================================
9 This file contains documentation for the sysctl files in
10 /proc/sys/kernel/ and is valid for Linux kernel version 2.2.
12 The files in this directory can be used to tune and monitor
13 miscellaneous and general things in the operation of the Linux
14 kernel. Since some of the files _can_ be used to screw up your
15 system, it is advisable to read both documentation and source
16 before actually making adjustments.
18 Currently, these files might (depending on your configuration)
19 show up in /proc/sys/kernel:
24 - bootloader_type [ X86 only ]
25 - bootloader_version [ X86 only ]
26 - callhome [ S390 only ]
38 - kstack_depth_to_print [ X86 only ]
40 - modprobe ==> Documentation/debugging-modules.txt
52 - panic_on_unrecovered_nmi
53 - panic_on_stackoverflow
55 - powersave-nap [ PPC only ]
59 - printk_ratelimit_burst
61 - real-root-dev ==> Documentation/initrd.txt
62 - reboot-cmd [ SPARC only ]
67 - sg-big-buff [ generic SCSI device (sg) ]
73 - stop-a [ SPARC only ]
74 - sysrq ==> Documentation/sysrq.txt
80 ==============================================================
84 highwater lowwater frequency
86 If BSD-style process accounting is enabled these values control
87 its behaviour. If free space on filesystem where the log lives
88 goes below <lowwater>% accounting suspends. If free space gets
89 above <highwater>% accounting resumes. <Frequency> determines
90 how often do we check the amount of free space (value is in
93 That is, suspend accounting if there left <= 2% free; resume it
94 if we got >=4%; consider information about amount of free space
97 ==============================================================
103 See Doc*/kernel/power/video.txt, it allows mode of video boot to be
106 ==============================================================
110 Enables/Disables automatic recomputing of msgmni upon memory add/remove
111 or upon ipc namespace creation/removal (see the msgmni description
112 above). Echoing "1" into this file enables msgmni automatic recomputing.
113 Echoing "0" turns it off. auto_msgmni default value is 1.
116 ==============================================================
120 x86 bootloader identification
122 This gives the bootloader type number as indicated by the bootloader,
123 shifted left by 4, and OR'd with the low four bits of the bootloader
124 version. The reason for this encoding is that this used to match the
125 type_of_loader field in the kernel header; the encoding is kept for
126 backwards compatibility. That is, if the full bootloader type number
127 is 0x15 and the full version number is 0x234, this file will contain
128 the value 340 = 0x154.
130 See the type_of_loader and ext_loader_type fields in
131 Documentation/x86/boot.txt for additional information.
133 ==============================================================
137 x86 bootloader version
139 The complete bootloader version number. In the example above, this
140 file will contain the value 564 = 0x234.
142 See the type_of_loader and ext_loader_ver fields in
143 Documentation/x86/boot.txt for additional information.
145 ==============================================================
149 Controls the kernel's callhome behavior in case of a kernel panic.
151 The s390 hardware allows an operating system to send a notification
152 to a service organization (callhome) in case of an operating system panic.
154 When the value in this file is 0 (which is the default behavior)
155 nothing happens in case of a kernel panic. If this value is set to "1"
156 the complete kernel oops message is send to the IBM customer service
157 organization in case the mainframe the Linux operating system is running
158 on has a service contract with IBM.
160 ==============================================================
164 Highest valid capability of the running kernel. Exports
165 CAP_LAST_CAP from the kernel.
167 ==============================================================
171 core_pattern is used to specify a core dumpfile pattern name.
172 . max length 128 characters; default value is "core"
173 . core_pattern is used as a pattern template for the output filename;
174 certain string patterns (beginning with '%') are substituted with
176 . backward compatibility with core_uses_pid:
177 If core_pattern does not include "%p" (default does not)
178 and core_uses_pid is set, then .PID will be appended to
180 . corename format specifiers:
181 %<NUL> '%' is dropped
189 %e executable filename (may be shortened)
191 %<OTHER> both are dropped
192 . If the first character of the pattern is a '|', the kernel will treat
193 the rest of the pattern as a command to run. The core dump will be
194 written to the standard input of that program instead of to a file.
196 ==============================================================
200 This sysctl is only applicable when core_pattern is configured to pipe
201 core files to a user space helper (when the first character of
202 core_pattern is a '|', see above). When collecting cores via a pipe
203 to an application, it is occasionally useful for the collecting
204 application to gather data about the crashing process from its
205 /proc/pid directory. In order to do this safely, the kernel must wait
206 for the collecting process to exit, so as not to remove the crashing
207 processes proc files prematurely. This in turn creates the
208 possibility that a misbehaving userspace collecting process can block
209 the reaping of a crashed process simply by never exiting. This sysctl
210 defends against that. It defines how many concurrent crashing
211 processes may be piped to user space applications in parallel. If
212 this value is exceeded, then those crashing processes above that value
213 are noted via the kernel log and their cores are skipped. 0 is a
214 special value, indicating that unlimited processes may be captured in
215 parallel, but that no waiting will take place (i.e. the collecting
216 process is not guaranteed access to /proc/<crashing pid>/). This
219 ==============================================================
223 The default coredump filename is "core". By setting
224 core_uses_pid to 1, the coredump filename becomes core.PID.
225 If core_pattern does not include "%p" (default does not)
226 and core_uses_pid is set, then .PID will be appended to
229 ==============================================================
233 When the value in this file is 0, ctrl-alt-del is trapped and
234 sent to the init(1) program to handle a graceful restart.
235 When, however, the value is > 0, Linux's reaction to a Vulcan
236 Nerve Pinch (tm) will be an immediate reboot, without even
237 syncing its dirty buffers.
239 Note: when a program (like dosemu) has the keyboard in 'raw'
240 mode, the ctrl-alt-del is intercepted by the program before it
241 ever reaches the kernel tty layer, and it's up to the program
242 to decide what to do with it.
244 ==============================================================
248 This toggle indicates whether unprivileged users are prevented
249 from using dmesg(8) to view messages from the kernel's log buffer.
250 When dmesg_restrict is set to (0) there are no restrictions. When
251 dmesg_restrict is set set to (1), users must have CAP_SYSLOG to use
254 The kernel config option CONFIG_SECURITY_DMESG_RESTRICT sets the
255 default value of dmesg_restrict.
257 ==============================================================
259 domainname & hostname:
261 These files can be used to set the NIS/YP domainname and the
262 hostname of your box in exactly the same way as the commands
263 domainname and hostname, i.e.:
264 # echo "darkstar" > /proc/sys/kernel/hostname
265 # echo "mydomain" > /proc/sys/kernel/domainname
266 has the same effect as
267 # hostname "darkstar"
268 # domainname "mydomain"
270 Note, however, that the classic darkstar.frop.org has the
271 hostname "darkstar" and DNS (Internet Domain Name Server)
272 domainname "frop.org", not to be confused with the NIS (Network
273 Information Service) or YP (Yellow Pages) domainname. These two
274 domain names are in general different. For a detailed discussion
275 see the hostname(1) man page.
277 ==============================================================
281 Path for the hotplug policy agent.
282 Default value is "/sbin/hotplug".
284 ==============================================================
288 This toggle indicates whether restrictions are placed on
289 exposing kernel addresses via /proc and other interfaces. When
290 kptr_restrict is set to (0), there are no restrictions. When
291 kptr_restrict is set to (1), the default, kernel pointers
292 printed using the %pK format specifier will be replaced with 0's
293 unless the user has CAP_SYSLOG. When kptr_restrict is set to
294 (2), kernel pointers printed using %pK will be replaced with 0's
295 regardless of privileges.
297 ==============================================================
299 kstack_depth_to_print: (X86 only)
301 Controls the number of words to print when dumping the raw
304 ==============================================================
306 iso_cpu: (BFS CPU scheduler only).
308 This sets the percentage cpu that the unprivileged SCHED_ISO tasks can
309 run effectively at realtime priority, averaged over a rolling five
310 seconds over the -whole- system, meaning all cpus.
312 Set to 70 (percent) by default.
314 ==============================================================
318 This flag controls the L2 cache of G3 processor boards. If
319 0, the cache is disabled. Enabled if nonzero.
321 ==============================================================
325 A toggle value indicating if modules are allowed to be loaded
326 in an otherwise modular kernel. This toggle defaults to off
327 (0), but can be set true (1). Once true, modules can be
328 neither loaded nor unloaded, and the toggle cannot be set back
331 ==============================================================
335 Enables/Disables the NMI watchdog on x86 systems. When the value is
336 non-zero the NMI watchdog is enabled and will continuously test all
337 online cpus to determine whether or not they are still functioning
338 properly. Currently, passing "nmi_watchdog=" parameter at boot time is
339 required for this function to work.
341 If LAPIC NMI watchdog method is in use (nmi_watchdog=2 kernel
342 parameter), the NMI watchdog shares registers with oprofile. By
343 disabling the NMI watchdog, oprofile may have more registers to
346 ==============================================================
348 osrelease, ostype & version:
355 #5 Wed Feb 25 21:49:24 MET 1998
357 The files osrelease and ostype should be clear enough. Version
358 needs a little more clarification however. The '#5' means that
359 this is the fifth kernel built from this source base and the
360 date behind it indicates the time the kernel was built.
361 The only way to tune these values is to rebuild the kernel :-)
363 ==============================================================
365 overflowgid & overflowuid:
367 if your architecture did not always support 32-bit UIDs (i.e. arm,
368 i386, m68k, sh, and sparc32), a fixed UID and GID will be returned to
369 applications that use the old 16-bit UID/GID system calls, if the
370 actual UID or GID would exceed 65535.
372 These sysctls allow you to change the value of the fixed UID and GID.
373 The default is 65534.
375 ==============================================================
379 The value in this file represents the number of seconds the kernel
380 waits before rebooting on a panic. When you use the software watchdog,
381 the recommended setting is 60.
383 ==============================================================
385 panic_on_unrecovered_nmi:
387 The default Linux behaviour on an NMI of either memory or unknown is
388 to continue operation. For many environments such as scientific
389 computing it is preferable that the box is taken out and the error
390 dealt with than an uncorrected parity/ECC error get propagated.
392 A small number of systems do generate NMI's for bizarre random reasons
393 such as power management so the default is off. That sysctl works like
394 the existing panic controls already in that directory.
396 ==============================================================
400 Controls the kernel's behaviour when an oops or BUG is encountered.
402 0: try to continue operation
404 1: panic immediately. If the `panic' sysctl is also non-zero then the
405 machine will be rebooted.
407 ==============================================================
409 panic_on_stackoverflow:
411 Controls the kernel's behavior when detecting the overflows of
412 kernel, IRQ and exception stacks except a user stack.
413 This file shows up if CONFIG_DEBUG_STACKOVERFLOW is enabled.
415 0: try to continue operation.
417 1: panic immediately.
419 ==============================================================
424 PID allocation wrap value. When the kernel's next PID value
425 reaches this value, it wraps back to a minimum PID value.
426 PIDs of value pid_max or larger are not allocated.
428 ==============================================================
432 The last pid allocated in the current (the one task using this sysctl
433 lives in) pid namespace. When selecting a pid for a next task on fork
434 kernel tries to allocate a number starting from this one.
436 ==============================================================
438 powersave-nap: (PPC only)
440 If set, Linux-PPC will use the 'nap' mode of powersaving,
441 otherwise the 'doze' mode will be used.
443 ==============================================================
447 The four values in printk denote: console_loglevel,
448 default_message_loglevel, minimum_console_loglevel and
449 default_console_loglevel respectively.
451 These values influence printk() behavior when printing or
452 logging error messages. See 'man 2 syslog' for more info on
453 the different loglevels.
455 - console_loglevel: messages with a higher priority than
456 this will be printed to the console
457 - default_message_loglevel: messages without an explicit priority
458 will be printed with this priority
459 - minimum_console_loglevel: minimum (highest) value to which
460 console_loglevel can be set
461 - default_console_loglevel: default value for console_loglevel
463 ==============================================================
467 Delay each printk message in printk_delay milliseconds
469 Value from 0 - 10000 is allowed.
471 ==============================================================
475 Some warning messages are rate limited. printk_ratelimit specifies
476 the minimum length of time between these messages (in jiffies), by
477 default we allow one every 5 seconds.
479 A value of 0 will disable rate limiting.
481 ==============================================================
483 printk_ratelimit_burst:
485 While long term we enforce one message per printk_ratelimit
486 seconds, we do allow a burst of messages to pass through.
487 printk_ratelimit_burst specifies the number of messages we can
488 send before ratelimiting kicks in.
490 ==============================================================
494 This option can be used to select the type of process address
495 space randomization that is used in the system, for architectures
496 that support this feature.
498 0 - Turn the process address space randomization off. This is the
499 default for architectures that do not support this feature anyways,
500 and kernels that are booted with the "norandmaps" parameter.
502 1 - Make the addresses of mmap base, stack and VDSO page randomized.
503 This, among other things, implies that shared libraries will be
504 loaded to random addresses. Also for PIE-linked binaries, the
505 location of code start is randomized. This is the default if the
506 CONFIG_COMPAT_BRK option is enabled.
508 2 - Additionally enable heap randomization. This is the default if
509 CONFIG_COMPAT_BRK is disabled.
511 There are a few legacy applications out there (such as some ancient
512 versions of libc.so.5 from 1996) that assume that brk area starts
513 just after the end of the code+bss. These applications break when
514 start of the brk area is randomized. There are however no known
515 non-legacy applications that would be broken this way, so for most
516 systems it is safe to choose full randomization.
518 Systems with ancient and/or broken binaries should be configured
519 with CONFIG_COMPAT_BRK enabled, which excludes the heap from process
520 address space randomization.
522 ==============================================================
524 reboot-cmd: (Sparc only)
526 ??? This seems to be a way to give an argument to the Sparc
527 ROM/Flash boot loader. Maybe to tell it what to do after
530 ==============================================================
532 rr_interval: (BFS CPU scheduler only)
534 This is the smallest duration that any cpu process scheduling unit
535 will run for. Increasing this value can increase throughput of cpu
536 bound tasks substantially but at the expense of increased latencies
537 overall. Conversely decreasing it will decrease average and maximum
538 latencies but at the expense of throughput. This value is in
539 milliseconds and the default value chosen depends on the number of
540 cpus available at scheduler initialisation with a minimum of 6.
542 Valid values are from 1-1000.
544 ==============================================================
546 rtsig-max & rtsig-nr:
548 The file rtsig-max can be used to tune the maximum number
549 of POSIX realtime (queued) signals that can be outstanding
552 rtsig-nr shows the number of RT signals currently queued.
554 ==============================================================
558 This file shows the size of the generic SCSI (sg) buffer.
559 You can't tune it just yet, but you could change it on
560 compile time by editing include/scsi/sg.h and changing
561 the value of SG_BIG_BUFF.
563 There shouldn't be any reason to change this value. If
564 you can come up with one, you probably know what you
567 ==============================================================
571 This value can be used to query and set the run time limit
572 on the maximum shared memory segment size that can be created.
573 Shared memory segments up to 1Gb are now supported in the
574 kernel. This value defaults to SHMMAX.
576 ==============================================================
580 Linux lets you set resource limits, including how much memory one
581 process can consume, via setrlimit(2). Unfortunately, shared memory
582 segments are allowed to exist without association with any process, and
583 thus might not be counted against any resource limits. If enabled,
584 shared memory segments are automatically destroyed when their attach
585 count becomes zero after a detach or a process termination. It will
586 also destroy segments that were created, but never attached to, on exit
587 from the process. The only use left for IPC_RMID is to immediately
588 destroy an unattached segment. Of course, this breaks the way things are
589 defined, so some applications might stop working. Note that this
590 feature will do you no good unless you also configure your resource
591 limits (in particular, RLIMIT_AS and RLIMIT_NPROC). Most systems don't
594 Note that if you change this from 0 to 1, already created segments
595 without users and with a dead originative process will be destroyed.
597 ==============================================================
601 This value can be used to lower the softlockup tolerance threshold. The
602 default threshold is 60 seconds. If a cpu is locked up for 60 seconds,
603 the kernel complains. Valid values are 1-60 seconds. Setting this
604 tunable to zero will disable the softlockup detection altogether.
606 ==============================================================
610 Non-zero if the kernel has been tainted. Numeric values, which
611 can be ORed together:
613 1 - A module with a non-GPL license has been loaded, this
614 includes modules with no license.
615 Set by modutils >= 2.4.9 and module-init-tools.
616 2 - A module was force loaded by insmod -f.
617 Set by modutils >= 2.4.9 and module-init-tools.
618 4 - Unsafe SMP processors: SMP with CPUs not designed for SMP.
619 8 - A module was forcibly unloaded from the system by rmmod -f.
620 16 - A hardware machine check error occurred on the system.
621 32 - A bad page was discovered on the system.
622 64 - The user has asked that the system be marked "tainted". This
623 could be because they are running software that directly modifies
624 the hardware, or for other reasons.
625 128 - The system has died.
626 256 - The ACPI DSDT has been overridden with one supplied by the user
627 instead of using the one provided by the hardware.
628 512 - A kernel warning has occurred.
629 1024 - A module from drivers/staging was loaded.
630 2048 - The system is working around a severe firmware bug.
631 4096 - An out-of-tree module has been loaded.
633 ==============================================================
637 The value in this file affects behavior of handling NMI. When the
638 value is non-zero, unknown NMI is trapped and then panic occurs. At
639 that time, kernel debugging information is displayed on console.
641 NMI switch that most IA32 servers have fires unknown NMI up, for
642 example. If a system hangs up, try pressing the NMI switch.