1 .\" Copyright (C) 1994, 1995 by Daniel Quinlan (quinlan@yggdrasil.com)
2 .\" and Copyright (C) 2002-2008,2017 Michael Kerrisk <mtk.manpages@gmail.com>
3 .\" with networking additions from Alan Cox (A.Cox@swansea.ac.uk)
4 .\" and scsi additions from Michael Neuffer (neuffer@mail.uni-mainz.de)
5 .\" and sysctl additions from Andries Brouwer (aeb@cwi.nl)
6 .\" and System V IPC (as well as various other) additions from
7 .\" Michael Kerrisk <mtk.manpages@gmail.com>
9 .\" %%%LICENSE_START(GPLv2+_DOC_FULL)
10 .\" This is free documentation; you can redistribute it and/or
11 .\" modify it under the terms of the GNU General Public License as
12 .\" published by the Free Software Foundation; either version 2 of
13 .\" the License, or (at your option) any later version.
15 .\" The GNU General Public License's references to "object code"
16 .\" and "executables" are to be interpreted as the output of any
17 .\" document formatting or typesetting system, including
18 .\" intermediate and printed output.
20 .\" This manual is distributed in the hope that it will be useful,
21 .\" but WITHOUT ANY WARRANTY; without even the implied warranty of
22 .\" MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
23 .\" GNU General Public License for more details.
25 .\" You should have received a copy of the GNU General Public
26 .\" License along with this manual; if not, see
27 .\" <http://www.gnu.org/licenses/>.
30 .\" Modified 1995-05-17 by faith@cs.unc.edu
31 .\" Minor changes by aeb and Marty Leisner (leisner@sdsp.mc.xerox.com).
32 .\" Modified 1996-04-13, 1996-07-22 by aeb@cwi.nl
33 .\" Modified 2001-12-16 by rwhron@earthlink.net
34 .\" Modified 2002-07-13 by jbelton@shaw.ca
35 .\" Modified 2002-07-22, 2003-05-27, 2004-04-06, 2004-05-25
36 .\" by Michael Kerrisk <mtk.manpages@gmail.com>
37 .\" 2004-11-17, mtk -- updated notes on /proc/loadavg
38 .\" 2004-12-01, mtk, rtsig-max and rtsig-nr went away in 2.6.8
39 .\" 2004-12-14, mtk, updated 'statm', and fixed error in order of list
40 .\" 2005-05-12, mtk, updated 'stat'
41 .\" 2005-07-13, mtk, added /proc/sys/fs/mqueue/*
42 .\" 2005-09-16, mtk, Added /proc/sys/fs/suid_dumpable
43 .\" 2005-09-19, mtk, added /proc/zoneinfo
44 .\" 2005-03-01, mtk, moved /proc/sys/fs/mqueue/* material to mq_overview.7.
45 .\" 2008-06-05, mtk, Added /proc/[pid]/oom_score, /proc/[pid]/oom_adj,
46 .\" /proc/[pid]/limits, /proc/[pid]/mountinfo, /proc/[pid]/mountstats,
47 .\" and /proc/[pid]/fdinfo/*.
48 .\" 2008-06-19, mtk, Documented /proc/[pid]/status.
49 .\" 2008-07-15, mtk, added /proc/config.gz
51 .\" FIXME cross check against Documentation/filesystems/proc.txt
52 .\" to see what information could be imported from that file
55 .TH PROC 5 2021-08-27 "Linux" "Linux Programmer's Manual"
57 proc \- process information pseudo-filesystem
61 filesystem is a pseudo-filesystem which provides an interface to
62 kernel data structures.
63 It is commonly mounted at
65 Typically, it is mounted automatically by the system,
66 but it can also be mounted manually using a command such as:
70 mount \-t proc proc /proc
74 Most of the files in the
76 filesystem are read-only,
77 but some files are writable, allowing kernel variables to be changed.
82 filesystem supports the following mount options:
84 .BR hidepid "=\fIn\fP (since Linux 3.3)"
85 .\" commit 0499680a42141d86417a8fbaa8c8db806bea1201
86 This option controls who can access the information in
91 is one of the following values:
95 Everybody may access all
98 This is the traditional behavior,
99 and the default if this mount option is not specified.
102 Users may not access files and subdirectories inside any
104 directories but their own (the
106 directories themselves remain visible).
107 Sensitive files such as
108 .IR /proc/[pid]/cmdline
110 .IR /proc/[pid]/status
111 are now protected against other users.
112 This makes it impossible to learn whether any user is running a
114 (so long as the program doesn't otherwise reveal itself by its behavior).
115 .\" As an additional bonus, since
116 .\" .IR /proc/[pid]/cmdline
117 .\" is inaccessible for other users,
118 .\" poorly written programs passing sensitive information via
119 .\" program arguments are now protected against local eavesdroppers.
122 As for mode 1, but in addition the
124 directories belonging to other users become invisible.
127 entries can no longer be used to discover the PIDs on the system.
128 This doesn't hide the fact that a process with a specific PID value exists
129 (it can be learned by other means, for example, by "kill \-0 $PID"),
130 but it hides a process's UID and GID,
131 which could otherwise be learned by employing
136 This greatly complicates an attacker's task of gathering
137 information about running processes (e.g., discovering whether
138 some daemon is running with elevated privileges,
139 whether another user is running some sensitive program,
140 whether other users are running any program at all, and so on).
143 .BR gid "=\fIgid\fP (since Linux 3.3)"
144 .\" commit 0499680a42141d86417a8fbaa8c8db806bea1201
145 Specifies the ID of a group whose members are authorized to
146 learn process information otherwise prohibited by
148 (i.e., users in this group behave as though
152 This group should be used instead of approaches such as putting
153 nonroot users into the
160 there are the following general groups of files and subdirectories:
162 .IR /proc/[pid] " subdirectories"
163 Each one of these subdirectories contains files and subdirectories
164 exposing information about the process with the corresponding process ID.
166 Underneath each of the
170 subdirectory contains subdirectories of the form
172 which contain corresponding information about each of the threads
173 in the process, where
175 is the kernel thread ID of the thread.
179 subdirectories are visible when iterating through
183 (and thus are visible when one uses
185 to view the contents of
188 .IR /proc/[tid] " subdirectories"
189 Each one of these subdirectories contains files and subdirectories
190 exposing information about the thread with the corresponding thread ID.
191 The contents of these directories are the same as the corresponding
192 .IR /proc/[pid]/task/[tid]
199 visible when iterating through
205 visible when one uses
207 to view the contents of
211 When a process accesses this magic symbolic link,
212 it resolves to the process's own
216 .I /proc/thread\-self
217 When a thread accesses this magic symbolic link,
218 it resolves to the process's own
219 .I /proc/self/task/[tid]
223 Various other files and subdirectories under
225 expose system-wide information.
227 All of the above are described in more detail below.
229 .SS Files and directories
230 The following list provides details of many of the files and directories
236 There is a numerical subdirectory for each running process; the
237 subdirectory is named by the process ID.
240 subdirectory contains the pseudo-files and directories described below.
242 The files inside each
244 directory are normally owned by the effective user and
245 effective group ID of the process.
246 However, as a security measure, the ownership is made
248 if the process's "dumpable" attribute is set to a value other than 1.
251 .\" commit 68eb94f16227336a5773b83ecfa8290f1d6b78ce
253 meant the "global" root user ID and group ID
254 (i.e., UID 0 and GID 0 in the initial user namespace).
256 if the process is in a noninitial user namespace that has a
257 valid mapping for user (group) ID 0 inside the namespace, then
258 the user (group) ownership of the files under
260 is instead made the same as the root user (group) ID of the namespace.
261 This means that inside a container,
262 things work as expected for the container "root" user.
264 The process's "dumpable" attribute may change for the following reasons:
267 The attribute was explicitly set via the
272 The attribute was reset to the value in the file
273 .IR /proc/sys/fs/suid_dumpable
274 (described below), for the reasons described in
278 Resetting the "dumpable" attribute to 1 reverts the ownership of the
280 files to the process's effective UID and GID.
281 Note, however, that if the effective UID or GID is subsequently modified,
282 then the "dumpable" attribute may be reset, as described in
284 Therefore, it may be desirable to reset the "dumpable" attribute
286 making any desired changes to the process's effective UID or GID.
289 .\" https://lwn.net/Articles/28222/
290 .\" From: Stephen Smalley <sds@epoch.ncsc.mil>
291 .\" To: LKML and others
292 .\" Subject: [RFC][PATCH] Process Attribute API for Security Modules
293 .\" Date: 08 Apr 2003 16:17:52 -0400
295 .\" http://www.nsa.gov/research/_files/selinux/papers/module/x362.shtml
297 The files in this directory provide an API for security modules.
298 The contents of this directory are files that can be read and written
299 in order to set security-related attributes.
300 This directory was added to support SELinux,
301 but the intention was that the API be general enough to support
302 other security modules.
303 For the purpose of explanation,
304 examples of how SELinux uses these files are provided below.
306 This directory is present only if the kernel was configured with
307 .BR CONFIG_SECURITY .
309 .IR /proc/[pid]/attr/current " (since Linux 2.6.0)"
310 The contents of this file represent the current
311 security attributes of the process.
313 In SELinux, this file is used to get the security context of a process.
314 Prior to Linux 2.6.11, this file could not be used to set the security
315 context (a write was always denied), since SELinux limited process security
318 (see the description of
319 .IR /proc/[pid]/attr/exec ,
321 Since Linux 2.6.11, SELinux lifted this restriction and began supporting
322 "set" operations via writes to this node if authorized by policy,
323 although use of this operation is only suitable for applications that are
324 trusted to maintain any desired separation between the old and new security
327 Prior to Linux 2.6.28, SELinux did not allow threads within a
328 multithreaded process to set their security context via this node
329 as it would yield an inconsistency among the security contexts of the
330 threads sharing the same memory space.
331 Since Linux 2.6.28, SELinux lifted
332 this restriction and began supporting "set" operations for threads within
333 a multithreaded process if the new security context is bounded by the old
334 security context, where the bounded relation is defined in policy and
335 guarantees that the new security context has a subset of the permissions
336 of the old security context.
338 Other security modules may choose to support "set" operations via
341 .IR /proc/[pid]/attr/exec " (since Linux 2.6.0)"
342 This file represents the attributes to assign to the
343 process upon a subsequent
347 this is needed to support role/domain transitions, and
349 is the preferred point to make such transitions because it offers better
350 control over the initialization of the process in the new security label
351 and the inheritance of state.
352 In SELinux, this attribute is reset on
354 so that the new program reverts to the default behavior for any
356 calls that it may make.
357 In SELinux, a process can set
359 .I /proc/[pid]/attr/exec
362 .IR /proc/[pid]/attr/fscreate " (since Linux 2.6.0)"
363 This file represents the attributes to assign to files
364 created by subsequent calls to
371 SELinux employs this file to support creation of a file
372 (using the aforementioned system calls)
374 so that there is no risk of inappropriate access being obtained
375 between the time of creation and the time that attributes are set.
376 In SELinux, this attribute is reset on
378 so that the new program reverts to the default behavior for
379 any file creation calls it may make, but the attribute will persist
380 across multiple file creation calls within a program unless it is
382 In SELinux, a process can set only its own
383 .IR /proc/[pid]/attr/fscreate
386 .IR /proc/[pid]/attr/keycreate " (since Linux 2.6.18)"
387 .\" commit 4eb582cf1fbd7b9e5f466e3718a59c957e75254e
388 If a process writes a security context into this file,
389 all subsequently created keys
391 will be labeled with this context.
392 For further information, see the kernel source file
393 .I Documentation/security/keys/core.rst
395 .\" commit b68101a1e8f0263dbc7b8375d2a7c57c6216fb76
396 .I Documentation/security/keys.txt
397 on Linux between 3.0 and 4.13, or
398 .\" commit d410fa4ef99112386de5f218dd7df7b4fca910b4
399 .I Documentation/keys.txt
402 .IR /proc/[pid]/attr/prev " (since Linux 2.6.0)"
403 This file contains the security context of the process before the last
405 that is, the previous value of
406 .IR /proc/[pid]/attr/current .
408 .IR /proc/[pid]/attr/socketcreate " (since Linux 2.6.18)"
409 .\" commit 42c3e03ef6b298813557cdb997bd6db619cd65a2
410 If a process writes a security context into this file,
411 all subsequently created sockets will be labeled with this context.
413 .IR /proc/[pid]/autogroup " (since Linux 2.6.38)"
414 .\" commit 5091faa449ee0b7d73bc296a93bca9540fc51d0a
418 .IR /proc/[pid]/auxv " (since 2.6.0)"
419 .\" Precisely: Linux 2.6.0-test7
420 This contains the contents of the ELF interpreter information passed
421 to the process at exec time.
422 The format is one \fIunsigned long\fP ID
423 plus one \fIunsigned long\fP value for each entry.
424 The last entry contains two zeros.
428 Permission to access this file is governed by a ptrace access mode
429 .B PTRACE_MODE_READ_FSCREDS
433 .IR /proc/[pid]/cgroup " (since Linux 2.6.24)"
437 .IR /proc/[pid]/clear_refs " (since Linux 2.6.22)"
438 .\" commit b813e931b4c8235bb42e301096ea97dbdee3e8fe (2.6.22)
439 .\" commit 398499d5f3613c47f2143b8c54a04efb5d7a6da9 (2.6.32)
440 .\" commit 040fa02077de01c7e08fa75be6125e4ca5636011 (3.11)
442 .\" "Clears page referenced bits shown in smaps output"
443 .\" write-only, writable only by the owner of the process
445 This is a write-only file, writable only by owner of the process.
447 The following values may be written to the file:
450 1 (since Linux 2.6.22)
451 .\" Internally: CLEAR_REFS_ALL
452 Reset the PG_Referenced and ACCESSED/YOUNG
453 bits for all the pages associated with the process.
454 (Before kernel 2.6.32, writing any nonzero value to this file
457 2 (since Linux 2.6.32)
458 .\" Internally: CLEAR_REFS_ANON
459 Reset the PG_Referenced and ACCESSED/YOUNG
460 bits for all anonymous pages associated with the process.
462 3 (since Linux 2.6.32)
463 .\" Internally: CLEAR_REFS_MAPPED
464 Reset the PG_Referenced and ACCESSED/YOUNG
465 bits for all file-mapped pages associated with the process.
468 Clearing the PG_Referenced and ACCESSED/YOUNG bits provides a method
469 to measure approximately how much memory a process is using.
470 One first inspects the values in the "Referenced" fields
471 for the VMAs shown in
472 .IR /proc/[pid]/smaps
473 to get an idea of the memory footprint of the
475 One then clears the PG_Referenced and ACCESSED/YOUNG bits
476 and, after some measured time interval,
477 once again inspects the values in the "Referenced" fields
478 to get an idea of the change in memory footprint of the
479 process during the measured interval.
480 If one is interested only in inspecting the selected mapping types,
481 then the value 2 or 3 can be used instead of 1.
483 Further values can be written to affect different properties:
487 Clear the soft-dirty bit for all the pages associated with the process.
488 .\" Internally: CLEAR_REFS_SOFT_DIRTY
489 This is used (in conjunction with
490 .IR /proc/[pid]/pagemap )
491 by the check-point restore system to discover which pages of a process
492 have been dirtied since the file
493 .IR /proc/[pid]/clear_refs
497 .\" Internally: CLEAR_REFS_MM_HIWATER_RSS
498 Reset the peak resident set size ("high water mark") to the process's
499 current resident set size value.
503 .IR /proc/[pid]/clear_refs
504 other than those listed above has no effect.
507 .IR /proc/[pid]/clear_refs
508 file is present only if the
509 .B CONFIG_PROC_PAGE_MONITOR
510 kernel configuration option is enabled.
512 .I /proc/[pid]/cmdline
513 This read-only file holds the complete command line for the process,
514 unless the process is a zombie.
515 .\" In 2.3.26, this also used to be true if the process was swapped out.
516 In the latter case, there is nothing in this file:
517 that is, a read on this file will return 0 characters.
518 The command-line arguments appear in this file as a set of
519 strings separated by null bytes (\(aq\e0\(aq),
520 with a further null byte after the last string.
524 the process modifies its
526 strings, those changes will show up here.
527 This is not the same thing as modifying the
531 Furthermore, a process may change the memory location that this file refers via
534 .BR PR_SET_MM_ARG_START .
536 Think of this file as the command line that the process wants you to see.
538 .IR /proc/[pid]/comm " (since Linux 2.6.33)"
539 .\" commit 4614a696bd1c3a9af3a08f0e5874830a85b889d4
540 This file exposes the process's
542 value\(emthat is, the command name associated with the process.
543 Different threads in the same process may have different
545 values, accessible via
546 .IR /proc/[pid]/task/[tid]/comm .
547 A thread may modify its
549 value, or that of any of other thread in the same thread group (see
554 by writing to the file
555 .IR /proc/self/task/[tid]/comm .
558 (16) characters (including the terminating null byte) are silently truncated.
560 This file provides a superset of the
565 operations, and is employed by
566 .BR pthread_setname_np (3)
567 when used to rename threads other than the caller.
568 The value in this file is used for the
571 .IR /proc/sys/kernel/core_pattern ;
575 .IR /proc/[pid]/coredump_filter " (since Linux 2.6.23)"
579 .IR /proc/[pid]/cpuset " (since Linux 2.6.12)"
580 .\" and/proc/[pid]/task/[tid]/cpuset
585 This is a symbolic link to the current working directory of the process.
586 To find out the current working directory of process 20,
587 for instance, you can do this:
591 .RB "$" " cd /proc/20/cwd; pwd \-P"
595 .\" The following was still true as at kernel 2.6.13
596 In a multithreaded process, the contents of this symbolic link
597 are not available if the main thread has already terminated
598 (typically by calling
599 .BR pthread_exit (3)).
601 Permission to dereference or read
603 this symbolic link is governed by a ptrace access mode
604 .B PTRACE_MODE_READ_FSCREDS
608 .I /proc/[pid]/environ
609 This file contains the initial environment that was set
610 when the currently executing program was started via
612 The entries are separated by null bytes (\(aq\e0\(aq),
613 and there may be a null byte at the end.
614 Thus, to print out the environment of process 1, you would do:
618 .RB "$" " cat /proc/1/environ | tr \(aq\e000\(aq \(aq\en\(aq"
624 the process modifies its environment
625 (e.g., by calling functions such as
632 reflect those changes.
634 Furthermore, a process may change the memory location that this file refers via
637 .BR PR_SET_MM_ENV_START .
639 Permission to access this file is governed by a ptrace access mode
640 .B PTRACE_MODE_READ_FSCREDS
645 Under Linux 2.2 and later, this file is a symbolic link
646 containing the actual pathname of the executed command.
647 This symbolic link can be dereferenced normally; attempting to open
648 it will open the executable.
651 to run another copy of the same executable that is being run by
653 If the pathname has been unlinked, the symbolic link will contain the
654 string \(aq(deleted)\(aq appended to the original pathname.
655 .\" The following was still true as at kernel 2.6.13
656 In a multithreaded process, the contents of this symbolic link
657 are not available if the main thread has already terminated
658 (typically by calling
659 .BR pthread_exit (3)).
661 Permission to dereference or read
663 this symbolic link is governed by a ptrace access mode
664 .B PTRACE_MODE_READ_FSCREDS
668 Under Linux 2.0 and earlier,
670 is a pointer to the binary which was executed,
671 and appears as a symbolic link.
674 call on this file under Linux 2.0 returns a string in the format:
678 For example, [0301]:1502 would be inode 1502 on device major 03 (IDE,
679 MFM, etc. drives) minor 01 (first partition on the first drive).
684 option can be used to locate the file.
687 This is a subdirectory containing one entry for each file which the
688 process has open, named by its file descriptor, and which is a
689 symbolic link to the actual file.
690 Thus, 0 is standard input, 1 standard output, 2 standard error, and so on.
692 For file descriptors for pipes and sockets,
693 the entries will be symbolic links whose content is the
694 file type with the inode.
697 call on this file returns a string in the format:
703 will be a socket and its inode is 2248868.
704 For sockets, that inode can be used to find more information
705 in one of the files under
708 For file descriptors that have no corresponding inode
709 (e.g., file descriptors produced by
711 .BR epoll_create (2),
713 .BR inotify_init (2),
714 .BR perf_event_open (2),
716 .BR timerfd_create (2),
718 .BR userfaultfd (2)),
719 the entry will be a symbolic link with contents of the form
721 anon_inode:<file-type>
723 In many cases (but not all), the
725 is surrounded by square brackets.
727 For example, an epoll file descriptor will have a symbolic link
728 whose content is the string
729 .IR "anon_inode:[eventpoll]" .
731 .\"The following was still true as at kernel 2.6.13
732 In a multithreaded process, the contents of this directory
733 are not available if the main thread has already terminated
734 (typically by calling
735 .BR pthread_exit (3)).
737 Programs that take a filename as a command-line argument,
738 but don't take input from standard input if no argument is supplied,
739 and programs that write to a file named as a command-line argument,
740 but don't send their output to standard output
741 if no argument is supplied, can nevertheless be made to use
742 standard input or standard output by using
744 files as command-line arguments.
745 For example, assuming that
747 is the flag designating an input file and
749 is the flag designating an output file:
753 .RB "$" " foobar \-i /proc/self/fd/0 \-o /proc/self/fd/1 ..."
757 and you have a working filter.
758 .\" The following is not true in my tests (MTK):
759 .\" Note that this will not work for
760 .\" programs that seek on their files, as the files in the fd directory
761 .\" are not seekable.
764 is approximately the same as
766 in some UNIX and UNIX-like systems.
767 Most Linux MAKEDEV scripts symbolically link
773 Most systems provide symbolic links
778 which respectively link to the files
785 Thus the example command above could be written as:
789 .RB "$" " foobar \-i /dev/stdin \-o /dev/stdout ..."
793 Permission to dereference or read
795 the symbolic links in this directory is governed by a ptrace access mode
796 .B PTRACE_MODE_READ_FSCREDS
800 Note that for file descriptors referring to inodes (pipes and sockets, see above),
801 those inodes still have permission bits and ownership information
802 distinct from those of the
805 and that the owner may differ from the user and group IDs of the process.
806 An unprivileged process may lack permissions to open them, as in this example:
810 .RB "$" " echo test | sudo \-u nobody cat"
812 .RB "$" " echo test | sudo \-u nobody cat /proc/self/fd/0"
813 cat: /proc/self/fd/0: Permission denied
817 File descriptor 0 refers to the pipe created by the shell
818 and owned by that shell's user, which is not
822 does not have permission to create a new file descriptor to read from that inode,
823 even though it can still read from its existing file descriptor 0.
825 .IR /proc/[pid]/fdinfo/ " (since Linux 2.6.22)"
826 This is a subdirectory containing one entry for each file which the
827 process has open, named by its file descriptor.
828 The files in this directory are readable only by the owner of the process.
829 The contents of each file can be read to obtain information
830 about the corresponding file descriptor.
831 The content depends on the type of file referred to by the
832 corresponding file descriptor.
834 For regular files and directories, we see something like:
838 .RB "$" " cat /proc/12015/fdinfo/4"
845 The fields are as follows:
849 This is a decimal number showing the file offset.
852 This is an octal number that displays the
853 file access mode and file status flags (see
855 If the close-on-exec file descriptor flag is set, then
857 will also include the value
861 .\" commit 1117f72ea0217ba0cc19f05adbbd8b9a397f5ab7
862 this field incorrectly displayed the setting of
864 at the time the file was opened,
865 rather than the current setting of the close-on-exec flag.
869 This field, present since Linux 3.15,
870 .\" commit 49d063cb353265c3af701bab215ac438ca7df36d
871 is the ID of the mount containing this file.
872 See the description of
873 .IR /proc/[pid]/mountinfo .
876 For eventfd file descriptors (see
878 we see (since Linux 3.8)
879 .\" commit cbac5542d48127b546a23d816380a7926eee1c25
880 the following fields:
892 is the current value of the eventfd counter, in hexadecimal.
894 For epoll file descriptors (see
896 we see (since Linux 3.8)
897 .\" commit 138d22b58696c506799f8de759804083ff9effae
898 the following fields:
905 tfd: 9 events: 19 data: 74253d2500000009
906 tfd: 7 events: 19 data: 74253d2500000007
910 Each of the lines beginning
912 describes one of the file descriptors being monitored via
913 the epoll file descriptor (see
918 field is the number of the file descriptor.
921 field is a hexadecimal mask of the events being monitored for this file
925 field is the data value associated with this file descriptor.
927 For signalfd file descriptors (see
929 we see (since Linux 3.8)
930 .\" commit 138d22b58696c506799f8de759804083ff9effae
931 the following fields:
938 sigmask: 0000000000000006
943 is the hexadecimal mask of signals that are accepted via this
944 signalfd file descriptor.
945 (In this example, bits 2 and 3 are set, corresponding to the signals
952 For inotify file descriptors (see
954 we see (since Linux 3.8)
955 the following fields:
962 inotify wd:2 ino:7ef82a sdev:800001 mask:800afff ignored_mask:0 fhandle\-bytes:8 fhandle\-type:1 f_handle:2af87e00220ffd73
963 inotify wd:1 ino:192627 sdev:800001 mask:800afff ignored_mask:0 fhandle\-bytes:8 fhandle\-type:1 f_handle:27261900802dfd73
967 Each of the lines beginning with "inotify" displays information about
968 one file or directory that is being monitored.
969 The fields in this line are as follows:
973 A watch descriptor number (in decimal).
976 The inode number of the target file (in hexadecimal).
979 The ID of the device where the target file resides (in hexadecimal).
982 The mask of events being monitored for the target file (in hexadecimal).
985 If the kernel was built with exportfs support, the path to the target
986 file is exposed as a file handle, via three hexadecimal fields:
992 For fanotify file descriptors (see
994 we see (since Linux 3.8)
995 the following fields:
1002 fanotify flags:0 event\-flags:88002
1003 fanotify ino:19264f sdev:800001 mflags:0 mask:1 ignored_mask:0 fhandle\-bytes:8 fhandle\-type:1 f_handle:4f261900a82dfd73
1007 The fourth line displays information defined when the fanotify group
1009 .BR fanotify_init (2):
1016 .BR fanotify_init (2)
1017 (expressed in hexadecimal).
1023 .BR fanotify_init (2)
1024 (expressed in hexadecimal).
1027 Each additional line shown in the file contains information
1028 about one of the marks in the fanotify group.
1029 Most of these fields are as for inotify, except:
1033 The flags associated with the mark
1034 (expressed in hexadecimal).
1037 The events mask for this mark
1038 (expressed in hexadecimal).
1041 The mask of events that are ignored for this mark
1042 (expressed in hexadecimal).
1045 For details on these fields, see
1046 .BR fanotify_mark (2).
1048 For timerfd file descriptors (see
1050 we see (since Linux 3.17)
1051 .\" commit af9c4957cf212ad9cf0bee34c95cb11de5426e85
1052 the following fields:
1062 it_value: (7695568592, 640020877)
1069 This is the numeric value of the clock ID
1070 (corresponding to one of the
1072 constants defined via
1074 that is used to mark the progress of the timer (in this example, 0 is
1075 .BR CLOCK_REALTIME ).
1078 This is the number of timer expirations that have occurred,
1079 (i.e., the value that
1081 on it would return).
1084 This field lists the flags with which the timerfd was last armed (see
1085 .BR timerfd_settime (2)),
1087 (in this example, both
1088 .B TFD_TIMER_ABSTIME
1090 .B TFD_TIMER_CANCEL_ON_SET
1094 This field contains the amount of time until the timer will next expire,
1095 expressed in seconds and nanoseconds.
1096 This is always expressed as a relative value,
1097 regardless of whether the timer was created using the
1098 .B TFD_TIMER_ABSTIME
1102 This field contains the interval of the timer,
1103 in seconds and nanoseconds.
1108 fields contain the values that
1109 .BR timerfd_gettime (2)
1110 on this file descriptor would return.)
1113 .IR /proc/[pid]/gid_map " (since Linux 3.5)"
1115 .BR user_namespaces (7).
1117 .IR /proc/[pid]/io " (since kernel 2.6.20)"
1118 .\" commit 7c3ab7381e79dfc7db14a67c6f4f3285664e1ec2
1119 This file contains I/O statistics for the process, for example:
1123 .RB "#" " cat /proc/3828/io"
1129 write_bytes: 323932160
1130 cancelled_write_bytes: 0
1134 The fields are as follows:
1137 .IR rchar ": characters read"
1138 The number of bytes which this task has caused to be read from storage.
1139 This is simply the sum of bytes which this process passed to
1141 and similar system calls.
1142 It includes things such as terminal I/O and
1143 is unaffected by whether or not actual
1144 physical disk I/O was required (the read might have been satisfied from
1147 .IR wchar ": characters written"
1148 The number of bytes which this task has caused, or shall cause to be written
1150 Similar caveats apply here as with
1153 .IR syscr ": read syscalls"
1154 Attempt to count the number of read I/O operations\(emthat is,
1155 system calls such as
1160 .IR syscw ": write syscalls"
1161 Attempt to count the number of write I/O operations\(emthat is,
1162 system calls such as
1167 .IR read_bytes ": bytes read"
1168 Attempt to count the number of bytes which this process really did cause to
1169 be fetched from the storage layer.
1170 This is accurate for block-backed filesystems.
1172 .IR write_bytes ": bytes written"
1173 Attempt to count the number of bytes which this process caused to be sent to
1176 .IR cancelled_write_bytes :
1177 The big inaccuracy here is truncate.
1178 If a process writes 1 MB to a file and then deletes the file,
1179 it will in fact perform no writeout.
1180 But it will have been accounted as having caused 1 MB of write.
1181 In other words: this field represents the number of bytes which this process
1182 caused to not happen, by truncating pagecache.
1183 A task can cause "negative" I/O too.
1184 If this task truncates some dirty pagecache,
1185 some I/O which another task has been accounted for
1188 will not be happening.
1192 In the current implementation, things are a bit racy on 32-bit systems:
1193 if process A reads process B's
1195 while process B is updating one of these 64-bit counters,
1196 process A could see an intermediate result.
1198 Permission to access this file is governed by a ptrace access mode
1199 .B PTRACE_MODE_READ_FSCREDS
1203 .IR /proc/[pid]/limits " (since Linux 2.6.24)"
1204 This file displays the soft limit, hard limit, and units of measurement
1205 for each of the process's resource limits (see
1207 Up to and including Linux 2.6.35,
1208 this file is protected to allow reading only by the real UID of the process.
1210 .\" commit 3036e7b490bf7878c6dae952eec5fb87b1106589
1211 this file is readable by all users on the system.
1212 .\" FIXME Describe /proc/[pid]/loginuid
1213 .\" Added in 2.6.11; updating requires CAP_AUDIT_CONTROL
1214 .\" CONFIG_AUDITSYSCALL
1216 .IR /proc/[pid]/map_files/ " (since kernel 3.3)"
1217 .\" commit 640708a2cff7f81e246243b0073c66e6ece7e53e
1218 This subdirectory contains entries corresponding to memory-mapped
1221 Entries are named by memory region start and end
1222 address pair (expressed as hexadecimal numbers),
1223 and are symbolic links to the mapped files themselves.
1224 Here is an example, with the output wrapped and reformatted to fit on an 80-column display:
1228 .RB "#" " ls \-l /proc/self/map_files/"
1229 lr\-\-\-\-\-\-\-\-. 1 root root 64 Apr 16 21:31
1230 3252e00000\-3252e20000 \-> /usr/lib64/ld\-2.15.so
1235 Although these entries are present for memory regions that were
1238 flag, the way anonymous shared memory (regions created with the
1239 .B MAP_ANON | MAP_SHARED
1241 is implemented in Linux
1242 means that such regions also appear on this directory.
1243 Here is an example where the target file is the deleted
1249 lrw\-\-\-\-\-\-\-. 1 root root 64 Apr 16 21:33
1250 7fc075d2f000\-7fc075e6f000 \-> /dev/zero (deleted)
1254 Permission to access this file is governed by a ptrace access mode
1255 .B PTRACE_MODE_READ_FSCREDS
1259 Until kernel version 4.3,
1260 .\" commit bdb4d100afe9818aebd1d98ced575c5ef143456c
1261 this directory appeared only if the
1262 .B CONFIG_CHECKPOINT_RESTORE
1263 kernel configuration option was enabled.
1265 Capabilities are required to read the contents of the symbolic links in
1266 this directory: before Linux 5.9, the reading process requires
1268 in the initial user namespace;
1269 since Linux 5.9, the reading process must have either
1272 .BR CAP_CHECKPOINT_RESTORE
1273 in the user namespace where it resides.
1276 A file containing the currently mapped memory regions and their access
1280 for some further information about memory mappings.
1282 Permission to access this file is governed by a ptrace access mode
1283 .B PTRACE_MODE_READ_FSCREDS
1287 The format of the file is:
1291 .I "address perms offset dev inode pathname"
1292 00400000\-00452000 r\-xp 00000000 08:02 173521 /usr/bin/dbus\-daemon
1293 00651000\-00652000 r\-\-p 00051000 08:02 173521 /usr/bin/dbus\-daemon
1294 00652000\-00655000 rw\-p 00052000 08:02 173521 /usr/bin/dbus\-daemon
1295 00e03000\-00e24000 rw\-p 00000000 00:00 0 [heap]
1296 00e24000\-011f7000 rw\-p 00000000 00:00 0 [heap]
1298 35b1800000\-35b1820000 r\-xp 00000000 08:02 135522 /usr/lib64/ld\-2.15.so
1299 35b1a1f000\-35b1a20000 r\-\-p 0001f000 08:02 135522 /usr/lib64/ld\-2.15.so
1300 35b1a20000\-35b1a21000 rw\-p 00020000 08:02 135522 /usr/lib64/ld\-2.15.so
1301 35b1a21000\-35b1a22000 rw\-p 00000000 00:00 0
1302 35b1c00000\-35b1dac000 r\-xp 00000000 08:02 135870 /usr/lib64/libc\-2.15.so
1303 35b1dac000\-35b1fac000 \-\-\-p 001ac000 08:02 135870 /usr/lib64/libc\-2.15.so
1304 35b1fac000\-35b1fb0000 r\-\-p 001ac000 08:02 135870 /usr/lib64/libc\-2.15.so
1305 35b1fb0000\-35b1fb2000 rw\-p 001b0000 08:02 135870 /usr/lib64/libc\-2.15.so
1307 f2c6ff8c000\-7f2c7078c000 rw\-p 00000000 00:00 0 [stack:986]
1309 7fffb2c0d000\-7fffb2c2e000 rw\-p 00000000 00:00 0 [stack]
1310 7fffb2d48000\-7fffb2d49000 r\-xp 00000000 00:00 0 [vdso]
1316 field is the address space in the process that the mapping occupies.
1319 field is a set of permissions:
1327 p = private (copy on write)
1333 field is the offset into the file/whatever;
1338 is the inode on that device.
1339 0 indicates that no inode is associated with the memory region,
1340 as would be the case with BSS (uninitialized data).
1344 field will usually be the file that is backing the mapping.
1346 you can easily coordinate with the
1348 field by looking at the
1349 Offset field in the ELF program headers
1350 .RI ( "readelf\ \-l" ).
1352 There are additional helpful pseudo-paths:
1356 The initial process's (also known as the main thread's) stack.
1358 .IR [stack:<tid>] " (from Linux 3.4 to 4.4)"
1359 .\" commit b76437579d1344b612cf1851ae610c636cec7db0 (added)
1360 .\" commit 65376df582174ffcec9e6471bf5b0dd79ba05e4a (removed)
1361 A thread's stack (where the
1364 It corresponds to the
1365 .IR /proc/[pid]/task/[tid]/
1367 This field was removed in Linux 4.5, since providing this information
1368 for a process with large numbers of threads is expensive.
1371 The virtual dynamically linked shared object.
1383 this is an anonymous mapping as obtained via
1385 There is no easy way to coordinate this back to a process's source,
1386 short of running it through
1392 is shown unescaped except for newline characters, which are replaced
1393 with an octal escape sequence.
1394 As a result, it is not possible to determine whether the original
1395 pathname contained a newline character or the literal
1399 If the mapping is file-backed and the file has been deleted, the string
1400 " (deleted)" is appended to the pathname.
1401 Note that this is ambiguous too.
1403 Under Linux 2.0, there is no field giving pathname.
1406 This file can be used to access the pages of a process's memory through
1412 Permission to access this file is governed by a ptrace access mode
1413 .B PTRACE_MODE_ATTACH_FSCREDS
1417 .IR /proc/[pid]/mountinfo " (since Linux 2.6.26)"
1418 .\" This info adapted from Documentation/filesystems/proc.txt
1419 .\" commit 2d4d4864ac08caff5c204a752bd004eed4f08760
1420 This file contains information about mounts
1421 in the process's mount namespace (see
1422 .BR mount_namespaces (7)).
1423 It supplies various information
1424 (e.g., propagation state, root of mount for bind mounts,
1425 identifier for each mount and its parent) that is missing from the (older)
1426 .IR /proc/[pid]/mounts
1427 file, and fixes various other problems with that file
1428 (e.g., nonextensibility,
1429 failure to distinguish per-mount versus per-superblock options).
1431 The file contains lines of the form:
1434 36 35 98:0 /mnt1 /mnt2 rw,noatime master:1 \- ext3 /dev/root rw,errors=continue
1435 (1)(2)(3) (4) (5) (6) (7) (8) (9) (10) (11)
1438 The numbers in parentheses are labels for the descriptions below:
1442 mount ID: a unique ID for the mount (may be reused after
1446 parent ID: the ID of the parent mount
1447 (or of self for the root of this mount namespace's mount tree).
1449 If a new mount is stacked on top of a previous existing mount
1450 (so that it hides the existing mount) at pathname P,
1451 then the parent of the new mount is the previous mount at that location.
1452 Thus, when looking at all the mounts stacked at a particular location,
1453 the top-most mount is the one that is not the parent
1454 of any other mount at the same location.
1455 (Note, however, that this top-most mount will be accessible only if
1456 the longest path subprefix of P that is a mount point
1457 is not itself hidden by a stacked mount.)
1459 If the parent mount lies outside the process's root directory (see
1461 the ID shown here won't have a corresponding record in
1463 whose mount ID (field 1) matches this parent mount ID
1464 (because mounts that lie outside the process's root directory
1467 As a special case of this point,
1468 the process's root mount may have a parent mount
1469 (for the initramfs filesystem) that lies
1470 .\" Miklos Szeredi, Nov 2017: The hidden one is the initramfs, I believe
1471 .\" mtk: In the initial mount namespace, this hidden ID has the value 0
1472 outside the process's root directory,
1473 and an entry for that mount will not appear in
1477 major:minor: the value of
1479 for files on this filesystem (see
1483 root: the pathname of the directory in the filesystem
1484 which forms the root of this mount.
1487 mount point: the pathname of the mount point relative
1488 to the process's root directory.
1491 mount options: per-mount options (see
1495 optional fields: zero or more fields of the form "tag[:value]"; see below.
1498 separator: the end of the optional fields is marked by a single hyphen.
1501 filesystem type: the filesystem type in the form "type[.subtype]".
1504 mount source: filesystem-specific information or "none".
1507 super options: per-superblock options (see
1511 Currently, the possible optional fields are
1514 .IR propagate_from ,
1518 .BR mount_namespaces (7)
1519 for a description of these fields.
1520 Parsers should ignore all unrecognized optional fields.
1522 For more information on mount propagation see:
1523 .I Documentation/filesystems/sharedsubtree.txt
1524 in the Linux kernel source tree.
1526 .IR /proc/[pid]/mounts " (since Linux 2.4.19)"
1527 This file lists all the filesystems currently mounted in the
1528 process's mount namespace (see
1529 .BR mount_namespaces (7)).
1530 The format of this file is documented in
1533 Since kernel version 2.6.15, this file is pollable:
1534 after opening the file for reading, a change in this file
1535 (i.e., a filesystem mount or unmount) causes
1537 to mark the file descriptor as having an exceptional condition, and
1541 mark the file as having a priority event
1543 (Before Linux 2.6.30,
1544 a change in this file was indicated by the file descriptor
1545 being marked as readable for
1547 and being marked as having an error condition for
1550 .BR epoll_wait (2).)
1552 .IR /proc/[pid]/mountstats " (since Linux 2.6.17)"
1553 This file exports information (statistics, configuration information)
1554 about the mounts in the process's mount namespace (see
1555 .BR mount_namespaces (7)).
1556 Lines in this file have the form:
1560 device /dev/sda7 mounted on /home with fstype ext3 [stats]
1561 ( 1 ) ( 2 ) (3 ) ( 4 )
1565 The fields in each line are:
1569 The name of the mounted device
1570 (or "nodevice" if there is no corresponding device).
1573 The mount point within the filesystem tree.
1576 The filesystem type.
1579 Optional statistics and configuration information.
1580 Currently (as at Linux 2.6.26), only NFS filesystems export
1581 information via this field.
1584 This file is readable only by the owner of the process.
1586 .IR /proc/[pid]/net " (since Linux 2.6.25)"
1587 See the description of
1590 .IR /proc/[pid]/ns/ " (since Linux 3.0)"
1591 .\" See commit 6b4e306aa3dc94a0545eb9279475b1ab6209a31f
1592 This is a subdirectory containing one entry for each namespace that
1593 supports being manipulated by
1595 For more information, see
1598 .IR /proc/[pid]/numa_maps " (since Linux 2.6.14)"
1602 .IR /proc/[pid]/oom_adj " (since Linux 2.6.11)"
1603 This file can be used to adjust the score used to select which process
1604 should be killed in an out-of-memory (OOM) situation.
1605 The kernel uses this value for a bit-shift operation of the process's
1608 valid values are in the range \-16 to +15,
1609 plus the special value \-17,
1610 which disables OOM-killing altogether for this process.
1611 A positive score increases the likelihood of this
1612 process being killed by the OOM-killer;
1613 a negative score decreases the likelihood.
1615 The default value for this file is 0;
1616 a new process inherits its parent's
1619 A process must be privileged
1620 .RB ( CAP_SYS_RESOURCE )
1621 to update this file.
1623 Since Linux 2.6.36, use of this file is deprecated in favor of
1624 .IR /proc/[pid]/oom_score_adj .
1626 .IR /proc/[pid]/oom_score " (since Linux 2.6.11)"
1627 .\" See mm/oom_kill.c::badness() in pre 2.6.36 sources
1628 .\" See mm/oom_kill.c::oom_badness() after 2.6.36
1629 .\" commit a63d83f427fbce97a6cea0db2e64b0eb8435cd10
1630 This file displays the current score that the kernel gives to
1631 this process for the purpose of selecting a process
1633 A higher score means that the process is more likely to be
1634 selected by the OOM-killer.
1635 The basis for this score is the amount of memory used by the process,
1636 with increases (+) or decreases (\-) for factors including:
1637 .\" See mm/oom_kill.c::badness() in pre 2.6.36 sources
1638 .\" See mm/oom_kill.c::oom_badness() after 2.6.36
1639 .\" commit a63d83f427fbce97a6cea0db2e64b0eb8435cd10
1642 whether the process is privileged (\-).
1643 .\" More precisely, if it has CAP_SYS_ADMIN or (pre 2.6.36) CAP_SYS_RESOURCE
1646 Before kernel 2.6.36 the following factors were also used in the calculation of oom_score:
1649 whether the process creates a lot of children using
1653 whether the process has been running a long time,
1654 or has used a lot of CPU time (\-);
1656 whether the process has a low nice value (i.e., > 0) (+); and
1658 whether the process is making direct hardware access (\-).
1659 .\" More precisely, if it has CAP_SYS_RAWIO
1664 also reflects the adjustment specified by the
1668 setting for the process.
1670 .IR /proc/[pid]/oom_score_adj " (since Linux 2.6.36)"
1671 .\" Text taken from 3.7 Documentation/filesystems/proc.txt
1672 This file can be used to adjust the badness heuristic used to select which
1673 process gets killed in out-of-memory conditions.
1675 The badness heuristic assigns a value to each candidate task ranging from 0
1676 (never kill) to 1000 (always kill) to determine which process is targeted.
1677 The units are roughly a proportion along that range of
1678 allowed memory the process may allocate from,
1679 based on an estimation of its current memory and swap use.
1680 For example, if a task is using all allowed memory,
1681 its badness score will be 1000.
1682 If it is using half of its allowed memory, its score will be 500.
1684 There is an additional factor included in the badness score: root
1685 processes are given 3% extra memory over other tasks.
1687 The amount of "allowed" memory depends on the context
1688 in which the OOM-killer was called.
1689 If it is due to the memory assigned to the allocating task's cpuset
1691 the allowed memory represents the set of mems assigned to that
1694 If it is due to a mempolicy's node(s) being exhausted,
1695 the allowed memory represents the set of mempolicy nodes.
1696 If it is due to a memory limit (or swap limit) being reached,
1697 the allowed memory is that configured limit.
1698 Finally, if it is due to the entire system being out of memory, the
1699 allowed memory represents all allocatable resources.
1703 is added to the badness score before it
1704 is used to determine which task to kill.
1705 Acceptable values range from \-1000
1706 (OOM_SCORE_ADJ_MIN) to +1000 (OOM_SCORE_ADJ_MAX).
1707 This allows user space to control the preference for OOM-killing,
1708 ranging from always preferring a certain
1709 task or completely disabling it from OOM-killing.
1710 The lowest possible value, \-1000, is
1711 equivalent to disabling OOM-killing entirely for that task,
1712 since it will always report a badness score of 0.
1714 Consequently, it is very simple for user space to define
1715 the amount of memory to consider for each task.
1718 value of +500, for example,
1719 is roughly equivalent to allowing the remainder of tasks sharing the
1720 same system, cpuset, mempolicy, or memory controller resources
1721 to use at least 50% more memory.
1722 A value of \-500, on the other hand, would be roughly
1723 equivalent to discounting 50% of the task's
1724 allowed memory from being considered as scoring against the task.
1726 For backward compatibility with previous kernels,
1727 .I /proc/[pid]/oom_adj
1728 can still be used to tune the badness score.
1730 scaled linearly with
1734 .IR /proc/[pid]/oom_score_adj
1736 .IR /proc/[pid]/oom_adj
1737 will change the other with its scaled value.
1741 program provides a command-line interface for adjusting the
1743 value of a running process or a newly executed command.
1745 .IR /proc/[pid]/pagemap " (since Linux 2.6.25)"
1746 This file shows the mapping of each of the process's virtual pages
1747 into physical page frames or swap area.
1748 It contains one 64-bit value for each virtual page,
1749 with the bits set as follows:
1753 If set, the page is present in RAM.
1756 If set, the page is in swap space
1758 61 (since Linux 3.5)
1759 The page is a file-mapped page or a shared anonymous page.
1761 60\(en57 (since Linux 3.11)
1763 .\" Not quite true; see commit 541c237c0923f567c9c4cabb8a81635baadc713f
1765 56 (since Linux 4.2)
1766 .\" commit 77bb499bb60f4b79cca7d139c8041662860fcf87
1767 .\" commit 83b4b0bb635eee2b8e075062e4e008d1bc110ed7
1768 The page is exclusively mapped.
1770 55 (since Linux 3.11)
1772 (see the kernel source file
1773 .IR Documentation/admin\-guide/mm/soft\-dirty.rst ).
1776 If the page is present in RAM (bit 63), then these bits
1777 provide the page frame number, which can be used to index
1778 .IR /proc/kpageflags
1780 .IR /proc/kpagecount .
1781 If the page is present in swap (bit 62),
1782 then bits 4\(en0 give the swap type, and bits 54\(en5 encode the swap offset.
1785 Before Linux 3.11, bits 60\(en55 were
1786 used to encode the base-2 log of the page size.
1789 .IR /proc/[pid]/pagemap
1791 .IR /proc/[pid]/maps
1792 to determine which areas of memory are actually mapped and seek
1793 to skip over unmapped regions.
1796 .IR /proc/[pid]/pagemap
1797 file is present only if the
1798 .B CONFIG_PROC_PAGE_MONITOR
1799 kernel configuration option is enabled.
1801 Permission to access this file is governed by a ptrace access mode
1802 .B PTRACE_MODE_READ_FSCREDS
1806 .IR /proc/[pid]/personality " (since Linux 2.6.28)"
1807 .\" commit 478307230810d7e2a753ed220db9066dfdf88718
1808 This read-only file exposes the process's execution domain, as set by
1809 .BR personality (2).
1810 The value is displayed in hexadecimal notation.
1812 Permission to access this file is governed by a ptrace access mode
1813 .B PTRACE_MODE_ATTACH_FSCREDS
1818 UNIX and Linux support the idea of a per-process root of the
1819 filesystem, set by the
1822 This file is a symbolic link that points to the process's
1823 root directory, and behaves in the same way as
1828 Note however that this file is not merely a symbolic link.
1829 It provides the same view of the filesystem (including namespaces and the
1830 set of per-process mounts) as the process itself.
1831 An example illustrates this point.
1832 In one terminal, we start a shell in new user and mount namespaces,
1833 and in that shell we create some new mounts:
1837 $ \fBPS1=\(aqsh1# \(aq unshare \-Urnm\fP
1838 sh1# \fBmount \-t tmpfs tmpfs /etc\fP # Mount empty tmpfs at /etc
1839 sh1# \fBmount \-\-bind /usr /dev\fP # Mount /usr at /dev
1845 In a second terminal window, in the initial mount namespace,
1846 we look at the contents of the corresponding mounts in
1847 the initial and new namespaces:
1851 $ \fBPS1=\(aqsh2# \(aq sudo sh\fP
1852 sh2# \fBls /etc | wc \-l\fP # In initial NS
1854 sh2# \fBls /proc/27123/root/etc | wc \-l\fP # /etc in other NS
1855 0 # The empty tmpfs dir
1856 sh2# \fBls /dev | wc \-l\fP # In initial NS
1858 sh2# \fBls /proc/27123/root/dev | wc \-l\fP # /dev in other NS
1861 sh2# \fBls /usr | wc \-l\fP # /usr in initial NS
1866 .\" The following was still true as at kernel 2.6.13
1867 In a multithreaded process, the contents of the
1869 symbolic link are not available if the main thread has already terminated
1870 (typically by calling
1871 .BR pthread_exit (3)).
1873 Permission to dereference or read
1875 this symbolic link is governed by a ptrace access mode
1876 .B PTRACE_MODE_READ_FSCREDS
1880 .IR /proc/[pid]/projid_map " (since Linux 3.7)"
1881 .\" commit f76d207a66c3a53defea67e7d36c3eb1b7d6d61d
1883 .BR user_namespaces (7).
1885 .IR /proc/[pid]/seccomp " (Linux 2.6.12 to 2.6.22)"
1886 This file can be used to read and change the process's
1887 secure computing (seccomp) mode setting.
1888 It contains the value 0 if the process is not in seccomp mode,
1889 and 1 if the process is in strict seccomp mode (see
1891 Writing 1 to this file places the process irreversibly in strict seccomp mode.
1892 (Further attempts to write to the file fail with the
1897 this file went away, to be replaced by the
1902 operations (and later by
1907 .IR /proc/[pid]/status ).
1908 .\" FIXME Describe /proc/[pid]/sessionid
1909 .\" commit 1e0bd7550ea9cf474b1ad4c6ff5729a507f75fdc
1910 .\" CONFIG_AUDITSYSCALL
1911 .\" Added in 2.6.25; read-only; only readable by real UID
1913 .\" FIXME Describe /proc/[pid]/sched
1915 .\" CONFIG_SCHED_DEBUG, and additional fields if CONFIG_SCHEDSTATS
1916 .\" Displays various scheduling parameters
1917 .\" This file can be written, to reset stats
1918 .\" The set of fields exposed by this file have changed
1919 .\" significantly over time.
1920 .\" commit 43ae34cb4cd650d1eb4460a8253a8e747ba052ac
1922 .\" FIXME Describe /proc/[pid]/schedstats and
1923 .\" /proc/[pid]/task/[tid]/schedstats
1925 .\" CONFIG_SCHEDSTATS
1927 .IR /proc/[pid]/setgroups " (since Linux 3.19)"
1929 .BR user_namespaces (7).
1931 .IR /proc/[pid]/smaps " (since Linux 2.6.14)"
1932 This file shows memory consumption for each of the process's mappings.
1935 command displays similar information,
1936 in a form that may be easier for parsing.)
1937 For each mapping there is a series of lines such as the following:
1941 00400000\-0048a000 r\-xp 00000000 fd:03 960637 /bin/bash
1945 Shared_Clean: 452 kB
1952 ShmemHugePages: 0 kB
1953 ShmemPmdMapped: 0 kB
1955 KernelPageSize: 4 kB
1957 KernelPageSize: 4 kB
1961 VmFlags: rd ex mr mw me dw
1965 The first of these lines shows the same information as is displayed
1967 .IR /proc/[pid]/maps .
1968 The following lines show the size of the mapping,
1969 the amount of the mapping that is currently resident in RAM ("Rss"),
1970 the process's proportional share of this mapping ("Pss"),
1971 the number of clean and dirty shared pages in the mapping,
1972 and the number of clean and dirty private pages in the mapping.
1973 "Referenced" indicates the amount of memory currently marked as
1974 referenced or accessed.
1975 "Anonymous" shows the amount of memory
1976 that does not belong to any file.
1977 "Swap" shows how much
1978 would-be-anonymous memory is also used, but out on swap.
1980 The "KernelPageSize" line (available since Linux 2.6.29)
1981 is the page size used by the kernel to back the virtual memory area.
1982 This matches the size used by the MMU in the majority of cases.
1983 However, one counter-example occurs on PPC64 kernels
1984 whereby a kernel using 64 kB as a base page size may still use 4 kB
1985 pages for the MMU on older processors.
1986 To distinguish the two attributes, the "MMUPageSize" line
1987 (also available since Linux 2.6.29)
1988 reports the page size used by the MMU.
1990 The "Locked" indicates whether the mapping is locked in memory
1993 The "ProtectionKey" line (available since Linux 4.9, on x86 only)
1994 contains the memory protection key (see
1996 associated with the virtual memory area.
1997 This entry is present only if the kernel was built with the
1998 .B CONFIG_X86_INTEL_MEMORY_PROTECTION_KEYS
1999 configuration option (since Linux 4.6).
2001 The "VmFlags" line (available since Linux 3.8)
2002 represents the kernel flags associated with the virtual memory area,
2003 encoded using the following two-letter codes:
2013 gd - stack segment grows down
2015 dw - disabled write to the mapped file
2016 lo - pages are locked in memory
2017 io - memory mapped I/O area
2018 sr - sequential read advise provided
2019 rr - random read advise provided
2020 dc - do not copy area on fork
2021 de - do not expand area on remapping
2022 ac - area is accountable
2023 nr - swap space is not reserved for the area
2024 ht - area uses huge tlb pages
2025 sf - perform synchronous page faults (since Linux 4.15)
2026 nl - non-linear mapping (removed in Linux 4.0)
2027 ar - architecture specific flag
2028 wf - wipe on fork (since Linux 4.14)
2029 dd - do not include area into core dump
2030 sd - soft-dirty flag (since Linux 3.13)
2032 hg - huge page advise flag
2033 nh - no-huge page advise flag
2034 mg - mergeable advise flag
2035 um - userfaultfd missing pages tracking (since Linux 4.3)
2036 uw - userfaultfd wprotect pages tracking (since Linux 4.3)
2039 .IR /proc/[pid]/smaps
2040 file is present only if the
2041 .B CONFIG_PROC_PAGE_MONITOR
2042 kernel configuration option is enabled.
2044 .IR /proc/[pid]/stack " (since Linux 2.6.29)"
2045 .\" 2ec220e27f5040aec1e88901c1b6ea3d135787ad
2046 This file provides a symbolic trace of the function calls in this
2047 process's kernel stack.
2048 This file is provided only if the kernel was built with the
2049 .B CONFIG_STACKTRACE
2050 configuration option.
2052 Permission to access this file is governed by a ptrace access mode
2053 .B PTRACE_MODE_ATTACH_FSCREDS
2058 Status information about the process.
2061 It is defined in the kernel source file
2062 .IR fs/proc/array.c "."
2064 The fields, in order, with their proper
2066 format specifiers, are listed below.
2067 Whether or not certain of these fields display valid information is governed by
2068 a ptrace access mode
2069 .BR PTRACE_MODE_READ_FSCREDS " | " PTRACE_MODE_NOAUDIT
2072 If the check denies access, then the field value is displayed as 0.
2073 The affected fields are indicated with the marking [PT].
2081 The filename of the executable, in parentheses.
2084 (16) characters (including the terminating null byte) are silently truncated.
2085 This is visible whether or not the executable is swapped out.
2087 (3) \fIstate\fP \ %c
2088 One of the following characters, indicating process state:
2093 Sleeping in an interruptible wait
2095 Waiting in uninterruptible
2100 Stopped (on a signal) or (before Linux 2.6.33) trace stopped
2102 .\" commit 44d90df6b757c59651ddd55f1a84f28132b50d29
2103 Tracing stop (Linux 2.6.33 onward)
2105 Paging (only before Linux 2.6.0)
2107 Dead (from Linux 2.6.0 onward)
2109 .\" commit 44d90df6b757c59651ddd55f1a84f28132b50d29
2110 Dead (Linux 2.6.33 to
2111 .\" commit 74e37200de8e9c4e09b70c21c3f13c2071e77457
2114 .\" commit 44d90df6b757c59651ddd55f1a84f28132b50d29
2115 Wakekill (Linux 2.6.33 to
2116 .\" commit 74e37200de8e9c4e09b70c21c3f13c2071e77457
2119 .\" commit 44d90df6b757c59651ddd55f1a84f28132b50d29
2120 Waking (Linux 2.6.33 to
2121 .\" commit 74e37200de8e9c4e09b70c21c3f13c2071e77457
2124 .\" commit f2530dc71cf0822f90bb63ea4600caaef33a66bb
2125 Parked (Linux 3.9 to
2126 .\" commit 74e37200de8e9c4e09b70c21c3f13c2071e77457
2131 The PID of the parent of this process.
2134 The process group ID of the process.
2136 (6) \fIsession\fP \ %d
2137 The session ID of the process.
2139 (7) \fItty_nr\fP \ %d
2140 The controlling terminal of the process.
2141 (The minor device number is contained in the combination of bits
2142 31 to 20 and 7 to 0;
2143 the major device number is in bits 15 to 8.)
2145 (8) \fItpgid\fP \ %d
2146 .\" This field and following, up to and including wchan added 0.99.1
2147 The ID of the foreground process group of the controlling
2148 terminal of the process.
2150 (9) \fIflags\fP \ %u
2151 The kernel flags word of the process.
2153 see the PF_* defines in the Linux kernel source file
2154 .IR include/linux/sched.h .
2155 Details depend on the kernel version.
2157 The format for this field was %lu before Linux 2.6.
2159 (10) \fIminflt\fP \ %lu
2160 The number of minor faults the process has made which have not
2161 required loading a memory page from disk.
2163 (11) \fIcminflt\fP \ %lu
2164 The number of minor faults that the process's
2165 waited-for children have made.
2167 (12) \fImajflt\fP \ %lu
2168 The number of major faults the process has made which have
2169 required loading a memory page from disk.
2171 (13) \fIcmajflt\fP \ %lu
2172 The number of major faults that the process's
2173 waited-for children have made.
2175 (14) \fIutime\fP \ %lu
2176 Amount of time that this process has been scheduled in user mode,
2177 measured in clock ticks (divide by
2178 .IR sysconf(_SC_CLK_TCK) ).
2179 This includes guest time, \fIguest_time\fP
2180 (time spent running a virtual CPU, see below),
2181 so that applications that are not aware of the guest time field
2182 do not lose that time from their calculations.
2184 (15) \fIstime\fP \ %lu
2185 Amount of time that this process has been scheduled in kernel mode,
2186 measured in clock ticks (divide by
2187 .IR sysconf(_SC_CLK_TCK) ).
2189 (16) \fIcutime\fP \ %ld
2190 Amount of time that this process's
2191 waited-for children have been scheduled in user mode,
2192 measured in clock ticks (divide by
2193 .IR sysconf(_SC_CLK_TCK) ).
2196 This includes guest time, \fIcguest_time\fP
2197 (time spent running a virtual CPU, see below).
2199 (17) \fIcstime\fP \ %ld
2200 Amount of time that this process's
2201 waited-for children have been scheduled in kernel mode,
2202 measured in clock ticks (divide by
2203 .IR sysconf(_SC_CLK_TCK) ).
2205 (18) \fIpriority\fP \ %ld
2206 (Explanation for Linux 2.6)
2207 For processes running a real-time scheduling policy
2210 .BR sched_setscheduler (2)),
2211 this is the negated scheduling priority, minus one;
2212 that is, a number in the range \-2 to \-100,
2213 corresponding to real-time priorities 1 to 99.
2214 For processes running under a non-real-time scheduling policy,
2215 this is the raw nice value
2216 .RB ( setpriority (2))
2217 as represented in the kernel.
2218 The kernel stores nice values as numbers
2219 in the range 0 (high) to 39 (low),
2220 corresponding to the user-visible nice range of \-20 to 19.
2222 Before Linux 2.6, this was a scaled value based on
2223 the scheduler weighting given to this process.
2224 .\" And back in kernel 1.2 days things were different again.
2226 (19) \fInice\fP \ %ld
2228 .BR setpriority (2)),
2229 a value in the range 19 (low priority) to \-20 (high priority).
2230 .\" Back in kernel 1.2 days things were different.
2232 .\" \fIcounter\fP %ld
2233 .\" The current maximum size in jiffies of the process's next timeslice,
2234 .\" or what is currently left of its current timeslice, if it is the
2235 .\" currently running process.
2237 .\" \fItimeout\fP %u
2238 .\" The time in jiffies of the process's next timeout.
2239 .\" timeout was removed sometime around 2.1/2.2
2241 (20) \fInum_threads\fP \ %ld
2242 Number of threads in this process (since Linux 2.6).
2243 Before kernel 2.6, this field was hard coded to 0 as a placeholder
2244 for an earlier removed field.
2246 (21) \fIitrealvalue\fP \ %ld
2247 The time in jiffies before the next
2249 is sent to the process due to an interval timer.
2250 Since kernel 2.6.17, this field is no longer maintained,
2251 and is hard coded as 0.
2253 (22) \fIstarttime\fP \ %llu
2254 The time the process started after system boot.
2255 In kernels before Linux 2.6, this value was expressed in jiffies.
2256 Since Linux 2.6, the value is expressed in clock ticks (divide by
2257 .IR sysconf(_SC_CLK_TCK) ).
2259 The format for this field was %lu before Linux 2.6.
2261 (23) \fIvsize\fP \ %lu
2262 Virtual memory size in bytes.
2264 (24) \fIrss\fP \ %ld
2265 Resident Set Size: number of pages the process has in real memory.
2266 This is just the pages which
2267 count toward text, data, or stack space.
2268 This does not include pages
2269 which have not been demand-loaded in, or which are swapped out.
2270 This value is inaccurate; see
2271 .I /proc/[pid]/statm
2274 (25) \fIrsslim\fP \ %lu
2275 Current soft limit in bytes on the rss of the process;
2276 see the description of
2281 (26) \fIstartcode\fP \ %lu \ [PT]
2282 The address above which program text can run.
2284 (27) \fIendcode\fP \ %lu \ [PT]
2285 The address below which program text can run.
2287 (28) \fIstartstack\fP \ %lu \ [PT]
2288 The address of the start (i.e., bottom) of the stack.
2290 (29) \fIkstkesp\fP \ %lu \ [PT]
2291 The current value of ESP (stack pointer), as found in the
2292 kernel stack page for the process.
2294 (30) \fIkstkeip\fP \ %lu \ [PT]
2295 The current EIP (instruction pointer).
2297 (31) \fIsignal\fP \ %lu
2298 The bitmap of pending signals, displayed as a decimal number.
2299 Obsolete, because it does not provide information on real-time signals; use
2300 .I /proc/[pid]/status
2303 (32) \fIblocked\fP \ %lu
2304 The bitmap of blocked signals, displayed as a decimal number.
2305 Obsolete, because it does not provide information on real-time signals; use
2306 .I /proc/[pid]/status
2309 (33) \fIsigignore\fP \ %lu
2310 The bitmap of ignored signals, displayed as a decimal number.
2311 Obsolete, because it does not provide information on real-time signals; use
2312 .I /proc/[pid]/status
2315 (34) \fIsigcatch\fP \ %lu
2316 The bitmap of caught signals, displayed as a decimal number.
2317 Obsolete, because it does not provide information on real-time signals; use
2318 .I /proc/[pid]/status
2321 (35) \fIwchan\fP \ %lu \ [PT]
2322 This is the "channel" in which the process is waiting.
2323 It is the address of a location in the kernel where the process is sleeping.
2324 The corresponding symbolic name can be found in
2325 .IR /proc/[pid]/wchan .
2327 (36) \fInswap\fP \ %lu
2328 .\" nswap was added in 2.0
2329 Number of pages swapped (not maintained).
2331 (37) \fIcnswap\fP \ %lu
2332 .\" cnswap was added in 2.0
2333 Cumulative \fInswap\fP for child processes (not maintained).
2335 (38) \fIexit_signal\fP \ %d \ (since Linux 2.1.22)
2336 Signal to be sent to parent when we die.
2338 (39) \fIprocessor\fP \ %d \ (since Linux 2.2.8)
2339 CPU number last executed on.
2341 (40) \fIrt_priority\fP \ %u \ (since Linux 2.5.19)
2342 Real-time scheduling priority, a number in the range 1 to 99 for
2343 processes scheduled under a real-time policy,
2344 or 0, for non-real-time processes (see
2345 .BR sched_setscheduler (2)).
2347 (41) \fIpolicy\fP \ %u \ (since Linux 2.5.19)
2348 Scheduling policy (see
2349 .BR sched_setscheduler (2)).
2350 Decode using the SCHED_* constants in
2353 The format for this field was %lu before Linux 2.6.22.
2355 (42) \fIdelayacct_blkio_ticks\fP \ %llu \ (since Linux 2.6.18)
2356 Aggregated block I/O delays, measured in clock ticks (centiseconds).
2358 (43) \fIguest_time\fP \ %lu \ (since Linux 2.6.24)
2359 Guest time of the process (time spent running a virtual CPU
2360 for a guest operating system), measured in clock ticks (divide by
2361 .IR sysconf(_SC_CLK_TCK) ).
2363 (44) \fIcguest_time\fP \ %ld \ (since Linux 2.6.24)
2364 Guest time of the process's children, measured in clock ticks (divide by
2365 .IR sysconf(_SC_CLK_TCK) ).
2367 (45) \fIstart_data\fP \ %lu \ (since Linux 3.3) \ [PT]
2368 .\" commit b3f7f573a20081910e34e99cbc91831f4f02f1ff
2369 Address above which program initialized and
2370 uninitialized (BSS) data are placed.
2372 (46) \fIend_data\fP \ %lu \ (since Linux 3.3) \ [PT]
2373 .\" commit b3f7f573a20081910e34e99cbc91831f4f02f1ff
2374 Address below which program initialized and
2375 uninitialized (BSS) data are placed.
2377 (47) \fIstart_brk\fP \ %lu \ (since Linux 3.3) \ [PT]
2378 .\" commit b3f7f573a20081910e34e99cbc91831f4f02f1ff
2379 Address above which program heap can be expanded with
2382 (48) \fIarg_start\fP \ %lu \ (since Linux 3.5) \ [PT]
2383 .\" commit 5b172087f99189416d5f47fd7ab5e6fb762a9ba3
2384 Address above which program command-line arguments
2388 (49) \fIarg_end\fP \ %lu \ (since Linux 3.5) \ [PT]
2389 .\" commit 5b172087f99189416d5f47fd7ab5e6fb762a9ba3
2390 Address below program command-line arguments
2394 (50) \fIenv_start\fP \ %lu \ (since Linux 3.5) \ [PT]
2395 .\" commit 5b172087f99189416d5f47fd7ab5e6fb762a9ba3
2396 Address above which program environment is placed.
2398 (51) \fIenv_end\fP \ %lu \ (since Linux 3.5) \ [PT]
2399 .\" commit 5b172087f99189416d5f47fd7ab5e6fb762a9ba3
2400 Address below which program environment is placed.
2402 (52) \fIexit_code\fP \ %d \ (since Linux 3.5) \ [PT]
2403 .\" commit 5b172087f99189416d5f47fd7ab5e6fb762a9ba3
2404 The thread's exit status in the form reported by
2408 .I /proc/[pid]/statm
2409 Provides information about memory usage, measured in pages.
2414 size (1) total program size
2415 (same as VmSize in \fI/proc/[pid]/status\fP)
2416 resident (2) resident set size
2417 (inaccurate; same as VmRSS in \fI/proc/[pid]/status\fP)
2418 shared (3) number of resident shared pages
2419 (i.e., backed by a file)
2420 (inaccurate; same as RssFile+RssShmem in
2421 \fI/proc/[pid]/status\fP)
2422 text (4) text (code)
2423 .\" (not including libs; broken, includes data segment)
2424 lib (5) library (unused since Linux 2.6; always 0)
2425 data (6) data + stack
2426 .\" (including libs; broken, includes library text)
2427 dt (7) dirty pages (unused since Linux 2.6; always 0)
2431 .\" See SPLIT_RSS_COUNTING in the kernel.
2432 .\" Inaccuracy is bounded by TASK_RSS_EVENTS_THRESH.
2433 Some of these values are inaccurate because
2434 of a kernel-internal scalability optimization.
2435 If accurate values are required, use
2436 .I /proc/[pid]/smaps
2438 .I /proc/[pid]/smaps_rollup
2439 instead, which are much slower but provide accurate, detailed information.
2441 .I /proc/[pid]/status
2442 Provides much of the information in
2445 .I /proc/[pid]/statm
2446 in a format that's easier for humans to parse.
2451 .RB "$" " cat /proc/$$/status"
2460 Uid: 1000 1000 1000 1000
2461 Gid: 100 100 100 100
2484 HugetlbPages: 0 kB # 4.4
2485 CoreDumping: 0 # 4.15
2488 SigPnd: 0000000000000000
2489 ShdPnd: 0000000000000000
2490 SigBlk: 0000000000010000
2491 SigIgn: 0000000000384004
2492 SigCgt: 000000004b813efb
2493 CapInh: 0000000000000000
2494 CapPrm: 0000000000000000
2495 CapEff: 0000000000000000
2496 CapBnd: ffffffffffffffff
2497 CapAmb: 0000000000000000
2500 Speculation_Store_Bypass: vulnerable
2501 Cpus_allowed: 00000001
2502 Cpus_allowed_list: 0
2504 Mems_allowed_list: 0
2505 voluntary_ctxt_switches: 150
2506 nonvoluntary_ctxt_switches: 545
2510 The fields are as follows:
2514 Command run by this process.
2517 (16) characters (including the terminating null byte) are silently truncated.
2520 Process umask, expressed in octal with a leading zero; see
2525 Current state of the process.
2537 Thread group ID (i.e., Process ID).
2540 NUMA group ID (0 if none; since Linux 3.13).
2547 PID of parent process.
2550 PID of process tracing this process (0 if not being traced).
2553 Real, effective, saved set, and filesystem UIDs (GIDs).
2556 Number of file descriptor slots currently allocated.
2559 Supplementary group list.
2562 Thread group ID (i.e., PID) in each of the PID namespaces of which
2565 The leftmost entry shows the value with respect to the PID namespace
2566 of the process that mounted this procfs (or the root namespace
2567 if mounted by the kernel),
2568 followed by the value in successively nested inner namespaces.
2569 .\" commit e4bc33245124db69b74a6d853ac76c2976f472d5
2573 Thread ID in each of the PID namespaces of which
2576 The fields are ordered as for
2581 Process group ID in each of the PID namespaces of which
2584 The fields are ordered as for
2589 descendant namespace session ID hierarchy
2590 Session ID in each of the PID namespaces of which
2593 The fields are ordered as for
2598 Peak virtual memory size.
2601 Virtual memory size.
2604 Locked memory size (see
2609 .\" commit bc3e53f682d93df677dbd5006a404722b3adfe18
2611 These are pages that can't be moved because something needs to
2612 directly access physical memory.
2615 Peak resident set size ("high water mark").
2616 This value is inaccurate; see
2617 .I /proc/[pid]/statm
2622 Note that the value here is the sum of
2627 This value is inaccurate; see
2628 .I /proc/[pid]/statm
2632 Size of resident anonymous memory.
2633 .\" commit bf9683d6990589390b5178dafe8fd06808869293
2635 This value is inaccurate; see
2636 .I /proc/[pid]/statm
2640 Size of resident file mappings.
2641 .\" commit bf9683d6990589390b5178dafe8fd06808869293
2643 This value is inaccurate; see
2644 .I /proc/[pid]/statm
2648 Size of resident shared memory (includes System V shared memory,
2651 and shared anonymous mappings).
2652 .\" commit bf9683d6990589390b5178dafe8fd06808869293
2655 .IR VmData ", " VmStk ", " VmExe
2656 Size of data, stack, and text segments.
2657 This value is inaccurate; see
2658 .I /proc/[pid]/statm
2662 Shared library code size.
2665 Page table entries size (since Linux 2.6.10).
2668 .\" commit dc6c9a35b66b520cf67e05d8ca60ebecad3b0479
2669 Size of second-level page tables (added in Linux 4.0; removed in Linux 4.15).
2672 .\" commit b084d4353ff99d824d3bc5a5c2c22c70b1fba722
2673 Swapped-out virtual memory size by anonymous private pages;
2674 shmem swap usage is not included (since Linux 2.6.34).
2675 This value is inaccurate; see
2676 .I /proc/[pid]/statm
2680 Size of hugetlb memory portions
2681 .\" commit 5d317b2b6536592a9b51fe65faed43d65ca9158e
2685 Contains the value 1 if the process is currently dumping core,
2687 .\" commit c643401218be0f4ab3522e0c0a63016596d6e9ca
2689 This information can be used by a monitoring process to avoid killing
2690 a process that is currently dumping core,
2691 which could result in a corrupted core dump file.
2694 Number of threads in process containing this thread.
2697 This field contains two slash-separated numbers that relate to
2698 queued signals for the real user ID of this process.
2699 The first of these is the number of currently queued
2700 signals for this real user ID, and the second is the
2701 resource limit on the number of queued signals for this process
2702 (see the description of
2703 .BR RLIMIT_SIGPENDING
2707 .IR SigPnd ", " ShdPnd
2708 Mask (expressed in hexadecimal)
2709 of signals pending for thread and for process as a whole (see
2714 .IR SigBlk ", " SigIgn ", " SigCgt
2715 Masks (expressed in hexadecimal)
2716 indicating signals being blocked, ignored, and caught (see
2719 .IR CapInh ", " CapPrm ", " CapEff
2720 Masks (expressed in hexadecimal)
2721 of capabilities enabled in inheritable, permitted, and effective sets
2723 .BR capabilities (7)).
2726 Capability bounding set, expressed in hexadecimal
2727 (since Linux 2.6.26, see
2728 .BR capabilities (7)).
2731 Ambient capability set, expressed in hexadecimal
2732 (since Linux 4.3, see
2733 .BR capabilities (7)).
2736 .\" commit af884cd4a5ae62fcf5e321fecf0ec1014730353d
2740 (since Linux 4.10, see
2744 .\" commit 2f4b3bf6b2318cfaa177ec5a802f4d8d6afbd816
2745 Seccomp mode of the process
2746 (since Linux 3.8, see
2749 .BR SECCOMP_MODE_DISABLED ;
2751 .BR SECCOMP_MODE_STRICT ;
2753 .BR SECCOMP_MODE_FILTER .
2754 This field is provided only if the kernel was built with the
2756 kernel configuration option enabled.
2758 .IR Speculation_Store_Bypass
2759 .\" commit fae1fa0fc6cca8beee3ab8ed71d54f9a78fa3f64
2760 Speculation flaw mitigation state
2761 (since Linux 4.17, see
2765 Hexadecimal mask of CPUs on which this process may run
2766 (since Linux 2.6.24, see
2769 .IR Cpus_allowed_list
2770 Same as previous, but in "list format"
2771 (since Linux 2.6.26, see
2775 Mask of memory nodes allowed to this process
2776 (since Linux 2.6.24, see
2779 .IR Mems_allowed_list
2780 Same as previous, but in "list format"
2781 (since Linux 2.6.26, see
2784 .IR voluntary_ctxt_switches ", " nonvoluntary_ctxt_switches
2785 Number of voluntary and involuntary context switches (since Linux 2.6.23).
2788 .IR /proc/[pid]/syscall " (since Linux 2.6.27)"
2789 .\" commit ebcb67341fee34061430f3367f2e507e52ee051b
2790 This file exposes the system call number and argument registers for the
2791 system call currently being executed by the process,
2792 followed by the values of the stack pointer and program counter registers.
2793 The values of all six argument registers are exposed,
2794 although most system calls use fewer registers.
2796 If the process is blocked, but not in a system call,
2797 then the file displays \-1 in place of the system call number,
2798 followed by just the values of the stack pointer and program counter.
2799 If process is not blocked, then the file contains just the string "running".
2801 This file is present only if the kernel was configured with
2802 .BR CONFIG_HAVE_ARCH_TRACEHOOK .
2804 Permission to access this file is governed by a ptrace access mode
2805 .B PTRACE_MODE_ATTACH_FSCREDS
2809 .IR /proc/[pid]/task " (since Linux 2.6.0)"
2810 .\" Precisely: Linux 2.6.0-test6
2811 This is a directory that contains one subdirectory
2812 for each thread in the process.
2813 The name of each subdirectory is the numerical thread ID
2818 Within each of these subdirectories, there is a set of
2819 files with the same names and contents as under the
2822 For attributes that are shared by all threads, the contents for
2823 each of the files under the
2825 subdirectories will be the same as in the corresponding
2829 (e.g., in a multithreaded process, all of the
2831 files will have the same value as the
2833 file in the parent directory, since all of the threads in a process
2834 share a working directory).
2835 For attributes that are distinct for each thread,
2836 the corresponding files under
2838 may have different values (e.g., various fields in each of the
2839 .I task/[tid]/status
2840 files may be different for each thread),
2841 .\" in particular: "children" :/
2842 or they might not exist in
2846 .\" The following was still true as at kernel 2.6.13
2847 In a multithreaded process, the contents of the
2849 directory are not available if the main thread has already terminated
2850 (typically by calling
2851 .BR pthread_exit (3)).
2853 .IR /proc/[pid]/task/[tid]/children " (since Linux 3.5)"
2854 .\" commit 818411616baf46ceba0cff6f05af3a9b294734f7
2855 A space-separated list of child tasks of this task.
2856 Each child task is represented by its TID.
2858 .\" see comments in get_children_pid() in fs/proc/array.c
2859 This option is intended for use by the checkpoint-restore (CRIU) system,
2860 and reliably provides a list of children only if all of the child processes
2861 are stopped or frozen.
2862 It does not work properly if children of the target task exit while
2863 the file is being read!
2864 Exiting children may cause non-exiting children to be omitted from the list.
2865 This makes this interface even more unreliable than classic PID-based
2866 approaches if the inspected task and its children aren't frozen,
2867 and most code should probably not use this interface.
2869 Until Linux 4.2, the presence of this file was governed by the
2870 .B CONFIG_CHECKPOINT_RESTORE
2871 kernel configuration option.
2873 .\" commit 2e13ba54a2682eea24918b87ad3edf70c2cf085b
2874 it is governed by the
2875 .B CONFIG_PROC_CHILDREN
2878 .IR /proc/[pid]/timers " (since Linux 3.10)"
2879 .\" commit 5ed67f05f66c41e39880a6d61358438a25f9fee5
2880 .\" commit 48f6a7a511ef8823fdff39afee0320092d43a8a0
2881 A list of the POSIX timers for this process.
2882 Each timer is listed with a line that starts with the string "ID:".
2888 signal: 60/00007fff86e452a8
2889 notify: signal/pid.2634
2892 signal: 60/00007fff86e452a8
2893 notify: signal/pid.2634
2898 The lines shown for each timer have the following meanings:
2902 The ID for this timer.
2903 This is not the same as the timer ID returned by
2904 .BR timer_create (2);
2905 rather, it is the same kernel-internal ID that is available via the
2913 This is the signal number that this timer uses to deliver notifications
2914 followed by a slash, and then the
2916 value supplied to the signal handler.
2917 Valid only for timers that notify via a signal.
2920 The part before the slash specifies the mechanism
2921 that this timer uses to deliver notifications,
2922 and is one of "thread", "signal", or "none".
2923 Immediately following the slash is either the string "tid" for timers
2926 notification, or "pid" for timers that notify by other mechanisms.
2927 Following the "." is the PID of the process
2928 (or the kernel thread ID of the thread) that will be delivered
2929 a signal if the timer delivers notifications via a signal.
2932 This field identifies the clock that the timer uses for measuring time.
2933 For most clocks, this is a number that matches one of the user-space
2935 constants exposed via
2937 .B CLOCK_PROCESS_CPUTIME_ID
2938 timers display with a value of \-6
2940 .B CLOCK_THREAD_CPUTIME_ID
2941 timers display with a value of \-2
2945 This file is available only when the kernel was configured with
2946 .BR CONFIG_CHECKPOINT_RESTORE .
2948 .IR /proc/[pid]/timerslack_ns " (since Linux 4.6)"
2949 .\" commit da8b44d5a9f8bf26da637b7336508ca534d6b319
2950 .\" commit 5de23d435e88996b1efe0e2cebe242074ce67c9e
2951 This file exposes the process's "current" timer slack value,
2952 expressed in nanoseconds.
2953 The file is writable,
2954 allowing the process's timer slack value to be changed.
2955 Writing 0 to this file resets the "current" timer slack to the
2956 "default" timer slack value.
2957 For further details, see the discussion of
2958 .BR PR_SET_TIMERSLACK
2963 permission to access this file was governed by a ptrace access mode
2964 .B PTRACE_MODE_ATTACH_FSCREDS
2967 However, this was subsequently deemed too strict a requirement
2968 (and had the side effect that requiring a process to have the
2970 capability would also allow it to view and change any process's memory).
2971 Therefore, since Linux 4.9,
2972 .\" commit 7abbaf94049914f074306d960b0f968ffe52e59f
2975 capability is required to access this file.
2977 .IR /proc/[pid]/uid_map " (since Linux 3.5)"
2979 .BR user_namespaces (7).
2981 .IR /proc/[pid]/wchan " (since Linux 2.6.0)"
2982 The symbolic name corresponding to the location
2983 in the kernel where the process is sleeping.
2985 Permission to access this file is governed by a ptrace access mode
2986 .B PTRACE_MODE_READ_FSCREDS
2991 There is a numerical subdirectory for each running thread
2992 that is not a thread group leader
2993 (i.e., a thread whose thread ID is not the same as its process ID);
2994 the subdirectory is named by the thread ID.
2995 Each one of these subdirectories contains files and subdirectories
2996 exposing information about the thread with the thread ID
2998 The contents of these directories are the same as the corresponding
2999 .IR /proc/[pid]/task/[tid]
3006 visible when iterating through
3012 visible when one uses
3014 to view the contents of
3016 However, the pathnames of these directories are visible to
3017 (i.e., usable as arguments in)
3018 system calls that operate on pathnames.
3021 Advanced power management version and battery information when
3023 is defined at kernel compilation time.
3026 This file contains information which is used for diagnosing memory
3027 fragmentation issues.
3028 Each line starts with the identification of the node and the name
3029 of the zone which together identify a memory region.
3031 followed by the count of available chunks of a certain order in
3032 which these zones are split.
3033 The size in bytes of a certain order is given by the formula:
3035 (2^order)\ *\ PAGE_SIZE
3037 The binary buddy allocator algorithm inside the kernel will split
3038 one chunk into two chunks of a smaller order (thus with half the
3039 size) or combine two contiguous chunks into one larger chunk of
3040 a higher order (thus with double the size) to satisfy allocation
3041 requests and to counter memory fragmentation.
3042 The order matches the column number, when starting to count at zero.
3044 For example on an x86-64 system:
3047 Node 0, zone DMA 1 1 1 0 2 1 1 0 1 1 3
3048 Node 0, zone DMA32 65 47 4 81 52 28 13 10 5 1 404
3049 Node 0, zone Normal 216 55 189 101 84 38 37 27 5 3 587
3053 In this example, there is one node containing three zones and there
3054 are 11 different chunk sizes.
3055 If the page size is 4 kilobytes, then the first zone called
3057 (on x86 the first 16 megabyte of memory) has 1 chunk of 4 kilobytes
3058 (order 0) available and has 3 chunks of 4 megabytes (order 10) available.
3060 If the memory is heavily fragmented, the counters for higher
3061 order chunks will be zero and allocation of large contiguous areas
3064 Further information about the zones can be found in
3065 .IR /proc/zoneinfo .
3068 Contains subdirectories for installed busses.
3071 Subdirectory for PCMCIA devices when
3073 is set at kernel compilation time.
3075 .I /proc/bus/pccard/drivers
3078 Contains various bus subdirectories and pseudo-files containing
3079 information about PCI busses, installed devices, and device
3081 Some of these files are not ASCII.
3083 .I /proc/bus/pci/devices
3084 Information about PCI devices.
3085 They may be accessed through
3090 .IR /proc/cgroups " (since Linux 2.6.24)"
3095 Arguments passed to the Linux kernel at boot time.
3096 Often done via a boot manager such as
3101 .IR /proc/config.gz " (since Linux 2.6)"
3102 This file exposes the configuration options that were used
3103 to build the currently running kernel,
3104 in the same format as they would be shown in the
3106 file that resulted when configuring the kernel (using
3107 .IR "make xconfig" ,
3110 The file contents are compressed; view or search them using
3114 As long as no changes have been made to the following file,
3117 are the same as those provided by:
3121 cat /lib/modules/$(uname \-r)/build/.config
3126 is provided only if the kernel is configured with
3127 .BR CONFIG_IKCONFIG_PROC .
3130 A list of the ciphers provided by the kernel crypto API.
3131 For details, see the kernel
3132 .I "Linux Kernel Crypto API"
3133 documentation available under the kernel source directory
3134 .I Documentation/crypto/
3135 .\" commit 3b72c814a8e8cd638e1ba0da4dfce501e9dff5af
3137 .I Documentation/DocBook
3139 the documentation can be built using a command such as
3141 in the root directory of the kernel source tree).
3144 This is a collection of CPU and system architecture dependent items,
3145 for each supported architecture a different list.
3146 Two common entries are \fIprocessor\fP which gives CPU number and
3147 \fIbogomips\fP; a system constant that is calculated
3148 during kernel initialization.
3149 SMP machines have information for
3153 command gathers its information from this file.
3156 Text listing of major numbers and device groups.
3157 This can be used by MAKEDEV scripts for consistency with the kernel.
3159 .IR /proc/diskstats " (since Linux 2.5.69)"
3160 This file contains disk I/O statistics for each disk device.
3161 See the Linux kernel source file
3162 .I Documentation/iostats.txt
3163 for further information.
3166 This is a list of the registered \fIISA\fP DMA (direct memory access)
3172 .I /proc/execdomains
3173 List of the execution domains (ABI personalities).
3176 Frame buffer information when
3178 is defined during kernel compilation.
3180 .I /proc/filesystems
3181 A text listing of the filesystems which are supported by the kernel,
3182 namely filesystems which were compiled into the kernel or whose kernel
3183 modules are currently loaded.
3185 .BR filesystems (5).)
3186 If a filesystem is marked with "nodev",
3187 this means that it does not require a block device to be mounted
3188 (e.g., virtual filesystem, network filesystem).
3190 Incidentally, this file may be used by
3192 when no filesystem is specified and it didn't manage to determine the
3194 Then filesystems contained in this file are tried
3195 (excepted those that are marked with "nodev").
3198 .\" FIXME Much more needs to be said about /proc/fs
3200 Contains subdirectories that in turn contain files
3201 with information about (certain) mounted filesystems.
3205 exists on systems with the IDE bus.
3206 There are directories for each IDE channel and attached device.
3211 cache buffer size in KB
3212 capacity number of sectors
3213 driver driver version
3214 geometry physical and logical geometry
3215 identify in hexadecimal
3217 model manufacturer\(aqs model number
3218 settings drive settings
3219 smart_thresholds IDE disk management thresholds (in hex)
3220 smart_values IDE disk management values (in hex)
3226 utility provides access to this information in a friendly format.
3229 This is used to record the number of interrupts per CPU per IO device.
3231 for the i386 and x86-64 architectures, at least, this also includes
3232 interrupts internal to the system (that is, not associated with a device
3233 as such), such as NMI (nonmaskable interrupt), LOC (local timer interrupt),
3234 and for SMP systems, TLB (TLB flush interrupt), RES (rescheduling
3235 interrupt), CAL (remote function call interrupt), and possibly others.
3236 Very easy to read formatting, done in ASCII.
3239 I/O memory map in Linux 2.4.
3242 This is a list of currently registered Input-Output port regions that
3245 .IR /proc/kallsyms " (since Linux 2.5.71)"
3246 This holds the kernel exported symbol definitions used by the
3248 tools to dynamically link and bind loadable modules.
3249 In Linux 2.5.47 and earlier, a similar file with slightly different syntax
3254 This file represents the physical memory of the system and is stored
3255 in the ELF core file format.
3256 With this pseudo-file, and an unstripped
3258 .RI ( /usr/src/linux/vmlinux )
3259 binary, GDB can be used to
3260 examine the current state of any kernel data structures.
3262 The total length of the file is the size of physical memory (RAM) plus
3265 .IR /proc/keys " (since Linux 2.6.10)"
3269 .IR /proc/key\-users " (since Linux 2.6.10)"
3274 This file can be used instead of the
3276 system call to read kernel messages.
3277 A process must have superuser
3278 privileges to read this file, and only one process should read this
3280 This file should not be read if a syslog process is running
3283 system call facility to log kernel messages.
3285 Information in this file is retrieved with the
3289 .IR /proc/kpagecgroup " (since Linux 4.3)"
3290 .\" commit 80ae2fdceba8313b0433f899bdd9c6c463291a17
3291 This file contains a 64-bit inode number of
3292 the memory cgroup each page is charged to,
3293 indexed by page frame number (see the discussion of
3294 .IR /proc/[pid]/pagemap ).
3297 .IR /proc/kpagecgroup
3298 file is present only if the
3300 kernel configuration option is enabled.
3302 .IR /proc/kpagecount " (since Linux 2.6.25)"
3303 This file contains a 64-bit count of the number of
3304 times each physical page frame is mapped,
3305 indexed by page frame number (see the discussion of
3306 .IR /proc/[pid]/pagemap ).
3309 .IR /proc/kpagecount
3310 file is present only if the
3311 .B CONFIG_PROC_PAGE_MONITOR
3312 kernel configuration option is enabled.
3314 .IR /proc/kpageflags " (since Linux 2.6.25)"
3315 This file contains 64-bit masks corresponding to each physical page frame;
3316 it is indexed by page frame number (see the discussion of
3317 .IR /proc/[pid]/pagemap ).
3318 The bits are as follows:
3331 11 - KPF_MMAP (since Linux 2.6.31)
3332 12 - KPF_ANON (since Linux 2.6.31)
3333 13 - KPF_SWAPCACHE (since Linux 2.6.31)
3334 14 - KPF_SWAPBACKED (since Linux 2.6.31)
3335 15 - KPF_COMPOUND_HEAD (since Linux 2.6.31)
3336 16 - KPF_COMPOUND_TAIL (since Linux 2.6.31)
3337 17 - KPF_HUGE (since Linux 2.6.31)
3338 18 - KPF_UNEVICTABLE (since Linux 2.6.31)
3339 19 - KPF_HWPOISON (since Linux 2.6.31)
3340 20 - KPF_NOPAGE (since Linux 2.6.31)
3341 21 - KPF_KSM (since Linux 2.6.32)
3342 22 - KPF_THP (since Linux 3.4)
3343 23 - KPF_BALLOON (since Linux 3.18)
3344 .\" KPF_BALLOON: commit 09316c09dde33aae14f34489d9e3d243ec0d5938
3345 24 - KPF_ZERO_PAGE (since Linux 4.0)
3346 .\" KPF_ZERO_PAGE: commit 56873f43abdcd574b25105867a990f067747b2f4
3347 25 - KPF_IDLE (since Linux 4.3)
3348 .\" KPF_IDLE: commit f074a8f49eb87cde95ac9d040ad5e7ea4f029738
3350 For further details on the meanings of these bits,
3351 see the kernel source file
3352 .IR Documentation/admin\-guide/mm/pagemap.rst .
3353 Before kernel 2.6.29,
3354 .\" commit ad3bdefe877afb47480418fdb05ecd42842de65e
3355 .\" commit e07a4b9217d1e97d2f3a62b6b070efdc61212110
3361 did not report correctly.
3364 .IR /proc/kpageflags
3365 file is present only if the
3366 .B CONFIG_PROC_PAGE_MONITOR
3367 kernel configuration option is enabled.
3369 .IR /proc/ksyms " (Linux 1.1.23\(en2.5.47)"
3371 .IR /proc/kallsyms .
3374 The first three fields in this file are load average figures
3375 giving the number of jobs in the run queue (state R)
3376 or waiting for disk I/O (state D) averaged over 1, 5, and 15 minutes.
3377 They are the same as the load average numbers given by
3380 The fourth field consists of two numbers separated by a slash (/).
3381 The first of these is the number of currently runnable kernel
3382 scheduling entities (processes, threads).
3383 The value after the slash is the number of kernel scheduling entities
3384 that currently exist on the system.
3385 The fifth field is the PID of the process that was most
3386 recently created on the system.
3389 This file shows current file locks
3390 .RB ( flock "(2) and " fcntl (2))
3394 An example of the content shown in this file is the following:
3398 1: POSIX ADVISORY READ 5433 08:01:7864448 128 128
3399 2: FLOCK ADVISORY WRITE 2001 08:01:7864554 0 EOF
3400 3: FLOCK ADVISORY WRITE 1568 00:2f:32388 0 EOF
3401 4: POSIX ADVISORY WRITE 699 00:16:28457 0 EOF
3402 5: POSIX ADVISORY WRITE 764 00:16:21448 0 0
3403 6: POSIX ADVISORY READ 3548 08:01:7867240 1 1
3404 7: POSIX ADVISORY READ 3548 08:01:7865567 1826 2335
3405 8: OFDLCK ADVISORY WRITE \-1 08:01:8713209 128 191
3409 The fields shown in each line are as follows:
3412 The ordinal position of the lock in the list.
3415 Values that may appear here include:
3419 This is a BSD file lock created using
3423 This is an open file description (OFD) lock created using
3427 This is a POSIX byte-range lock created using
3431 Among the strings that can appear here are the following:
3435 This is an advisory lock.
3438 This is a mandatory lock.
3442 Values that can appear here are:
3446 This is a POSIX or OFD read lock, or a BSD shared lock.
3449 This is a POSIX or OFD write lock, or a BSD exclusive lock.
3452 The PID of the process that owns the lock.
3454 Because OFD locks are not owned by a single process
3455 (since multiple processes may have file descriptors that
3456 refer to the same open file description),
3457 the value \-1 is displayed in this field for OFD locks.
3458 (Before kernel 4.14,
3459 .\" commit 9d5b86ac13c573795525ecac6ed2db39ab23e2a8
3460 a bug meant that the PID of the process that
3461 initially acquired the lock was displayed instead of the value \-1.)
3463 Three colon-separated subfields that identify the major and minor device
3464 ID of the device containing the filesystem where the locked file resides,
3465 followed by the inode number of the locked file.
3467 The byte offset of the first byte of the lock.
3468 For BSD locks, this value is always 0.
3470 The byte offset of the last byte of the lock.
3472 in this field means that the lock extends to the end of the file.
3473 For BSD locks, the value shown is always
3478 .\" commit d67fd44f697dff293d7cdc29af929241b669affe
3479 the list of locks shown in
3481 is filtered to show just the locks for the processes in the PID
3483 .BR pid_namespaces (7))
3486 filesystem was mounted.
3487 (In the initial PID namespace,
3488 there is no filtering of the records shown in this file.)
3492 command provides a bit more information about each lock.
3494 .IR /proc/malloc " (only up to and including Linux 2.2)"
3495 .\" It looks like this only ever did something back in 1.0 days
3496 This file is present only if
3497 .B CONFIG_DEBUG_MALLOC
3498 was defined during compilation.
3501 This file reports statistics about memory usage on the system.
3504 to report the amount of free and used memory (both physical and swap)
3505 on the system as well as the shared memory and buffers used by the
3507 Each line of the file consists of a parameter name, followed by a colon,
3508 the value of the parameter, and an option unit of measurement (e.g., "kB").
3509 The list below describes the parameter names and
3510 the format specifier required to read the field value.
3511 Except as noted below,
3512 all of the fields have been present since at least Linux 2.6.0.
3513 Some fields are displayed only if the kernel was configured
3514 with various options; those dependencies are noted in the list.
3518 Total usable RAM (i.e., physical RAM minus a few reserved
3519 bits and the kernel binary code).
3523 .IR LowFree + HighFree .
3525 .IR MemAvailable " %lu (since Linux 3.14)"
3526 An estimate of how much memory is available for starting new
3527 applications, without swapping.
3530 Relatively temporary storage for raw disk blocks that
3531 shouldn't get tremendously large (20 MB or so).
3534 In-memory cache for files read from the disk (the page cache).
3538 .IR SwapCached " %lu"
3539 Memory that once was swapped out, is swapped back in but
3540 still also is in the swap file.
3541 (If memory pressure is high, these pages
3542 don't need to be swapped out again because they are already
3547 Memory that has been used more recently and usually not
3548 reclaimed unless absolutely necessary.
3551 Memory which has been less recently used.
3552 It is more eligible to be reclaimed for other purposes.
3554 .IR Active(anon) " %lu (since Linux 2.6.28)"
3557 .IR Inactive(anon) " %lu (since Linux 2.6.28)"
3560 .IR Active(file) " %lu (since Linux 2.6.28)"
3563 .IR Inactive(file) " %lu (since Linux 2.6.28)"
3566 .IR Unevictable " %lu (since Linux 2.6.28)"
3567 (From Linux 2.6.28 to 2.6.30,
3568 \fBCONFIG_UNEVICTABLE_LRU\fP was required.)
3571 .IR Mlocked " %lu (since Linux 2.6.28)"
3572 (From Linux 2.6.28 to 2.6.30,
3573 \fBCONFIG_UNEVICTABLE_LRU\fP was required.)
3576 .IR HighTotal " %lu"
3577 (Starting with Linux 2.6.19, \fBCONFIG_HIGHMEM\fP is required.)
3578 Total amount of highmem.
3579 Highmem is all memory above \(ti860 MB of physical memory.
3580 Highmem areas are for use by user-space programs,
3581 or for the page cache.
3582 The kernel must use tricks to access
3583 this memory, making it slower to access than lowmem.
3586 (Starting with Linux 2.6.19, \fBCONFIG_HIGHMEM\fP is required.)
3587 Amount of free highmem.
3590 (Starting with Linux 2.6.19, \fBCONFIG_HIGHMEM\fP is required.)
3591 Total amount of lowmem.
3592 Lowmem is memory which can be used for everything that
3593 highmem can be used for, but it is also available for the
3594 kernel's use for its own data structures.
3595 Among many other things,
3596 it is where everything from
3599 Bad things happen when you're out of lowmem.
3602 (Starting with Linux 2.6.19, \fBCONFIG_HIGHMEM\fP is required.)
3603 Amount of free lowmem.
3605 .IR MmapCopy " %lu (since Linux 2.6.29)"
3610 .IR SwapTotal " %lu"
3611 Total amount of swap space available.
3614 Amount of swap space that is currently unused.
3617 Memory which is waiting to get written back to the disk.
3619 .IR Writeback " %lu"
3620 Memory which is actively being written back to the disk.
3622 .IR AnonPages " %lu (since Linux 2.6.18)"
3623 Non-file backed pages mapped into user-space page tables.
3626 Files which have been mapped into memory (with
3630 .IR Shmem " %lu (since Linux 2.6.32)"
3631 Amount of memory consumed in
3635 .IR KReclaimable " %lu (since Linux 4.20)"
3636 Kernel allocations that the kernel will attempt to reclaim
3637 under memory pressure.
3640 (below), and other direct allocations with a shrinker.
3643 In-kernel data structures cache.
3647 .IR SReclaimable " %lu (since Linux 2.6.19)"
3650 that might be reclaimed, such as caches.
3652 .IR SUnreclaim " %lu (since Linux 2.6.19)"
3655 that cannot be reclaimed on memory pressure.
3657 .IR KernelStack " %lu (since Linux 2.6.32)"
3658 Amount of memory allocated to kernel stacks.
3660 .IR PageTables " %lu (since Linux 2.6.18)"
3661 Amount of memory dedicated to the lowest level of page tables.
3663 .IR Quicklists " %lu (since Linux 2.6.27)"
3664 (\fBCONFIG_QUICKLIST\fP is required.)
3667 .IR NFS_Unstable " %lu (since Linux 2.6.18)"
3668 NFS pages sent to the server, but not yet committed to stable storage.
3670 .IR Bounce " %lu (since Linux 2.6.18)"
3671 Memory used for block device "bounce buffers".
3673 .IR WritebackTmp " %lu (since Linux 2.6.26)"
3674 Memory used by FUSE for temporary writeback buffers.
3676 .IR CommitLimit " %lu (since Linux 2.6.10)"
3677 This is the total amount of memory currently available to
3678 be allocated on the system, expressed in kilobytes.
3679 This limit is adhered to
3680 only if strict overcommit accounting is enabled (mode 2 in
3681 .IR /proc/sys/vm/overcommit_memory ).
3682 The limit is calculated according to the formula described under
3683 .IR /proc/sys/vm/overcommit_memory .
3684 For further details, see the kernel source file
3685 .IR Documentation/vm/overcommit\-accounting.rst .
3687 .IR Committed_AS " %lu"
3688 The amount of memory presently allocated on the system.
3689 The committed memory is a sum of all of the memory which
3690 has been allocated by processes, even if it has not been
3691 "used" by them as of yet.
3692 A process which allocates 1 GB of memory (using
3694 or similar), but touches only 300 MB of that memory will show up
3695 as using only 300 MB of memory even if it has the address space
3696 allocated for the entire 1 GB.
3698 This 1 GB is memory which has been "committed" to by the VM
3699 and can be used at any time by the allocating application.
3700 With strict overcommit enabled on the system (mode 2 in
3701 .IR /proc/sys/vm/overcommit_memory ),
3702 allocations which would exceed the
3704 will not be permitted.
3705 This is useful if one needs to guarantee that processes will not
3706 fail due to lack of memory once that memory has been successfully allocated.
3708 .IR VmallocTotal " %lu"
3709 Total size of vmalloc memory area.
3711 .IR VmallocUsed " %lu"
3712 Amount of vmalloc area which is used.
3714 .\" commit a5ad88ce8c7fae7ddc72ee49a11a75aa837788e0
3715 this field is no longer calculated, and is hard coded as 0.
3717 .IR /proc/vmallocinfo .
3719 .IR VmallocChunk " %lu"
3720 Largest contiguous block of vmalloc area which is free.
3722 .\" commit a5ad88ce8c7fae7ddc72ee49a11a75aa837788e0
3723 this field is no longer calculated and is hard coded as 0.
3725 .IR /proc/vmallocinfo .
3727 .IR HardwareCorrupted " %lu (since Linux 2.6.32)"
3728 (\fBCONFIG_MEMORY_FAILURE\fP is required.)
3731 .IR LazyFree " %lu (since Linux 4.12)"
3732 Shows the amount of memory marked by
3736 .IR AnonHugePages " %lu (since Linux 2.6.38)"
3737 (\fBCONFIG_TRANSPARENT_HUGEPAGE\fP is required.)
3738 Non-file backed huge pages mapped into user-space page tables.
3740 .IR ShmemHugePages " %lu (since Linux 4.8)"
3741 (\fBCONFIG_TRANSPARENT_HUGEPAGE\fP is required.)
3742 Memory used by shared memory (shmem) and
3744 allocated with huge pages.
3746 .IR ShmemPmdMapped " %lu (since Linux 4.8)"
3747 (\fBCONFIG_TRANSPARENT_HUGEPAGE\fP is required.)
3748 Shared memory mapped into user space with huge pages.
3750 .IR CmaTotal " %lu (since Linux 3.1)"
3751 Total CMA (Contiguous Memory Allocator) pages.
3752 (\fBCONFIG_CMA\fP is required.)
3754 .IR CmaFree " %lu (since Linux 3.1)"
3755 Free CMA (Contiguous Memory Allocator) pages.
3756 (\fBCONFIG_CMA\fP is required.)
3758 .IR HugePages_Total " %lu"
3759 (\fBCONFIG_HUGETLB_PAGE\fP is required.)
3760 The size of the pool of huge pages.
3762 .IR HugePages_Free " %lu"
3763 (\fBCONFIG_HUGETLB_PAGE\fP is required.)
3764 The number of huge pages in the pool that are not yet allocated.
3766 .IR HugePages_Rsvd " %lu (since Linux 2.6.17)"
3767 (\fBCONFIG_HUGETLB_PAGE\fP is required.)
3768 This is the number of huge pages for
3769 which a commitment to allocate from the pool has been made,
3770 but no allocation has yet been made.
3771 These reserved huge pages
3772 guarantee that an application will be able to allocate a
3773 huge page from the pool of huge pages at fault time.
3775 .IR HugePages_Surp " %lu (since Linux 2.6.24)"
3776 (\fBCONFIG_HUGETLB_PAGE\fP is required.)
3777 This is the number of huge pages in
3778 the pool above the value in
3779 .IR /proc/sys/vm/nr_hugepages .
3780 The maximum number of surplus huge pages is controlled by
3781 .IR /proc/sys/vm/nr_overcommit_hugepages .
3783 .IR Hugepagesize " %lu"
3784 (\fBCONFIG_HUGETLB_PAGE\fP is required.)
3785 The size of huge pages.
3787 .IR DirectMap4k " %lu (since Linux 2.6.27)"
3788 Number of bytes of RAM linearly mapped by kernel in 4 kB pages.
3791 .IR DirectMap4M " %lu (since Linux 2.6.27)"
3792 Number of bytes of RAM linearly mapped by kernel in 4 MB pages.
3799 .IR DirectMap2M " %lu (since Linux 2.6.27)"
3800 Number of bytes of RAM linearly mapped by kernel in 2 MB pages.
3807 .IR DirectMap1G " %lu (since Linux 2.6.27)"
3811 .B CONFIG_X86_DIRECT_GBPAGES
3816 A text list of the modules that have been loaded by the system.
3821 Before kernel 2.4.19, this file was a list
3822 of all the filesystems currently mounted on the system.
3823 With the introduction of per-process mount namespaces in Linux 2.4.19 (see
3824 .BR mount_namespaces (7)),
3825 this file became a link to
3826 .IR /proc/self/mounts ,
3827 which lists the mounts of the process's own mount namespace.
3828 The format of this file is documented in
3832 Memory Type Range Registers.
3833 See the Linux kernel source file
3834 .I Documentation/x86/mtrr.txt
3835 .\" commit 7225e75144b9718cbbe1820d9c011c809d5773fd
3837 .I Documentation/mtrr.txt
3838 before Linux 2.6.28)
3842 This directory contains various files and subdirectories containing
3843 information about the networking layer.
3844 The files contain ASCII structures and are,
3845 therefore, readable with
3847 However, the standard
3849 suite provides much cleaner access to these files.
3851 With the advent of network namespaces,
3852 various information relating to the network stack is virtualized (see
3853 .BR network_namespaces (7)).
3854 Thus, since Linux 2.6.25,
3855 .\" commit e9720acd728a46cb40daa52c99a979f7c4ff195c
3857 is a symbolic link to the directory
3858 .IR /proc/self/net ,
3859 which contains the same files and directories as listed below.
3860 However, these files and directories now expose information
3861 for the network namespace of which the process is a member.
3864 This holds an ASCII readable dump of the kernel ARP table used for
3865 address resolutions.
3866 It will show both dynamically learned and preprogrammed ARP entries.
3871 IP address HW type Flags HW address Mask Device
3872 192.168.0.50 0x1 0x2 00:50:BF:25:68:F3 * eth0
3873 192.168.0.250 0x1 0xc 00:00:00:00:00:00 * eth0
3877 Here "IP address" is the IPv4 address of the machine and the "HW type"
3878 is the hardware type of the address from RFC\ 826.
3879 The flags are the internal
3880 flags of the ARP structure (as defined in
3881 .IR /usr/include/linux/if_arp.h )
3883 the "HW address" is the data link layer mapping for that IP address if
3887 The dev pseudo-file contains network device status information.
3889 the number of received and sent packets, the number of errors and
3891 and other basic statistics.
3892 These are used by the
3894 program to report device status.
3898 Inter\-| Receive | Transmit
3899 face |bytes packets errs drop fifo frame compressed multicast|bytes packets errs drop fifo colls carrier compressed
3900 lo: 2776770 11307 0 0 0 0 0 0 2776770 11307 0 0 0 0 0 0
3901 eth0: 1215645 2751 0 0 0 0 0 0 1782404 4324 0 0 0 427 0 0
3902 ppp0: 1622270 5552 1 0 0 0 0 0 354130 5669 0 0 0 0 0 0
3903 tap0: 7714 81 0 0 0 0 0 0 7714 81 0 0 0 0 0 0
3906 .\" .I /proc/net/ipx
3909 .\" .I /proc/net/ipx_route
3912 .I /proc/net/dev_mcast
3914 .IR /usr/src/linux/net/core/dev_mcast.c :
3918 indx interface_name dmi_u dmi_g dmi_address
3919 2 eth0 1 0 01005e000001
3920 3 eth1 1 0 01005e000001
3921 4 eth2 1 0 01005e000001
3926 Internet Group Management Protocol.
3928 .IR /usr/src/linux/net/core/igmp.c .
3931 This file uses the same format as the
3933 file and contains the current reverse mapping database used to provide
3935 reverse address lookup services.
3936 If RARP is not configured into the
3938 this file will not be present.
3941 Holds a dump of the RAW socket table.
3942 Much of the information is not of
3944 apart from debugging.
3945 The "sl" value is the kernel hash slot for the
3947 the "local_address" is the local address and protocol number pair.
3949 the internal status of the socket.
3950 The "tx_queue" and "rx_queue" are the
3951 outgoing and incoming data queue in terms of kernel memory usage.
3952 The "tr", "tm\->when", and "rexmits" fields are not used by RAW.
3954 field holds the effective UID of the creator of the socket.
3956 .\" .I /proc/net/route
3957 .\" No information, but looks similar to
3961 This file holds the ASCII data needed for the IP, ICMP, TCP, and UDP
3963 information bases for an SNMP agent.
3966 Holds a dump of the TCP socket table.
3967 Much of the information is not
3968 of use apart from debugging.
3969 The "sl" value is the kernel hash slot
3970 for the socket, the "local_address" is the local address and port number pair.
3971 The "rem_address" is the remote address and port number pair
3973 \&"St" is the internal status of the socket.
3974 The "tx_queue" and "rx_queue" are the
3975 outgoing and incoming data queue in terms of kernel memory usage.
3976 The "tr", "tm\->when", and "rexmits" fields hold internal information of
3977 the kernel socket state and are useful only for debugging.
3979 field holds the effective UID of the creator of the socket.
3982 Holds a dump of the UDP socket table.
3983 Much of the information is not of
3984 use apart from debugging.
3985 The "sl" value is the kernel hash slot for the
3986 socket, the "local_address" is the local address and port number pair.
3987 The "rem_address" is the remote address and port number pair
3989 "St" is the internal status of the socket.
3990 The "tx_queue" and "rx_queue" are the outgoing and incoming data queue
3991 in terms of kernel memory usage.
3992 The "tr", "tm\->when", and "rexmits" fields
3993 are not used by UDP.
3995 field holds the effective UID of the creator of the socket.
3999 sl local_address rem_address st tx_queue rx_queue tr rexmits tm\->when uid
4000 1: 01642C89:0201 0C642C89:03FF 01 00000000:00000001 01:000071BA 00000000 0
4001 1: 00000000:0801 00000000:0000 0A 00000000:00000000 00:00000000 6F000100 0
4002 1: 00000000:0201 00000000:0000 0A 00000000:00000000 00:00000000 00000000 0
4006 Lists the UNIX domain sockets present within the system and their
4011 Num RefCount Protocol Flags Type St Inode Path
4012 0: 00000002 00000000 00000000 0001 03 42
4013 1: 00000001 00000000 00010000 0001 01 1948 /dev/printer
4016 The fields are as follows:
4020 the kernel table slot number.
4023 the number of users of the socket.
4029 the internal kernel flags holding the status of the socket.
4035 sockets, this is 0001; for
4037 sockets, it is 0002; and for
4039 sockets, it is 0005.
4042 the internal state of the socket.
4045 the inode number of the socket.
4048 the bound pathname (if any) of the socket.
4049 Sockets in the abstract namespace are included in the list,
4050 and are shown with a
4052 that commences with the character '@'.
4055 .I /proc/net/netfilter/nfnetlink_queue
4056 This file contains information about netfilter user-space queueing, if used.
4057 Each line represents a queue.
4058 Queues that have not been subscribed to
4059 by user space are not shown.
4063 1 4207 0 2 65535 0 0 0 1
4064 (1) (2) (3)(4) (5) (6) (7) (8)
4068 The fields in each line are:
4072 The ID of the queue.
4073 This matches what is specified in the
4076 .B \-\-queue\-balance
4081 .BR iptables\-extensions (8)
4082 for more information.
4085 The netlink port ID subscribed to the queue.
4088 The number of packets currently queued and waiting to be processed by
4092 The copy mode of the queue.
4093 It is either 1 (metadata only) or 2
4094 (also copy payload data to user space).
4097 Copy range; that is, how many bytes of packet payload should be copied to
4102 Number of packets that had to be dropped by the kernel because
4103 too many packets are already waiting for user space to send back the mandatory
4104 accept/drop verdicts.
4108 Number of packets that were dropped within the netlink
4110 Such drops usually happen when the corresponding socket buffer is
4111 full; that is, user space is not able to read messages fast enough.
4115 Every queued packet is associated with a (32-bit)
4116 monotonically increasing sequence number.
4117 This shows the ID of the most recent packet queued.
4120 The last number exists only for compatibility reasons and is always 1.
4123 Contains the major and minor numbers of each partition as well as the number
4124 of 1024-byte blocks and the partition name.
4127 This is a listing of all PCI devices found during kernel initialization
4128 and their configuration.
4130 This file has been deprecated in favor of a new
4133 .RI ( /proc/bus/pci ).
4134 It became optional in Linux 2.2 (available with
4135 .B CONFIG_PCI_OLD_PROC
4136 set at kernel compilation).
4137 It became once more nonoptionally enabled in Linux 2.4.
4138 Next, it was deprecated in Linux 2.6 (still available with
4139 .B CONFIG_PCI_LEGACY_PROC
4140 set), and finally removed altogether since Linux 2.6.17.
4141 .\" FIXME Document /proc/sched_debug (since Linux 2.6.23)
4142 .\" See also /proc/[pid]/sched
4144 .IR /proc/profile " (since Linux 2.4)"
4145 This file is present only if the kernel was booted with the
4147 command-line option.
4148 It exposes kernel profiling information in a binary format for use by
4149 .BR readprofile (1).
4150 Writing (e.g., an empty string) to this file resets the profiling counters;
4151 on some architectures,
4152 writing a binary integer "profiling multiplier" of size
4154 sets the profiling interrupt frequency.
4157 A directory with the
4159 mid-level pseudo-file and various SCSI low-level
4161 which contain a file for each SCSI host in this system, all of
4162 which give the status of some part of the SCSI IO subsystem.
4163 These files contain ASCII structures and are, therefore, readable with
4166 You can also write to some of the files to reconfigure the subsystem or
4167 switch certain features on or off.
4170 This is a listing of all SCSI devices known to the kernel.
4171 The listing is similar to the one seen during bootup.
4172 scsi currently supports only the \fIadd\-single\-device\fP command which
4173 allows root to add a hotplugged device to the list of known devices.
4179 echo \(aqscsi add\-single\-device 1 0 5 0\(aq > /proc/scsi/scsi
4184 host scsi1 to scan on SCSI channel 0 for a device on ID 5 LUN 0.
4186 is already a device known on this address or the address is invalid, an
4187 error will be returned.
4189 .I /proc/scsi/[drivername]
4190 \fI[drivername]\fP can currently be NCR53c7xx, aha152x, aha1542, aha1740,
4191 aic7xxx, buslogic, eata_dma, eata_pio, fdomain, in2000, pas16, qlogic,
4192 scsi_debug, seagate, t128, u15\-24f, ultrastore, or wd7000.
4193 These directories show up for all drivers that registered at least one
4195 Every directory contains one file per registered host.
4196 Every host-file is named after the number the host was assigned during
4199 Reading these files will usually show driver and host configuration,
4200 statistics, and so on.
4202 Writing to these files allows different things on different hosts.
4203 For example, with the \fIlatency\fP and \fInolatency\fP commands,
4204 root can switch on and off command latency measurement code in the
4206 With the \fIlockup\fP and \fIunlock\fP commands,
4207 root can control bus lockups simulated by the scsi_debug driver.
4210 This directory refers to the process accessing the
4213 and is identical to the
4215 directory named by the process ID of the same process.
4218 Information about kernel caches.
4224 kernel/system statistics.
4225 Varies with architecture.
4230 .I cpu 10132153 290696 3084719 46828483 16683 0 25195 0 175628 0
4232 .I cpu0 1393280 32966 572056 13343292 6130 0 17875 0 23933 0
4233 The amount of time, measured in units of
4234 USER_HZ (1/100ths of a second on most architectures, use
4235 .IR sysconf(_SC_CLK_TCK)
4236 to obtain the right value),
4237 .\" 1024 on Alpha and ia64
4238 that the system ("cpu" line) or the specific CPU ("cpu\fIN\fR" line)
4239 spent in various states:
4243 (1) Time spent in user mode.
4246 (2) Time spent in user mode with low priority (nice).
4249 (3) Time spent in system mode.
4252 (4) Time spent in the idle task.
4253 .\" FIXME . Actually, the following info about the /proc/stat 'cpu' field
4254 .\" does not seem to be quite right (at least in 2.6.12 or 3.6):
4255 .\" the idle time in /proc/uptime does not quite match this value
4256 This value should be USER_HZ times the
4261 .IR iowait " (since Linux 2.5.41)"
4262 (5) Time waiting for I/O to complete.
4263 This value is not reliable, for the following reasons:
4264 .\" See kernel commit 9c240d757658a3ae9968dd309e674c61f07c7f48
4267 The CPU will not wait for I/O to complete;
4268 iowait is the time that a task is waiting for I/O to complete.
4269 When a CPU goes into idle state for outstanding task I/O,
4270 another task will be scheduled on this CPU.
4272 On a multi-core CPU,
4273 the task waiting for I/O to complete is not running on any CPU,
4274 so the iowait of each CPU is difficult to calculate.
4276 The value in this field may
4278 in certain conditions.
4281 .IR irq " (since Linux 2.6.0)"
4282 .\" Precisely: Linux 2.6.0-test4
4283 (6) Time servicing interrupts.
4285 .IR softirq " (since Linux 2.6.0)"
4286 .\" Precisely: Linux 2.6.0-test4
4287 (7) Time servicing softirqs.
4289 .IR steal " (since Linux 2.6.11)"
4290 (8) Stolen time, which is the time spent in other operating systems when
4291 running in a virtualized environment
4293 .IR guest " (since Linux 2.6.24)"
4294 (9) Time spent running a virtual CPU for guest
4295 operating systems under the control of the Linux kernel.
4296 .\" See Changelog entry for 5e84cfde51cf303d368fcb48f22059f37b3872de
4298 .IR guest_nice " (since Linux 2.6.33)"
4299 .\" commit ce0e7b28fb75cb003cfc8d0238613aaf1c55e797
4300 (10) Time spent running a niced guest (virtual CPU for guest
4301 operating systems under the control of the Linux kernel).
4304 \fIpage 5741 1808\fP
4305 The number of pages the system paged in and the number that were paged
4309 The number of swap pages that have been brought in and out.
4311 .\" FIXME . The following is not the full picture for the 'intr' of
4312 .\" /proc/stat on 2.6:
4314 This line shows counts of interrupts serviced since boot time,
4315 for each of the possible system interrupts.
4316 The first column is the total of all interrupts serviced
4317 including unnumbered architecture specific interrupts;
4318 each subsequent column is the total for that particular numbered interrupt.
4319 Unnumbered interrupts are not shown, only summed into the total.
4321 \fIdisk_io: (2,0):(31,30,5764,1,2) (3,0):\fP...
4322 (major,disk_idx):(noinfo, read_io_ops, blks_read, write_io_ops, blks_written)
4327 The number of context switches that the system underwent.
4329 \fIbtime 769041601\fP
4330 boot time, in seconds since the Epoch, 1970-01-01 00:00:00 +0000 (UTC).
4332 \fIprocesses 86031\fP
4333 Number of forks since boot.
4335 \fIprocs_running 6\fP
4336 Number of processes in runnable state.
4337 (Linux 2.5.45 onward.)
4339 \fIprocs_blocked 2\fP
4340 Number of processes blocked waiting for I/O to complete.
4341 (Linux 2.5.45 onward.)
4343 .I softirq 229245889 94 60001584 13619 5175704 2471304 28 51212741 59130143 0 51240672
4344 .\" commit d3d64df21d3d0de675a0d3ffa7c10514f3644b30
4345 This line shows the number of softirq for all CPUs.
4346 The first column is the total of all softirqs and
4347 each subsequent column is the total for particular softirq.
4348 (Linux 2.6.31 onward.)
4357 This directory (present since 1.3.57) contains a number of files
4358 and subdirectories corresponding to kernel variables.
4359 These variables can be read and in some cases modified using
4360 the \fI/proc\fP filesystem, and the (deprecated)
4364 String values may be terminated by either \(aq\e0\(aq or \(aq\en\(aq.
4366 Integer and long values may be written either in decimal or in
4367 hexadecimal notation (e.g., 0x3FFF).
4368 When writing multiple integer or long values, these may be separated
4369 by any of the following whitespace characters:
4370 \(aq\ \(aq, \(aq\et\(aq, or \(aq\en\(aq.
4371 Using other separators leads to the error
4374 .IR /proc/sys/abi " (since Linux 2.4.10)"
4375 This directory may contain files with application binary information.
4376 .\" On some systems, it is not present.
4377 See the Linux kernel source file
4378 .I Documentation/sysctl/abi.txt
4379 for more information.
4382 This directory may be empty.
4385 This directory contains device-specific information (e.g.,
4386 .IR dev/cdrom/info ).
4388 some systems, it may be empty.
4391 This directory contains the files and subdirectories for kernel variables
4392 related to filesystems.
4394 .IR /proc/sys/fs/aio\-max\-nr " and " /proc/sys/fs/aio\-nr " (since Linux 2.6.4)"
4396 is the running total of the number of events specified by
4398 calls for all currently active AIO contexts.
4405 will fail with the error
4409 does not result in the preallocation or resizing
4410 of any kernel data structures.
4412 .I /proc/sys/fs/binfmt_misc
4413 Documentation for files in this directory can be found
4414 in the Linux kernel source in the file
4415 .IR Documentation/admin\-guide/binfmt\-misc.rst
4417 .IR Documentation/binfmt_misc.txt
4420 .IR /proc/sys/fs/dentry\-state " (since Linux 2.2)"
4421 This file contains information about the status of the
4422 directory cache (dcache).
4423 The file contains six numbers,
4424 .IR nr_dentry ", " nr_unused ", " age_limit " (age in seconds),"
4426 (pages requested by system) and two dummy values.
4430 is the number of allocated dentries (dcache entries).
4431 This field is unused in Linux 2.2.
4434 is the number of unused dentries.
4437 .\" looks like this is unused in kernels 2.2 to 2.6
4438 is the age in seconds after which dcache entries
4439 can be reclaimed when memory is short.
4442 .\" looks like this is unused in kernels 2.2 to 2.6
4443 is nonzero when the kernel has called shrink_dcache_pages() and the
4444 dcache isn't pruned yet.
4447 .I /proc/sys/fs/dir\-notify\-enable
4448 This file can be used to disable or enable the
4450 interface described in
4452 on a system-wide basis.
4453 A value of 0 in this file disables the interface,
4454 and a value of 1 enables it.
4456 .I /proc/sys/fs/dquot\-max
4457 This file shows the maximum number of cached disk quota entries.
4458 On some (2.4) systems, it is not present.
4459 If the number of free cached disk quota entries is very low and
4460 you have some awesome number of simultaneous system users,
4461 you might want to raise the limit.
4463 .I /proc/sys/fs/dquot\-nr
4464 This file shows the number of allocated disk quota
4465 entries and the number of free disk quota entries.
4467 .IR /proc/sys/fs/epoll " (since Linux 2.6.28)"
4468 This directory contains the file
4469 .IR max_user_watches ,
4470 which can be used to limit the amount of kernel memory consumed by the
4473 For further details, see
4476 .I /proc/sys/fs/file\-max
4478 a system-wide limit on the number of open files for all processes.
4479 System calls that fail when encountering this limit fail with the error
4483 which can be used by a process to set the per-process limit,
4485 on the number of files it may open.)
4487 of error messages in the kernel log about running out of file handles
4488 (open file descriptions)
4489 (look for "VFS: file\-max limit <number> reached"),
4490 try increasing this value:
4494 echo 100000 > /proc/sys/fs/file\-max
4498 Privileged processes
4499 .RB ( CAP_SYS_ADMIN )
4504 .I /proc/sys/fs/file\-nr
4505 This (read-only) file contains three numbers:
4506 the number of allocated file handles
4507 (i.e., the number of open file descriptions; see
4509 the number of free file handles;
4510 and the maximum number of file handles (i.e., the same value as
4511 .IR /proc/sys/fs/file\-max ).
4512 If the number of allocated file handles is close to the
4513 maximum, you should consider increasing the maximum.
4515 the kernel allocated file handles dynamically,
4516 but it didn't free them again.
4517 Instead the free file handles were kept in a list for reallocation;
4518 the "free file handles" value indicates the size of that list.
4519 A large number of free file handles indicates that there was
4520 a past peak in the usage of open file handles.
4521 Since Linux 2.6, the kernel does deallocate freed file handles,
4522 and the "free file handles" value is always zero.
4524 .IR /proc/sys/fs/inode\-max " (only present until Linux 2.2)"
4525 This file contains the maximum number of in-memory inodes.
4526 This value should be 3\(en4 times larger
4529 since \fIstdin\fP, \fIstdout\fP
4530 and network sockets also need an inode to handle them.
4531 When you regularly run out of inodes, you need to increase this value.
4533 Starting with Linux 2.4,
4534 there is no longer a static limit on the number of inodes,
4535 and this file is removed.
4537 .I /proc/sys/fs/inode\-nr
4538 This file contains the first two values from
4541 .I /proc/sys/fs/inode\-state
4543 contains seven numbers:
4545 .IR nr_free_inodes ,
4547 and four dummy values (always zero).
4550 is the number of inodes the system has allocated.
4551 .\" This can be slightly more than
4553 .\" because Linux allocates them one page full at a time.
4555 represents the number of free inodes.
4562 and the system needs to prune the inode list instead of allocating more;
4563 since Linux 2.4, this field is a dummy value (always zero).
4565 .IR /proc/sys/fs/inotify " (since Linux 2.6.13)"
4566 This directory contains files
4567 .IR max_queued_events ", " max_user_instances ", and " max_user_watches ,
4568 that can be used to limit the amount of kernel memory consumed by the
4571 For further details, see
4574 .I /proc/sys/fs/lease\-break\-time
4575 This file specifies the grace period that the kernel grants to a process
4576 holding a file lease
4578 after it has sent a signal to that process notifying it
4579 that another process is waiting to open the file.
4580 If the lease holder does not remove or downgrade the lease within
4581 this grace period, the kernel forcibly breaks the lease.
4583 .I /proc/sys/fs/leases\-enable
4584 This file can be used to enable or disable file leases
4586 on a system-wide basis.
4587 If this file contains the value 0, leases are disabled.
4588 A nonzero value enables leases.
4590 .IR /proc/sys/fs/mount\-max " (since Linux 4.9)"
4591 .\" commit d29216842a85c7970c536108e093963f02714498
4592 The value in this file specifies the maximum number of mounts that may exist
4593 in a mount namespace.
4594 The default value in this file is 100,000.
4596 .IR /proc/sys/fs/mqueue " (since Linux 2.6.6)"
4597 This directory contains files
4598 .IR msg_max ", " msgsize_max ", and " queues_max ,
4599 controlling the resources used by POSIX message queues.
4604 .IR /proc/sys/fs/nr_open " (since Linux 2.6.25)"
4605 .\" commit 9cfe015aa424b3c003baba3841a60dd9b5ad319b
4606 This file imposes a ceiling on the value to which the
4608 resource limit can be raised (see
4610 This ceiling is enforced for both unprivileged and privileged process.
4611 The default value in this file is 1048576.
4612 (Before Linux 2.6.25, the ceiling for
4614 was hard-coded to the same value.)
4616 .IR /proc/sys/fs/overflowgid " and " /proc/sys/fs/overflowuid
4618 allow you to change the value of the fixed UID and GID.
4619 The default is 65534.
4620 Some filesystems support only 16-bit UIDs and GIDs, although in Linux
4621 UIDs and GIDs are 32 bits.
4622 When one of these filesystems is mounted
4623 with writes enabled, any UID or GID that would exceed 65535 is translated
4624 to the overflow value before being written to disk.
4626 .IR /proc/sys/fs/pipe\-max\-size " (since Linux 2.6.35)"
4630 .IR /proc/sys/fs/pipe\-user\-pages\-hard " (since Linux 4.5)"
4634 .IR /proc/sys/fs/pipe\-user\-pages\-soft " (since Linux 4.5)"
4638 .IR /proc/sys/fs/protected_fifos " (since Linux 4.19)"
4639 The value in this file is/can be set to one of the following:
4643 Writing to FIFOs is unrestricted.
4649 on FIFOs that the caller doesn't own in world-writable sticky directories,
4650 unless the FIFO is owned by the owner of the directory.
4654 but the restriction also applies to group-writable sticky directories.
4657 The intent of the above protections is to avoid unintentional writes to an
4658 attacker-controlled FIFO when a program expected to create a regular file.
4660 .IR /proc/sys/fs/protected_hardlinks " (since Linux 3.6)"
4661 .\" commit 800179c9b8a1e796e441674776d11cd4c05d61d7
4662 When the value in this file is 0,
4663 no restrictions are placed on the creation of hard links
4664 (i.e., this is the historical behavior before Linux 3.6).
4665 When the value in this file is 1,
4666 a hard link can be created to a target file
4667 only if one of the following conditions is true:
4670 The calling process has the
4672 capability in its user namespace
4673 and the file UID has a mapping in the namespace.
4675 The filesystem UID of the process creating the link matches
4676 the owner (UID) of the target file
4678 .BR credentials (7),
4679 a process's filesystem UID is normally the same as its effective UID).
4681 All of the following conditions are true:
4684 the target is a regular file;
4686 the target file does not have its set-user-ID mode bit enabled;
4688 the target file does not have both its set-group-ID and
4689 group-executable mode bits enabled; and
4691 the caller has permission to read and write the target file
4692 (either via the file's permissions mask or because it has
4693 suitable capabilities).
4697 The default value in this file is 0.
4698 Setting the value to 1
4699 prevents a longstanding class of security issues caused by
4700 hard-link-based time-of-check, time-of-use races,
4701 most commonly seen in world-writable directories such as
4703 The common method of exploiting this flaw
4704 is to cross privilege boundaries when following a given hard link
4705 (i.e., a root process follows a hard link created by another user).
4706 Additionally, on systems without separated partitions,
4707 this stops unauthorized users from "pinning" vulnerable set-user-ID and
4708 set-group-ID files against being upgraded by
4709 the administrator, or linking to special files.
4711 .IR /proc/sys/fs/protected_regular " (since Linux 4.19)"
4712 The value in this file is/can be set to one of the following:
4716 Writing to regular files is unrestricted.
4722 on regular files that the caller doesn't own in
4723 world-writable sticky directories,
4724 unless the regular file is owned by the owner of the directory.
4728 but the restriction also applies to group-writable sticky directories.
4731 The intent of the above protections is similar to
4732 .IR protected_fifos ,
4733 but allows an application to
4734 avoid writes to an attacker-controlled regular file,
4735 where the application expected to create one.
4737 .IR /proc/sys/fs/protected_symlinks " (since Linux 3.6)"
4738 .\" commit 800179c9b8a1e796e441674776d11cd4c05d61d7
4739 When the value in this file is 0,
4740 no restrictions are placed on following symbolic links
4741 (i.e., this is the historical behavior before Linux 3.6).
4742 When the value in this file is 1, symbolic links are followed only
4743 in the following circumstances:
4746 the filesystem UID of the process following the link matches
4747 the owner (UID) of the symbolic link
4749 .BR credentials (7),
4750 a process's filesystem UID is normally the same as its effective UID);
4752 the link is not in a sticky world-writable directory; or
4754 the symbolic link and its parent directory have the same owner (UID)
4757 A system call that fails to follow a symbolic link
4758 because of the above restrictions returns the error
4763 The default value in this file is 0.
4764 Setting the value to 1 avoids a longstanding class of security issues
4765 based on time-of-check, time-of-use races when accessing symbolic links.
4767 .IR /proc/sys/fs/suid_dumpable " (since Linux 2.6.13)"
4768 .\" The following is based on text from Documentation/sysctl/kernel.txt
4769 The value in this file is assigned to a process's "dumpable" flag
4770 in the circumstances described in
4773 the value in this file determines whether core dump files are
4774 produced for set-user-ID or otherwise protected/tainted binaries.
4775 The "dumpable" setting also affects the ownership of files in a process's
4777 directory, as described above.
4779 Three different integer values can be specified:
4783 .\" In kernel source: SUID_DUMP_DISABLE
4784 This provides the traditional (pre-Linux 2.6.13) behavior.
4785 A core dump will not be produced for a process which has
4786 changed credentials (by calling
4789 or similar, or by executing a set-user-ID or set-group-ID program)
4790 or whose binary does not have read permission enabled.
4793 .\" In kernel source: SUID_DUMP_USER
4794 All processes dump core when possible.
4795 (Reasons why a process might nevertheless not dump core are described in
4797 The core dump is owned by the filesystem user ID of the dumping process
4798 and no security is applied.
4799 This is intended for system debugging situations only:
4800 this mode is insecure because it allows unprivileged users to
4801 examine the memory contents of privileged processes.
4803 \fI2\ ("suidsafe")\fP
4804 .\" In kernel source: SUID_DUMP_ROOT
4805 Any binary which normally would not be dumped (see "0" above)
4806 is dumped readable by root only.
4807 This allows the user to remove the core dump file but not to read it.
4808 For security reasons core dumps in this mode will not overwrite one
4809 another or other files.
4810 This mode is appropriate when administrators are
4811 attempting to debug problems in a normal environment.
4813 Additionally, since Linux 3.6,
4814 .\" 9520628e8ceb69fa9a4aee6b57f22675d9e1b709
4815 .I /proc/sys/kernel/core_pattern
4816 must either be an absolute pathname
4817 or a pipe command, as detailed in
4819 Warnings will be written to the kernel log if
4821 does not follow these rules, and no core dump will be produced.
4822 .\" 54b501992dd2a839e94e76aa392c392b55080ce8
4825 For details of the effect of a process's "dumpable" setting
4826 on ptrace access mode checking, see
4829 .I /proc/sys/fs/super\-max
4831 controls the maximum number of superblocks, and
4832 thus the maximum number of mounted filesystems the kernel
4834 You need increase only
4836 if you need to mount more filesystems than the current value in
4840 .I /proc/sys/fs/super\-nr
4842 contains the number of filesystems currently mounted.
4845 This directory contains files controlling a range of kernel parameters,
4848 .I /proc/sys/kernel/acct
4850 contains three numbers:
4855 If BSD-style process accounting is enabled, these values control
4857 If free space on filesystem where the log lives goes below
4859 percent, accounting suspends.
4860 If free space gets above
4862 percent, accounting resumes.
4865 how often the kernel checks the amount of free space (value is in
4867 Default values are 4, 2, and 30.
4868 That is, suspend accounting if 2% or less space is free; resume it
4869 if 4% or more space is free; consider information about amount of free space
4870 valid for 30 seconds.
4872 .IR /proc/sys/kernel/auto_msgmni " (Linux 2.6.27 to 3.18)"
4873 .\" commit 9eefe520c814f6f62c5d36a2ddcd3fb99dfdb30e (introduces feature)
4874 .\" commit 0050ee059f7fc86b1df2527aaa14ed5dc72f9973 (rendered redundant)
4875 From Linux 2.6.27 to 3.18,
4876 this file was used to control recomputing of the value in
4877 .IR /proc/sys/kernel/msgmni
4878 upon the addition or removal of memory or upon IPC namespace creation/removal.
4879 Echoing "1" into this file enabled
4881 automatic recomputing (and triggered a recomputation of
4883 based on the current amount of available memory and number of IPC namespaces).
4884 Echoing "0" disabled automatic recomputing.
4885 (Automatic recomputing was also disabled if a value was explicitly assigned to
4886 .IR /proc/sys/kernel/msgmni .)
4887 The default value in
4891 Since Linux 3.19, the content of this file has no effect (because
4893 .\" FIXME Must document the 3.19 'msgmni' changes.
4894 defaults to near the maximum value possible),
4895 and reads from this file always return the value "0".
4897 .IR /proc/sys/kernel/cap_last_cap " (since Linux 3.2)"
4899 .BR capabilities (7).
4901 .IR /proc/sys/kernel/cap\-bound " (from Linux 2.2 to 2.6.24)"
4902 This file holds the value of the kernel
4903 .I "capability bounding set"
4904 (expressed as a signed decimal number).
4905 This set is ANDed against the capabilities permitted to a process
4908 Starting with Linux 2.6.25,
4909 the system-wide capability bounding set disappeared,
4910 and was replaced by a per-thread bounding set; see
4911 .BR capabilities (7).
4913 .I /proc/sys/kernel/core_pattern
4917 .I /proc/sys/kernel/core_pipe_limit
4921 .I /proc/sys/kernel/core_uses_pid
4925 .I /proc/sys/kernel/ctrl\-alt\-del
4927 controls the handling of Ctrl-Alt-Del from the keyboard.
4928 When the value in this file is 0, Ctrl-Alt-Del is trapped and
4931 program to handle a graceful restart.
4932 When the value is greater than zero, Linux's reaction to a Vulcan
4933 Nerve Pinch (tm) will be an immediate reboot, without even
4934 syncing its dirty buffers.
4935 Note: when a program (like dosemu) has the keyboard in "raw"
4936 mode, the ctrl-alt-del is intercepted by the program before it
4937 ever reaches the kernel tty layer, and it's up to the program
4938 to decide what to do with it.
4940 .IR /proc/sys/kernel/dmesg_restrict " (since Linux 2.6.37)"
4941 The value in this file determines who can see kernel syslog contents.
4942 A value of 0 in this file imposes no restrictions.
4943 If the value is 1, only privileged users can read the kernel syslog.
4948 .\" commit 620f6e8e855d6d447688a5f67a4e176944a084e8
4951 capability may change the value in this file.
4953 .IR /proc/sys/kernel/domainname " and " /proc/sys/kernel/hostname
4954 can be used to set the NIS/YP domainname and the
4955 hostname of your box in exactly the same way as the commands
4963 .RB "#" " echo \(aqdarkstar\(aq > /proc/sys/kernel/hostname"
4964 .RB "#" " echo \(aqmydomain\(aq > /proc/sys/kernel/domainname"
4968 has the same effect as
4972 .RB "#" " hostname \(aqdarkstar\(aq"
4973 .RB "#" " domainname \(aqmydomain\(aq"
4977 Note, however, that the classic darkstar.frop.org has the
4978 hostname "darkstar" and DNS (Internet Domain Name Server)
4979 domainname "frop.org", not to be confused with the NIS (Network
4980 Information Service) or YP (Yellow Pages) domainname.
4982 domain names are in general different.
4983 For a detailed discussion
4988 .I /proc/sys/kernel/hotplug
4990 contains the pathname for the hotplug policy agent.
4991 The default value in this file is
4994 .\" Removed in commit 87f504e5c78b910b0c1d6ffb89bc95e492322c84 (tglx/history.git)
4995 .IR /proc/sys/kernel/htab\-reclaim " (before Linux 2.4.9.2)"
4996 (PowerPC only) If this file is set to a nonzero value,
4998 .\" removed in commit 1b483a6a7b2998e9c98ad985d7494b9b725bd228, before 2.6.28
5000 .IR Documentation/powerpc/ppc_htab.txt )
5002 each time the system hits the idle loop.
5004 .IR /proc/sys/kernel/keys/*
5005 This directory contains various files that define parameters and limits
5006 for the key-management facility.
5007 These files are described in
5010 .IR /proc/sys/kernel/kptr_restrict " (since Linux 2.6.38)"
5011 .\" 455cd5ab305c90ffc422dd2e0fb634730942b257
5012 The value in this file determines whether kernel addresses are exposed via
5014 files and other interfaces.
5015 A value of 0 in this file imposes no restrictions.
5016 If the value is 1, kernel pointers printed using the
5018 format specifier will be replaced with zeros unless the user has the
5021 If the value is 2, kernel pointers printed using the
5023 format specifier will be replaced with zeros regardless
5024 of the user's capabilities.
5025 The initial default value for this file was 1,
5026 but the default was changed
5027 .\" commit 411f05f123cbd7f8aa1edcae86970755a6e2a9d9
5028 to 0 in Linux 2.6.39.
5030 .\" commit 620f6e8e855d6d447688a5f67a4e176944a084e8
5033 capability can change the value in this file.
5035 .I /proc/sys/kernel/l2cr
5036 (PowerPC only) This file
5037 contains a flag that controls the L2 cache of G3 processor
5039 If 0, the cache is disabled.
5042 .I /proc/sys/kernel/modprobe
5043 This file contains the pathname for the kernel module loader.
5044 The default value is
5045 .IR /sbin/modprobe .
5046 The file is present only if the kernel is built with the
5049 in Linux 2.6.26 and earlier)
5051 It is described by the Linux kernel source file
5052 .I Documentation/kmod.txt
5053 (present only in kernel 2.4 and earlier).
5055 .IR /proc/sys/kernel/modules_disabled " (since Linux 2.6.31)"
5056 .\" 3d43321b7015387cfebbe26436d0e9d299162ea1
5057 .\" From Documentation/sysctl/kernel.txt
5058 A toggle value indicating if modules are allowed to be loaded
5059 in an otherwise modular kernel.
5060 This toggle defaults to off (0), but can be set true (1).
5061 Once true, modules can be neither loaded nor unloaded,
5062 and the toggle cannot be set back to false.
5063 The file is present only if the kernel is built with the
5067 .IR /proc/sys/kernel/msgmax " (since Linux 2.2)"
5069 a system-wide limit specifying the maximum number of bytes in
5070 a single message written on a System V message queue.
5072 .IR /proc/sys/kernel/msgmni " (since Linux 2.4)"
5073 This file defines the system-wide limit on the number of
5074 message queue identifiers.
5076 .IR /proc/sys/kernel/auto_msgmni .
5078 .IR /proc/sys/kernel/msgmnb " (since Linux 2.2)"
5079 This file defines a system-wide parameter used to initialize the
5081 setting for subsequently created message queues.
5084 setting specifies the maximum number of bytes that may be written to the
5087 .IR /proc/sys/kernel/ngroups_max " (since Linux 2.6.4)"
5088 This is a read-only file that displays the upper limit on the
5089 number of a process's group memberships.
5091 .IR /proc/sys/kernel/ns_last_pid " (since Linux 3.3)"
5093 .BR pid_namespaces (7).
5095 .IR /proc/sys/kernel/ostype " and " /proc/sys/kernel/osrelease
5100 .IR /proc/sys/kernel/overflowgid " and " /proc/sys/kernel/overflowuid
5101 These files duplicate the files
5102 .I /proc/sys/fs/overflowgid
5104 .IR /proc/sys/fs/overflowuid .
5106 .I /proc/sys/kernel/panic
5107 This file gives read/write access to the kernel variable
5109 If this is zero, the kernel will loop on a panic; if nonzero,
5110 it indicates that the kernel should autoreboot after this number
5113 software watchdog device driver, the recommended setting is 60.
5115 .IR /proc/sys/kernel/panic_on_oops " (since Linux 2.5.68)"
5116 This file controls the kernel's behavior when an oops
5117 or BUG is encountered.
5118 If this file contains 0, then the system
5119 tries to continue operation.
5120 If it contains 1, then the system
5121 delays a few seconds (to give klogd time to record the oops output)
5124 .I /proc/sys/kernel/panic
5125 file is also nonzero, then the machine will be rebooted.
5127 .IR /proc/sys/kernel/pid_max " (since Linux 2.5.34)"
5128 This file specifies the value at which PIDs wrap around
5129 (i.e., the value in this file is one greater than the maximum PID).
5130 PIDs greater than this value are not allocated;
5131 thus, the value in this file also acts as a system-wide limit
5132 on the total number of processes and threads.
5133 The default value for this file, 32768,
5134 results in the same range of PIDs as on earlier kernels.
5135 On 32-bit platforms, 32768 is the maximum value for
5139 can be set to any value up to 2^22
5140 .RB ( PID_MAX_LIMIT ,
5141 approximately 4 million).
5142 .\" Prior to 2.6.10, pid_max could also be raised above 32768 on 32-bit
5143 .\" platforms, but this broke /proc/[pid]
5144 .\" See http://marc.theaimsgroup.com/?l=linux-kernel&m=109513010926152&w=2
5146 .IR /proc/sys/kernel/powersave\-nap " (PowerPC only)"
5147 This file contains a flag.
5148 If set, Linux-PPC will use the "nap" mode of
5150 otherwise the "doze" mode will be used.
5152 .I /proc/sys/kernel/printk
5156 .IR /proc/sys/kernel/pty " (since Linux 2.6.4)"
5157 This directory contains two files relating to the number of UNIX 98
5158 pseudoterminals (see
5162 .I /proc/sys/kernel/pty/max
5163 This file defines the maximum number of pseudoterminals.
5164 .\" FIXME Document /proc/sys/kernel/pty/reserve
5165 .\" New in Linux 3.3
5166 .\" commit e9aba5158a80098447ff207a452a3418ae7ee386
5168 .I /proc/sys/kernel/pty/nr
5170 indicates how many pseudoterminals are currently in use.
5172 .I /proc/sys/kernel/random
5174 contains various parameters controlling the operation of the file
5178 for further information.
5180 .IR /proc/sys/kernel/random/uuid " (since Linux 2.4)"
5181 Each read from this read-only file returns a randomly generated 128-bit UUID,
5182 as a string in the standard UUID format.
5184 .IR /proc/sys/kernel/randomize_va_space " (since Linux 2.6.12)"
5185 .\" Some further details can be found in Documentation/sysctl/kernel.txt
5186 Select the address space layout randomization (ASLR) policy for the system
5187 (on architectures that support ASLR).
5188 Three values are supported for this file:
5192 This is the default for architectures that don't support ASLR,
5193 and when the kernel is booted with the
5197 Make the addresses of
5199 allocations, the stack, and the VDSO page randomized.
5200 Among other things, this means that shared libraries will be
5201 loaded at randomized addresses.
5202 The text segment of PIE-linked binaries will also be loaded
5203 at a randomized address.
5204 This value is the default if the kernel was configured with
5205 .BR CONFIG_COMPAT_BRK .
5207 (Since Linux 2.6.25)
5208 .\" commit c1d171a002942ea2d93b4fbd0c9583c56fce0772
5209 Also support heap randomization.
5210 This value is the default if the kernel was not configured with
5211 .BR CONFIG_COMPAT_BRK .
5214 .I /proc/sys/kernel/real\-root\-dev
5215 This file is documented in the Linux kernel source file
5216 .I Documentation/admin\-guide/initrd.rst
5217 .\" commit 9d85025b0418163fae079c9ba8f8445212de8568
5219 .I Documentation/initrd.txt
5222 .IR /proc/sys/kernel/reboot\-cmd " (Sparc only)"
5223 This file seems to be a way to give an argument to the SPARC
5224 ROM/Flash boot loader.
5225 Maybe to tell it what to do after
5228 .I /proc/sys/kernel/rtsig\-max
5229 (Only in kernels up to and including 2.6.7; see
5231 This file can be used to tune the maximum number
5232 of POSIX real-time (queued) signals that can be outstanding
5235 .I /proc/sys/kernel/rtsig\-nr
5236 (Only in kernels up to and including 2.6.7.)
5237 This file shows the number of POSIX real-time signals currently queued.
5239 .IR /proc/[pid]/sched_autogroup_enabled " (since Linux 2.6.38)"
5240 .\" commit 5091faa449ee0b7d73bc296a93bca9540fc51d0a
5244 .IR /proc/sys/kernel/sched_child_runs_first " (since Linux 2.6.23)"
5245 If this file contains the value zero, then, after a
5247 the parent is first scheduled on the CPU.
5248 If the file contains a nonzero value,
5249 then the child is scheduled first on the CPU.
5250 (Of course, on a multiprocessor system,
5251 the parent and the child might both immediately be scheduled on a CPU.)
5253 .IR /proc/sys/kernel/sched_rr_timeslice_ms " (since Linux 3.9)"
5255 .BR sched_rr_get_interval (2).
5257 .IR /proc/sys/kernel/sched_rt_period_us " (since Linux 2.6.25)"
5261 .IR /proc/sys/kernel/sched_rt_runtime_us " (since Linux 2.6.25)"
5265 .IR /proc/sys/kernel/seccomp " (since Linux 4.14)"
5266 .\" commit 8e5f1ad116df6b0de65eac458d5e7c318d1c05af
5267 This directory provides additional seccomp information and
5271 for further details.
5273 .IR /proc/sys/kernel/sem " (since Linux 2.4)"
5274 This file contains 4 numbers defining limits for System V IPC semaphores.
5275 These fields are, in order:
5278 The maximum semaphores per semaphore set.
5280 A system-wide limit on the number of semaphores in all semaphore sets.
5282 The maximum number of operations that may be specified in a
5286 A system-wide limit on the maximum number of semaphore identifiers.
5289 .I /proc/sys/kernel/sg\-big\-buff
5291 shows the size of the generic SCSI device (sg) buffer.
5292 You can't tune it just yet, but you could change it at
5293 compile time by editing
5294 .I include/scsi/sg.h
5298 However, there shouldn't be any reason to change this value.
5300 .IR /proc/sys/kernel/shm_rmid_forced " (since Linux 3.1)"
5301 .\" commit b34a6b1da371ed8af1221459a18c67970f7e3d53
5302 .\" See also Documentation/sysctl/kernel.txt
5303 If this file is set to 1, all System V shared memory segments will
5304 be marked for destruction as soon as the number of attached processes
5306 in other words, it is no longer possible to create shared memory segments
5307 that exist independently of any attached process.
5309 The effect is as though a
5312 is performed on all existing segments as well as all segments
5313 created in the future (until this file is reset to 0).
5314 Note that existing segments that are attached to no process will be
5315 immediately destroyed when this file is set to 1.
5316 Setting this option will also destroy segments that were created,
5318 upon termination of the process that created the segment with
5321 Setting this file to 1 provides a way of ensuring that
5322 all System V shared memory segments are counted against the
5323 resource usage and resource limits (see the description of
5327 of at least one process.
5329 Because setting this file to 1 produces behavior that is nonstandard
5330 and could also break existing applications,
5331 the default value in this file is 0.
5332 Set this file to 1 only if you have a good understanding
5333 of the semantics of the applications using
5334 System V shared memory on your system.
5336 .IR /proc/sys/kernel/shmall " (since Linux 2.2)"
5338 contains the system-wide limit on the total number of pages of
5339 System V shared memory.
5341 .IR /proc/sys/kernel/shmmax " (since Linux 2.2)"
5343 can be used to query and set the run-time limit
5344 on the maximum (System V IPC) shared memory segment size that can be
5346 Shared memory segments up to 1 GB are now supported in the
5348 This value defaults to
5351 .IR /proc/sys/kernel/shmmni " (since Linux 2.4)"
5353 specifies the system-wide maximum number of System V shared memory
5354 segments that can be created.
5356 .IR /proc/sys/kernel/sysctl_writes_strict " (since Linux 3.16)"
5357 .\" commit f88083005ab319abba5d0b2e4e997558245493c8
5358 .\" commit 2ca9bb456ada8bcbdc8f77f8fc78207653bbaa92
5359 .\" commit f4aacea2f5d1a5f7e3154e967d70cf3f711bcd61
5360 .\" commit 24fe831c17ab8149413874f2fd4e5c8a41fcd294
5361 The value in this file determines how the file offset affects
5362 the behavior of updating entries in files under
5364 The file has three possible values:
5368 This provides legacy handling, with no printk warnings.
5371 must fully contain the value to be written,
5372 and multiple writes on the same file descriptor
5373 will overwrite the entire value, regardless of the file position.
5376 (default) This provides the same behavior as for \-1,
5377 but printk warnings are written for processes that
5378 perform writes when the file offset is not 0.
5381 Respect the file offset when writing strings into
5384 Multiple writes will
5386 to the value buffer.
5387 Anything written beyond the maximum length
5388 of the value buffer will be ignored.
5391 entries must always be at file offset 0 and the value must be
5392 fully contained in the buffer provided to
5395 .\" With /proc/sys/kernel/sysctl_writes_strict==1, writes at an
5396 .\" offset other than 0 do not generate an error. Instead, the
5397 .\" write() succeeds, but the file is left unmodified.
5398 .\" This is surprising. The behavior may change in the future.
5399 .\" See thread.gmane.org/gmane.linux.man/9197
5400 .\" From: Michael Kerrisk (man-pages <mtk.manpages@...>
5401 .\" Subject: sysctl_writes_strict documentation + an oddity?
5402 .\" Newsgroups: gmane.linux.man, gmane.linux.kernel
5403 .\" Date: 2015-05-09 08:54:11 GMT
5406 .I /proc/sys/kernel/sysrq
5407 This file controls the functions allowed to be invoked by the SysRq key.
5409 the file contains 1 meaning that every possible SysRq request is allowed
5410 (in older kernel versions, SysRq was disabled by default,
5411 and you were required to specifically enable it at run-time,
5412 but this is not the case any more).
5413 Possible values in this file are:
5417 Disable sysrq completely
5420 Enable all functions of sysrq
5423 Bit mask of allowed sysrq functions, as follows:
5428 Enable control of console logging level
5431 Enable control of keyboard (SAK, unraw)
5434 Enable debugging dumps of processes etc.
5440 Enable remount read-only
5443 Enable signaling of processes (term, kill, oom-kill)
5446 Allow reboot/poweroff
5449 Allow nicing of all real-time tasks
5454 This file is present only if the
5455 .B CONFIG_MAGIC_SYSRQ
5456 kernel configuration option is enabled.
5457 For further details see the Linux kernel source file
5458 .I Documentation/admin\-guide/sysrq.rst
5459 .\" commit 9d85025b0418163fae079c9ba8f8445212de8568
5461 .I Documentation/sysrq.txt
5464 .I /proc/sys/kernel/version
5465 This file contains a string such as:
5467 #5 Wed Feb 25 21:49:24 MET 1998
5470 this is the fifth kernel built from this source base and the
5471 date following it indicates the time the kernel was built.
5473 .IR /proc/sys/kernel/threads\-max " (since Linux 2.3.11)"
5474 .\" The following is based on Documentation/sysctl/kernel.txt
5475 This file specifies the system-wide limit on the number of
5476 threads (tasks) that can be created on the system.
5479 .\" commit 230633d109e35b0a24277498e773edeb79b4a331
5480 the value that can be written to
5483 The minimum value that can be written is 20.
5484 The maximum value that can be written is given by the
5488 If a value outside of this range is written to
5494 The value written is checked against the available RAM pages.
5495 If the thread structures would occupy too much (more than 1/8th)
5496 of the available RAM pages,
5498 is reduced accordingly.
5500 .IR /proc/sys/kernel/yama/ptrace_scope " (since Linux 3.5)"
5504 .IR /proc/sys/kernel/zero\-paged " (PowerPC only)"
5507 When enabled (nonzero), Linux-PPC will pre-zero pages in
5508 the idle loop, possibly speeding up get_free_pages.
5511 This directory contains networking stuff.
5512 Explanations for some of the files under this directory can be found in
5517 .I /proc/sys/net/core/bpf_jit_enable
5521 .I /proc/sys/net/core/somaxconn
5522 This file defines a ceiling value for the
5528 manual page for details.
5531 This directory may be empty.
5534 This directory supports Sun remote procedure call for network filesystem
5536 On some systems, it is not present.
5538 .IR /proc/sys/user " (since Linux 4.9)"
5543 This directory contains files for memory management tuning, buffer, and
5546 .IR /proc/sys/vm/admin_reserve_kbytes " (since Linux 3.10)"
5547 .\" commit 4eeab4f5580d11bffedc697684b91b0bca0d5009
5548 This file defines the amount of free memory (in KiB) on the system that
5549 should be reserved for users with the capability
5552 The default value in this file is the minimum of [3% of free pages, 8MiB]
5554 The default is intended to provide enough for the superuser
5555 to log in and kill a process, if necessary,
5556 under the default overcommit 'guess' mode (i.e., 0 in
5557 .IR /proc/sys/vm/overcommit_memory ).
5559 Systems running in "overcommit never" mode (i.e., 2 in
5560 .IR /proc/sys/vm/overcommit_memory )
5561 should increase the value in this file to account
5562 for the full virtual memory size of the programs used to recover (e.g.,
5567 Otherwise, the superuser may not be able to log in to recover the system.
5568 For example, on x86-64 a suitable value is 131072 (128MiB reserved).
5570 Changing the value in this file takes effect whenever
5571 an application requests memory.
5573 .IR /proc/sys/vm/compact_memory " (since Linux 2.6.35)"
5574 When 1 is written to this file, all zones are compacted such that free
5575 memory is available in contiguous blocks where possible.
5576 The effect of this action can be seen by examining
5577 .IR /proc/buddyinfo .
5579 Present only if the kernel was configured with
5580 .BR CONFIG_COMPACTION .
5582 .IR /proc/sys/vm/drop_caches " (since Linux 2.6.16)"
5583 Writing to this file causes the kernel to drop clean caches, dentries, and
5584 inodes from memory, causing that memory to become free.
5585 This can be useful for memory management testing and
5586 performing reproducible filesystem benchmarks.
5587 Because writing to this file causes the benefits of caching to be lost,
5588 it can degrade overall system performance.
5590 To free pagecache, use:
5592 echo 1 > /proc/sys/vm/drop_caches
5594 To free dentries and inodes, use:
5596 echo 2 > /proc/sys/vm/drop_caches
5598 To free pagecache, dentries, and inodes, use:
5600 echo 3 > /proc/sys/vm/drop_caches
5602 Because writing to this file is a nondestructive operation and dirty objects
5603 are not freeable, the
5608 .IR /proc/sys/vm/sysctl_hugetlb_shm_group " (since Linux 2.6.7)"
5609 This writable file contains a group ID that is allowed
5610 to allocate memory using huge pages.
5611 If a process has a filesystem group ID or any supplementary group ID that
5612 matches this group ID,
5613 then it can make huge-page allocations without holding the
5616 .BR memfd_create (2),
5621 .IR /proc/sys/vm/legacy_va_layout " (since Linux 2.6.9)"
5622 .\" The following is from Documentation/filesystems/proc.txt
5623 If nonzero, this disables the new 32-bit memory-mapping layout;
5624 the kernel will use the legacy (2.4) layout for all processes.
5626 .IR /proc/sys/vm/memory_failure_early_kill " (since Linux 2.6.32)"
5627 .\" The following is based on the text in Documentation/sysctl/vm.txt
5628 Control how to kill processes when an uncorrected memory error
5629 (typically a 2-bit error in a memory module)
5630 that cannot be handled by the kernel
5631 is detected in the background by hardware.
5632 In some cases (like the page still having a valid copy on disk),
5633 the kernel will handle the failure
5634 transparently without affecting any applications.
5635 But if there is no other up-to-date copy of the data,
5636 it will kill processes to prevent any data corruptions from propagating.
5638 The file has one of the following values:
5641 Kill all processes that have the corrupted-and-not-reloadable page mapped
5642 as soon as the corruption is detected.
5643 Note that this is not supported for a few types of pages,
5644 such as kernel internally
5645 allocated data or the swap cache, but works for the majority of user pages.
5647 Unmap the corrupted page from all processes and kill a process
5648 only if it tries to access the page.
5651 The kill is performed using a
5657 Processes can handle this if they want to; see
5661 This feature is active only on architectures/platforms with advanced machine
5662 check handling and depends on the hardware capabilities.
5664 Applications can override the
5665 .I memory_failure_early_kill
5666 setting individually with the
5671 Present only if the kernel was configured with
5672 .BR CONFIG_MEMORY_FAILURE .
5674 .IR /proc/sys/vm/memory_failure_recovery " (since Linux 2.6.32)"
5675 .\" The following is based on the text in Documentation/sysctl/vm.txt
5676 Enable memory failure recovery (when supported by the platform).
5681 Always panic on a memory failure.
5684 Present only if the kernel was configured with
5685 .BR CONFIG_MEMORY_FAILURE .
5687 .IR /proc/sys/vm/oom_dump_tasks " (since Linux 2.6.25)"
5688 .\" The following is from Documentation/sysctl/vm.txt
5689 Enables a system-wide task dump (excluding kernel threads) to be
5690 produced when the kernel performs an OOM-killing.
5691 The dump includes the following information
5692 for each task (thread, process):
5693 thread ID, real user ID, thread group ID (process ID),
5694 virtual memory size, resident set size,
5695 the CPU that the task is scheduled on,
5696 oom_adj score (see the description of
5697 .IR /proc/[pid]/oom_adj ),
5699 This is helpful to determine why the OOM-killer was invoked
5700 and to identify the rogue task that caused it.
5702 If this contains the value zero, this information is suppressed.
5703 On very large systems with thousands of tasks,
5704 it may not be feasible to dump the memory state information for each one.
5705 Such systems should not be forced to incur a performance penalty in
5706 OOM situations when the information may not be desired.
5708 If this is set to nonzero, this information is shown whenever the
5709 OOM-killer actually kills a memory-hogging task.
5711 The default value is 0.
5713 .IR /proc/sys/vm/oom_kill_allocating_task " (since Linux 2.6.24)"
5714 .\" The following is from Documentation/sysctl/vm.txt
5715 This enables or disables killing the OOM-triggering task in
5716 out-of-memory situations.
5718 If this is set to zero, the OOM-killer will scan through the entire
5719 tasklist and select a task based on heuristics to kill.
5720 This normally selects a rogue memory-hogging task that
5721 frees up a large amount of memory when killed.
5723 If this is set to nonzero, the OOM-killer simply kills the task that
5724 triggered the out-of-memory condition.
5725 This avoids a possibly expensive tasklist scan.
5728 .I /proc/sys/vm/panic_on_oom
5729 is nonzero, it takes precedence over whatever value is used in
5730 .IR /proc/sys/vm/oom_kill_allocating_task .
5732 The default value is 0.
5734 .IR /proc/sys/vm/overcommit_kbytes " (since Linux 3.14)"
5735 .\" commit 49f0ce5f92321cdcf741e35f385669a421013cb7
5736 This writable file provides an alternative to
5737 .IR /proc/sys/vm/overcommit_ratio
5741 .IR /proc/sys/vm/overcommit_memory
5743 It allows the amount of memory overcommitting to be specified as
5744 an absolute value (in kB),
5745 rather than as a percentage, as is done with
5746 .IR overcommit_ratio .
5747 This allows for finer-grained control of
5749 on systems with extremely large memory sizes.
5752 .IR overcommit_kbytes
5754 .IR overcommit_ratio
5757 .IR overcommit_kbytes
5758 has a nonzero value, then it is used to calculate
5761 .IR overcommit_ratio
5763 Writing a value to either of these files causes the
5764 value in the other file to be set to zero.
5766 .I /proc/sys/vm/overcommit_memory
5767 This file contains the kernel virtual memory accounting mode.
5771 0: heuristic overcommit (this is the default)
5773 1: always overcommit, never check
5775 2: always check, never overcommit
5782 are not checked, and the default check is very weak,
5783 leading to the risk of getting a process "OOM-killed".
5785 In mode 1, the kernel pretends there is always enough memory,
5786 until memory actually runs out.
5787 One use case for this mode is scientific computing applications
5788 that employ large sparse arrays.
5789 In Linux kernel versions before 2.6.0, any nonzero value implies mode 1.
5791 In mode 2 (available since Linux 2.6), the total virtual address space
5792 that can be allocated
5798 CommitLimit = (total_RAM \- total_huge_TLB) *
5799 overcommit_ratio / 100 + total_swap
5805 is the total amount of RAM on the system;
5808 is the amount of memory set aside for huge pages;
5812 .IR /proc/sys/vm/overcommit_ratio ;
5816 is the amount of swap space.
5819 For example, on a system with 16 GB of physical RAM, 16 GB
5820 of swap, no space dedicated to huge pages, and an
5822 of 50, this formula yields a
5826 Since Linux 3.14, if the value in
5827 .I /proc/sys/vm/overcommit_kbytes
5830 is instead calculated as:
5832 CommitLimit = overcommit_kbytes + total_swap
5834 See also the description of
5835 .IR /proc/sys/vm/admin_reserve_kbytes
5837 .IR /proc/sys/vm/user_reserve_kbytes .
5839 .IR /proc/sys/vm/overcommit_ratio " (since Linux 2.6.0)"
5840 This writable file defines a percentage by which memory
5841 can be overcommitted.
5842 The default value in the file is 50.
5843 See the description of
5844 .IR /proc/sys/vm/overcommit_memory .
5846 .IR /proc/sys/vm/panic_on_oom " (since Linux 2.6.18)"
5847 .\" The following is adapted from Documentation/sysctl/vm.txt
5848 This enables or disables a kernel panic in
5849 an out-of-memory situation.
5851 If this file is set to the value 0,
5852 the kernel's OOM-killer will kill some rogue process.
5853 Usually, the OOM-killer is able to kill a rogue process and the
5854 system will survive.
5856 If this file is set to the value 1,
5857 then the kernel normally panics when out-of-memory happens.
5858 However, if a process limits allocations to certain nodes
5859 using memory policies
5864 and those nodes reach memory exhaustion status,
5865 one process may be killed by the OOM-killer.
5866 No panic occurs in this case:
5867 because other nodes' memory may be free,
5868 this means the system as a whole may not have reached
5869 an out-of-memory situation yet.
5871 If this file is set to the value 2,
5872 the kernel always panics when an out-of-memory condition occurs.
5874 The default value is 0.
5875 1 and 2 are for failover of clustering.
5876 Select either according to your policy of failover.
5878 .IR /proc/sys/vm/swappiness
5879 .\" The following is from Documentation/sysctl/vm.txt
5880 The value in this file controls how aggressively the kernel will swap
5882 Higher values increase aggressiveness, lower values
5883 decrease aggressiveness.
5884 The default value is 60.
5886 .IR /proc/sys/vm/user_reserve_kbytes " (since Linux 3.10)"
5887 .\" commit c9b1d0981fcce3d9976d7b7a56e4e0503bc610dd
5888 Specifies an amount of memory (in KiB) to reserve for user processes.
5889 This is intended to prevent a user from starting a single memory hogging
5890 process, such that they cannot recover (kill the hog).
5891 The value in this file has an effect only when
5892 .IR /proc/sys/vm/overcommit_memory
5893 is set to 2 ("overcommit never" mode).
5894 In this case, the system reserves an amount of memory that is the minimum
5895 of [3% of current process size,
5896 .IR user_reserve_kbytes ].
5898 The default value in this file is the minimum of [3% of free pages, 128MiB]
5901 If the value in this file is set to zero,
5902 then a user will be allowed to allocate all free memory with a single process
5903 (minus the amount reserved by
5904 .IR /proc/sys/vm/admin_reserve_kbytes ).
5905 Any subsequent attempts to execute a command will result in
5906 "fork: Cannot allocate memory".
5908 Changing the value in this file takes effect whenever
5909 an application requests memory.
5911 .IR /proc/sys/vm/unprivileged_userfaultfd " (since Linux 5.2)"
5912 .\" cefdca0a86be517bc390fc4541e3674b8e7803b0
5913 This (writable) file exposes a flag that controls whether
5914 unprivileged processes are allowed to employ
5915 .BR userfaultfd (2).
5916 If this file has the value 1, then unprivileged processes may use
5917 .BR userfaultfd (2).
5918 If this file has the value 0, then only processes that have the
5920 capability may employ
5921 .BR userfaultfd (2).
5922 The default value in this file is 1.
5924 .IR /proc/sysrq\-trigger " (since Linux 2.4.21)"
5925 Writing a character to this file triggers the same SysRq function as
5926 typing ALT-SysRq-<character> (see the description of
5927 .IR /proc/sys/kernel/sysrq ).
5928 This file is normally writable only by
5930 For further details see the Linux kernel source file
5931 .I Documentation/admin\-guide/sysrq.rst
5932 .\" commit 9d85025b0418163fae079c9ba8f8445212de8568
5934 .I Documentation/sysrq.txt
5938 Subdirectory containing the pseudo-files
5939 .IR msg ", " sem " and " shm "."
5940 These files list the System V Interprocess Communication (IPC) objects
5941 (respectively: message queues, semaphores, and shared memory)
5942 that currently exist on the system,
5943 providing similar information to that available via
5945 These files have headers and are formatted (one IPC object per line)
5946 for easy understanding.
5948 provides further background on the information shown by these files.
5950 .IR /proc/thread\-self " (since Linux 3.17)"
5951 .\" commit 0097875bd41528922fb3bb5f348c53f17e00e2fd
5952 This directory refers to the thread accessing the
5955 and is identical to the
5956 .I /proc/self/task/[tid]
5957 directory named by the process thread ID
5961 .IR /proc/timer_list " (since Linux 2.6.21)"
5962 .\" commit 289f480af87e45f7a6de6ba9b4c061c2e259fe98
5963 This read-only file exposes a list of all currently pending
5964 (high-resolution) timers,
5965 all clock-event sources, and their parameters in a human-readable form.
5967 .IR /proc/timer_stats " (from Linux 2.6.21 until Linux 4.10)"
5968 .\" commit 82f67cd9fca8c8762c15ba7ed0d5747588c1e221
5969 .\" Date: Fri Feb 16 01:28:13 2007 -0800
5970 .\" Text largely derived from Documentation/timers/timer_stats.txt
5971 .\" removed in commit dfb4357da6ddbdf57d583ba64361c9d792b0e0b1
5972 .\" Date: Wed Feb 8 11:26:59 2017 -0800
5973 This is a debugging facility to make timer (ab)use in a Linux
5974 system visible to kernel and user-space developers.
5975 It can be used by kernel and user-space developers to verify that
5976 their code does not make undue use of timers.
5977 The goal is to avoid unnecessary wakeups,
5978 thereby optimizing power consumption.
5980 If enabled in the kernel
5981 .RB ( CONFIG_TIMER_STATS ),
5983 it has almost zero run-time overhead and a relatively small
5984 data-structure overhead.
5985 Even if collection is enabled at run time, overhead is low:
5986 all the locking is per-CPU and lookup is hashed.
5989 .I /proc/timer_stats
5990 file is used both to control sampling facility and to read out the
5991 sampled information.
5995 functionality is inactive on bootup.
5996 A sampling period can be started using the following command:
6000 # echo 1 > /proc/timer_stats
6004 The following command stops a sampling period:
6008 # echo 0 > /proc/timer_stats
6012 The statistics can be retrieved by:
6016 $ cat /proc/timer_stats
6020 While sampling is enabled, each readout from
6021 .I /proc/timer_stats
6023 newly updated statistics.
6024 Once sampling is disabled, the sampled information
6025 is kept until a new sample period is started.
6026 This allows multiple readouts.
6029 .IR /proc/timer_stats :
6033 .RB $ " cat /proc/timer_stats"
6034 Timer Stats Version: v0.3
6035 Sample period: 1.764 s
6037 255, 0 swapper/3 hrtimer_start_range_ns (tick_sched_timer)
6038 71, 0 swapper/1 hrtimer_start_range_ns (tick_sched_timer)
6039 58, 0 swapper/0 hrtimer_start_range_ns (tick_sched_timer)
6040 4, 1694 gnome\-shell mod_delayed_work_on (delayed_work_timer_fn)
6041 17, 7 rcu_sched rcu_gp_kthread (process_timeout)
6043 1, 4911 kworker/u16:0 mod_delayed_work_on (delayed_work_timer_fn)
6044 1D, 2522 kworker/0:0 queue_delayed_work_on (delayed_work_timer_fn)
6045 1029 total events, 583.333 events/sec
6049 The output columns are:
6052 a count of the number of events,
6053 optionally (since Linux 2.6.23) followed by the letter \(aqD\(aq
6054 .\" commit c5c061b8f9726bc2c25e19dec227933a13d1e6b7 deferrable timers
6055 if this is a deferrable timer;
6057 the PID of the process that initialized the timer;
6059 the name of the process that initialized the timer;
6061 the function where the timer was initialized; and
6064 the callback function that is associated with the timer.
6067 During the Linux 4.11 development cycle,
6068 this file was removed because of security concerns,
6069 as it exposes information across namespaces.
6070 Furthermore, it is possible to obtain
6071 the same information via in-kernel tracing facilities such as ftrace.
6074 Subdirectory containing the pseudo-files and subdirectories for
6075 tty drivers and line disciplines.
6078 This file contains two numbers (values in seconds): the uptime of the
6079 system (including time spent in suspend) and the amount of time spent
6080 in the idle process.
6083 This string identifies the kernel version that is currently running.
6084 It includes the contents of
6085 .IR /proc/sys/kernel/ostype ,
6086 .IR /proc/sys/kernel/osrelease ,
6088 .IR /proc/sys/kernel/version .
6093 Linux version 1.0.9 (quinlan@phaze) #1 Sat May 14 01:51:54 EDT 1994
6096 .\" FIXME 2.6.13 seems to have /proc/vmcore implemented; document this
6097 .\" See Documentation/kdump/kdump.txt
6098 .\" commit 666bfddbe8b8fd4fd44617d6c55193d5ac7edb29
6099 .\" Needs CONFIG_VMCORE
6102 .IR /proc/vmstat " (since Linux 2.6.0)"
6103 This file displays various virtual memory statistics.
6104 Each line of this file contains a single name-value pair,
6105 delimited by white space.
6106 Some lines are present only if the kernel was configured with
6108 (In some cases, the options required for particular files have changed
6109 across kernel versions, so they are not listed here.
6110 Details can be found by consulting the kernel source code.)
6111 The following fields may be present:
6112 .\" FIXME We need explanations for each of the following fields...
6115 .IR nr_free_pages " (since Linux 2.6.31)"
6116 .\" commit d23ad42324cc4378132e51f2fc5c9ba6cbe75182
6118 .IR nr_alloc_batch " (since Linux 3.12)"
6119 .\" commit 81c0a2bb515fd4daae8cab64352877480792b515
6121 .IR nr_inactive_anon " (since Linux 2.6.28)"
6122 .\" commit 4f98a2fee8acdb4ac84545df98cccecfd130f8db
6124 .IR nr_active_anon " (since Linux 2.6.28)"
6125 .\" commit 4f98a2fee8acdb4ac84545df98cccecfd130f8db
6127 .IR nr_inactive_file " (since Linux 2.6.28)"
6128 .\" commit 4f98a2fee8acdb4ac84545df98cccecfd130f8db
6130 .IR nr_active_file " (since Linux 2.6.28)"
6131 .\" commit 4f98a2fee8acdb4ac84545df98cccecfd130f8db
6133 .IR nr_unevictable " (since Linux 2.6.28)"
6134 .\" commit 7b854121eb3e5ba0241882ff939e2c485228c9c5
6136 .IR nr_mlock " (since Linux 2.6.28)"
6137 .\" commit 5344b7e648980cc2ca613ec03a56a8222ff48820
6139 .IR nr_anon_pages " (since Linux 2.6.18)"
6140 .\" commit f3dbd34460ff54962d3e3244b6bcb7f5295356e6
6142 .IR nr_mapped " (since Linux 2.6.0)"
6144 .IR nr_file_pages " (since Linux 2.6.18)"
6145 .\" commit 347ce434d57da80fd5809c0c836f206a50999c26
6147 .IR nr_dirty " (since Linux 2.6.0)"
6149 .IR nr_writeback " (since Linux 2.6.0)"
6151 .IR nr_slab_reclaimable " (since Linux 2.6.19)"
6152 .\" commit 972d1a7b140569084439a81265a0f15b74e924e0
6153 .\" Linux 2.6.0 had nr_slab
6155 .IR nr_slab_unreclaimable " (since Linux 2.6.19)"
6156 .\" commit 972d1a7b140569084439a81265a0f15b74e924e0
6158 .IR nr_page_table_pages " (since Linux 2.6.0)"
6160 .IR nr_kernel_stack " (since Linux 2.6.32)"
6161 .\" commit c6a7f5728a1db45d30df55a01adc130b4ab0327c
6162 Amount of memory allocated to kernel stacks.
6164 .IR nr_unstable " (since Linux 2.6.0)"
6166 .IR nr_bounce " (since Linux 2.6.12)"
6167 .\" commit edfbe2b0038723e5699ab22695ccd62b5542a5c1
6169 .IR nr_vmscan_write " (since Linux 2.6.19)"
6170 .\" commit e129b5c23c2b471d47f1c5d2b8b193fc2034af43
6172 .IR nr_vmscan_immediate_reclaim " (since Linux 3.2)"
6173 .\" commit 49ea7eb65e7c5060807fb9312b1ad4c3eab82e2c
6175 .IR nr_writeback_temp " (since Linux 2.6.26)"
6176 .\" commit fc3ba692a4d19019387c5acaea63131f9eab05dd
6178 .IR nr_isolated_anon " (since Linux 2.6.32)"
6179 .\" commit a731286de62294b63d8ceb3c5914ac52cc17e690
6181 .IR nr_isolated_file " (since Linux 2.6.32)"
6182 .\" commit a731286de62294b63d8ceb3c5914ac52cc17e690
6184 .IR nr_shmem " (since Linux 2.6.32)"
6185 .\" commit 4b02108ac1b3354a22b0d83c684797692efdc395
6186 Pages used by shmem and
6189 .IR nr_dirtied " (since Linux 2.6.37)"
6190 .\" commit ea941f0e2a8c02ae876cd73deb4e1557248f258c
6192 .IR nr_written " (since Linux 2.6.37)"
6193 .\" commit ea941f0e2a8c02ae876cd73deb4e1557248f258c
6195 .IR nr_pages_scanned " (since Linux 3.17)"
6196 .\" commit 0d5d823ab4e608ec7b52ac4410de4cb74bbe0edd
6198 .IR numa_hit " (since Linux 2.6.18)"
6199 .\" commit ca889e6c45e0b112cb2ca9d35afc66297519b5d5
6200 .\" Present only if the kernel was configured with
6201 .\" .BR CONFIG_NUMA .
6203 .IR numa_miss " (since Linux 2.6.18)"
6204 .\" commit ca889e6c45e0b112cb2ca9d35afc66297519b5d5
6205 .\" Present only if the kernel was configured with
6206 .\" .BR CONFIG_NUMA .
6208 .IR numa_foreign " (since Linux 2.6.18)"
6209 .\" commit ca889e6c45e0b112cb2ca9d35afc66297519b5d5
6210 .\" Present only if the kernel was configured with
6211 .\" .BR CONFIG_NUMA .
6213 .IR numa_interleave " (since Linux 2.6.18)"
6214 .\" commit ca889e6c45e0b112cb2ca9d35afc66297519b5d5
6215 .\" Present only if the kernel was configured with
6216 .\" .BR CONFIG_NUMA .
6218 .IR numa_local " (since Linux 2.6.18)"
6219 .\" commit ca889e6c45e0b112cb2ca9d35afc66297519b5d5
6220 .\" Present only if the kernel was configured with
6221 .\" .BR CONFIG_NUMA .
6223 .IR numa_other " (since Linux 2.6.18)"
6224 .\" commit ca889e6c45e0b112cb2ca9d35afc66297519b5d5
6225 .\" Present only if the kernel was configured with
6226 .\" .BR CONFIG_NUMA .
6228 .IR workingset_refault " (since Linux 3.15)"
6229 .\" commit a528910e12ec7ee203095eb1711468a66b9b60b0
6230 .\" Present only if the kernel was configured with
6231 .\" .BR CONFIG_VM_EVENT_COUNTERS .
6233 .IR workingset_activate " (since Linux 3.15)"
6234 .\" commit a528910e12ec7ee203095eb1711468a66b9b60b0
6235 .\" Present only if the kernel was configured with
6236 .\" .BR CONFIG_VM_EVENT_COUNTERS .
6238 .IR workingset_nodereclaim " (since Linux 3.15)"
6239 .\" commit 449dd6984d0e47643c04c807f609dd56d48d5bcc
6240 .\" Present only if the kernel was configured with
6241 .\" .BR CONFIG_VM_EVENT_COUNTERS .
6243 .IR nr_anon_transparent_hugepages " (since Linux 2.6.38)"
6244 .\" Present only if the kernel was configured with
6245 .\" .BR CONFIG_VM_EVENT_COUNTERS .
6247 .IR nr_free_cma " (since Linux 3.7)"
6248 .\" commit d1ce749a0db12202b711d1aba1d29e823034648d
6249 Number of free CMA (Contiguous Memory Allocator) pages.
6250 .\" Present only if the kernel was configured with
6251 .\" .BR CONFIG_VM_EVENT_COUNTERS .
6253 .IR nr_dirty_threshold " (since Linux 2.6.37)"
6254 .\" commit 79da826aee6a10902ef411bc65864bd02102fa83
6255 .\" Present only if the kernel was configured with
6256 .\" .BR CONFIG_VM_EVENT_COUNTERS .
6258 .IR nr_dirty_background_threshold " (since Linux 2.6.37)"
6259 .\" commit 79da826aee6a10902ef411bc65864bd02102fa83
6260 .\" Present only if the kernel was configured with
6261 .\" .BR CONFIG_VM_EVENT_COUNTERS .
6263 .IR pgpgin " (since Linux 2.6.0)"
6264 .\" Present only if the kernel was configured with
6265 .\" .BR CONFIG_VM_EVENT_COUNTERS .
6267 .IR pgpgout " (since Linux 2.6.0)"
6268 .\" Present only if the kernel was configured with
6269 .\" .BR CONFIG_VM_EVENT_COUNTERS .
6271 .IR pswpin " (since Linux 2.6.0)"
6272 .\" Present only if the kernel was configured with
6273 .\" .BR CONFIG_VM_EVENT_COUNTERS .
6275 .IR pswpout " (since Linux 2.6.0)"
6276 .\" Present only if the kernel was configured with
6277 .\" .BR CONFIG_VM_EVENT_COUNTERS .
6279 .IR pgalloc_dma " (since Linux 2.6.5)"
6280 .\" Linux 2.6.0 had pgalloc
6281 .\" Present only if the kernel was configured with
6282 .\" .BR CONFIG_VM_EVENT_COUNTERS .
6284 .IR pgalloc_dma32 " (since Linux 2.6.16)"
6285 .\" commit 9328b8faae922e52073785ed6c1eaa8565648a0e
6286 .\" Present only if the kernel was configured with
6287 .\" .BR CONFIG_VM_EVENT_COUNTERS .
6289 .IR pgalloc_normal " (since Linux 2.6.5)"
6290 .\" Present only if the kernel was configured with
6291 .\" .BR CONFIG_VM_EVENT_COUNTERS .
6293 .IR pgalloc_high " (since Linux 2.6.5)"
6294 .\" Present only if the kernel was configured with
6295 .\" .BR CONFIG_VM_EVENT_COUNTERS
6297 .\" .BR CONFIG_HIGHMEM .
6299 .IR pgalloc_movable " (since Linux 2.6.23)"
6300 .\" commit 2a1e274acf0b1c192face19a4be7c12d4503eaaf
6301 .\" Present only if the kernel was configured with
6302 .\" .BR CONFIG_VM_EVENT_COUNTERS .
6304 .IR pgfree " (since Linux 2.6.0)"
6305 .\" Present only if the kernel was configured with
6306 .\" .BR CONFIG_VM_EVENT_COUNTERS .
6308 .IR pgactivate " (since Linux 2.6.0)"
6309 .\" Present only if the kernel was configured with
6310 .\" .BR CONFIG_VM_EVENT_COUNTERS .
6312 .IR pgdeactivate " (since Linux 2.6.0)"
6313 .\" Present only if the kernel was configured with
6314 .\" .BR CONFIG_VM_EVENT_COUNTERS .
6316 .IR pgfault " (since Linux 2.6.0)"
6317 .\" Present only if the kernel was configured with
6318 .\" .BR CONFIG_VM_EVENT_COUNTERS .
6320 .IR pgmajfault " (since Linux 2.6.0)"
6321 .\" Present only if the kernel was configured with
6322 .\" .BR CONFIG_VM_EVENT_COUNTERS .
6324 .IR pgrefill_dma " (since Linux 2.6.5)"
6325 .\" Linux 2.6.0 had pgrefill
6326 .\" Present only if the kernel was configured with
6327 .\" .BR CONFIG_VM_EVENT_COUNTERS .
6329 .IR pgrefill_dma32 " (since Linux 2.6.16)"
6330 .\" commit 9328b8faae922e52073785ed6c1eaa8565648a0e
6331 .\" Present only if the kernel was configured with
6332 .\" .BR CONFIG_VM_EVENT_COUNTERS .
6334 .IR pgrefill_normal " (since Linux 2.6.5)"
6335 .\" Present only if the kernel was configured with
6336 .\" .BR CONFIG_VM_EVENT_COUNTERS .
6338 .IR pgrefill_high " (since Linux 2.6.5)"
6339 .\" Present only if the kernel was configured with
6340 .\" .BR CONFIG_VM_EVENT_COUNTERS
6342 .\" .BR CONFIG_HIGHMEM .
6344 .IR pgrefill_movable " (since Linux 2.6.23)"
6345 .\" commit 2a1e274acf0b1c192face19a4be7c12d4503eaaf
6346 .\" Present only if the kernel was configured with
6347 .\" .BR CONFIG_VM_EVENT_COUNTERS .
6348 .\" Formerly there were
6353 .\" These were split out into pgsteal_kswapd* and pgsteal_direct*
6354 .\" in commit 904249aa68010c8e223263c922fcbb840a3f42e4
6356 .IR pgsteal_kswapd_dma " (since Linux 3.4)"
6357 .\" commit 904249aa68010c8e223263c922fcbb840a3f42e4
6358 .\" Linux 2.6.0 had pgsteal
6359 .\" Present only if the kernel was configured with
6360 .\" .\" .BR CONFIG_VM_EVENT_COUNTERS .
6362 .IR pgsteal_kswapd_dma32 " (since Linux 3.4)"
6363 .\" commit 904249aa68010c8e223263c922fcbb840a3f42e4
6364 .\" commit 9328b8faae922e52073785ed6c1eaa8565648a0e
6365 .\" Present only if the kernel was configured with
6366 .\" .BR CONFIG_VM_EVENT_COUNTERS .
6368 .IR pgsteal_kswapd_normal " (since Linux 3.4)"
6369 .\" commit 904249aa68010c8e223263c922fcbb840a3f42e4
6370 .\" Present only if the kernel was configured with
6371 .\" .BR CONFIG_VM_EVENT_COUNTERS .
6373 .IR pgsteal_kswapd_high " (since Linux 3.4)"
6374 .\" commit 904249aa68010c8e223263c922fcbb840a3f42e4
6375 .\" Present only if the kernel was configured with
6376 .\" .BR CONFIG_VM_EVENT_COUNTERS
6378 .\" .BR CONFIG_HIGHMEM .
6380 .IR pgsteal_kswapd_movable " (since Linux 3.4)"
6381 .\" commit 904249aa68010c8e223263c922fcbb840a3f42e4
6382 .\" Present only if the kernel was configured with
6383 .\" .BR CONFIG_VM_EVENT_COUNTERS .
6385 .IR pgsteal_direct_dma
6386 .\" Present only if the kernel was configured with
6387 .\" .BR CONFIG_VM_EVENT_COUNTERS .
6389 .IR pgsteal_direct_dma32 " (since Linux 3.4)"
6390 .\" commit 904249aa68010c8e223263c922fcbb840a3f42e4
6391 .\" Present only if the kernel was configured with
6392 .\" .BR CONFIG_VM_EVENT_COUNTERS .
6394 .IR pgsteal_direct_normal " (since Linux 3.4)"
6395 .\" commit 904249aa68010c8e223263c922fcbb840a3f42e4
6396 .\" Present only if the kernel was configured with
6397 .\" .BR CONFIG_VM_EVENT_COUNTERS .
6399 .IR pgsteal_direct_high " (since Linux 3.4)"
6400 .\" commit 904249aa68010c8e223263c922fcbb840a3f42e4
6401 .\" Present only if the kernel was configured with
6402 .\" .BR CONFIG_VM_EVENT_COUNTERS
6404 .\" .BR CONFIG_HIGHMEM .
6406 .IR pgsteal_direct_movable " (since Linux 2.6.23)"
6407 .\" commit 2a1e274acf0b1c192face19a4be7c12d4503eaaf
6408 .\" Present only if the kernel was configured with
6409 .\" .BR CONFIG_VM_EVENT_COUNTERS .
6411 .IR pgscan_kswapd_dma
6412 .\" Linux 2.6.0 had pgscan
6413 .\" Present only if the kernel was configured with
6414 .\" .BR CONFIG_VM_EVENT_COUNTERS .
6416 .IR pgscan_kswapd_dma32 " (since Linux 2.6.16)"
6417 .\" commit 9328b8faae922e52073785ed6c1eaa8565648a0e
6418 .\" Present only if the kernel was configured with
6419 .\" .BR CONFIG_VM_EVENT_COUNTERS .
6421 .IR pgscan_kswapd_normal " (since Linux 2.6.5)"
6422 .\" Present only if the kernel was configured with
6423 .\" .BR CONFIG_VM_EVENT_COUNTERS .
6425 .IR pgscan_kswapd_high
6426 .\" Present only if the kernel was configured with
6427 .\" .BR CONFIG_VM_EVENT_COUNTERS
6429 .\" .BR CONFIG_HIGHMEM .
6431 .IR pgscan_kswapd_movable " (since Linux 2.6.23)"
6432 .\" commit 2a1e274acf0b1c192face19a4be7c12d4503eaaf
6433 .\" Present only if the kernel was configured with
6434 .\" .BR CONFIG_VM_EVENT_COUNTERS .
6436 .IR pgscan_direct_dma
6437 .\" Present only if the kernel was configured with
6438 .\" .BR CONFIG_VM_EVENT_COUNTERS .
6440 .IR pgscan_direct_dma32 " (since Linux 2.6.16)"
6441 .\" commit 9328b8faae922e52073785ed6c1eaa8565648a0e
6442 .\" Present only if the kernel was configured with
6443 .\" .BR CONFIG_VM_EVENT_COUNTERS .
6445 .IR pgscan_direct_normal
6446 .\" Present only if the kernel was configured with
6447 .\" .BR CONFIG_VM_EVENT_COUNTERS .
6449 .IR pgscan_direct_high
6450 .\" Present only if the kernel was configured with
6451 .\" .BR CONFIG_VM_EVENT_COUNTERS
6453 .\" .BR CONFIG_HIGHMEM .
6455 .IR pgscan_direct_movable " (since Linux 2.6.23)"
6456 .\" commit 2a1e274acf0b1c192face19a4be7c12d4503eaaf
6457 .\" Present only if the kernel was configured with
6458 .\" .BR CONFIG_VM_EVENT_COUNTERS .
6460 .IR pgscan_direct_throttle " (since Linux 3.6)"
6461 .\" commit 68243e76ee343d63c6cf76978588a885951e2818
6462 .\" Present only if the kernel was configured with
6463 .\" .BR CONFIG_VM_EVENT_COUNTERS .
6465 .IR zone_reclaim_failed " (since linux 2.6.31)"
6466 .\" commit 24cf72518c79cdcda486ed26074ff8151291cf65
6467 .\" Present only if the kernel was configured with
6468 .\" .BR CONFIG_VM_EVENT_COUNTERS
6470 .\" .BR CONFIG_NUMA .
6472 .IR pginodesteal " (since linux 2.6.0)"
6473 .\" Present only if the kernel was configured with
6474 .\" .BR CONFIG_VM_EVENT_COUNTERS .
6476 .IR slabs_scanned " (since linux 2.6.5)"
6477 .\" Present only if the kernel was configured with
6478 .\" .BR CONFIG_VM_EVENT_COUNTERS .
6480 .IR kswapd_inodesteal " (since linux 2.6.0)"
6481 .\" Present only if the kernel was configured with
6482 .\" .BR CONFIG_VM_EVENT_COUNTERS .
6484 .IR kswapd_low_wmark_hit_quickly " (since 2.6.33)"
6485 .\" commit bb3ab596832b920c703d1aea1ce76d69c0f71fb7
6486 .\" Present only if the kernel was configured with
6487 .\" .BR CONFIG_VM_EVENT_COUNTERS .
6489 .IR kswapd_high_wmark_hit_quickly " (since 2.6.33)"
6490 .\" commit bb3ab596832b920c703d1aea1ce76d69c0f71fb7
6491 .\" Present only if the kernel was configured with
6492 .\" .BR CONFIG_VM_EVENT_COUNTERS .
6494 .IR pageoutrun " (since Linux 2.6.0)"
6495 .\" Present only if the kernel was configured with
6496 .\" .BR CONFIG_VM_EVENT_COUNTERS .
6498 .IR allocstall " (since Linux 2.6.0)"
6499 .\" Present only if the kernel was configured with
6500 .\" .BR CONFIG_VM_EVENT_COUNTERS .
6502 .IR pgrotated " (since Linux 2.6.0)"
6503 .\" Present only if the kernel was configured with
6504 .\" .BR CONFIG_VM_EVENT_COUNTERS .
6506 .IR drop_pagecache " (since Linux 3.15)"
6507 .\" commit 5509a5d27b971a90b940e148ca9ca53312e4fa7a
6508 .\" Present only if the kernel was configured with
6509 .\" .BR CONFIG_VM_EVENT_COUNTERS .
6511 .IR drop_slab " (since Linux 3.15)"
6512 .\" commit 5509a5d27b971a90b940e148ca9ca53312e4fa7a
6513 .\" Present only if the kernel was configured with
6514 .\" .BR CONFIG_VM_EVENT_COUNTERS .
6516 .IR numa_pte_updates " (since Linux 3.8)"
6517 .\" commit 03c5a6e16322c997bf8f264851bfa3f532ad515f
6518 .\" Present only if the kernel was configured with
6519 .\" .BR CONFIG_VM_EVENT_COUNTERS
6521 .\" .BR CONFIG_NUMA_BALANCING .
6523 .IR numa_huge_pte_updates " (since Linux 3.13)"
6524 .\" commit 72403b4a0fbdf433c1fe0127e49864658f6f6468
6525 .\" Present only if the kernel was configured with
6526 .\" .BR CONFIG_VM_EVENT_COUNTERS
6528 .\" .BR CONFIG_NUMA_BALANCING .
6530 .IR numa_hint_faults " (since Linux 3.8)"
6531 .\" commit 03c5a6e16322c997bf8f264851bfa3f532ad515f
6532 .\" Present only if the kernel was configured with
6533 .\" .BR CONFIG_VM_EVENT_COUNTERS
6535 .\" .BR CONFIG_NUMA_BALANCING .
6537 .IR numa_hint_faults_local " (since Linux 3.8)"
6538 .\" commit 03c5a6e16322c997bf8f264851bfa3f532ad515f
6539 .\" Present only if the kernel was configured with
6540 .\" .BR CONFIG_VM_EVENT_COUNTERS
6542 .\" .BR CONFIG_NUMA_BALANCING .
6544 .IR numa_pages_migrated " (since Linux 3.8)"
6545 .\" commit 03c5a6e16322c997bf8f264851bfa3f532ad515f
6546 .\" Present only if the kernel was configured with
6547 .\" .BR CONFIG_VM_EVENT_COUNTERS
6549 .\" .BR CONFIG_NUMA_BALANCING
6551 .\" .BR CONFIG_NUMA_BALANCING .
6553 .IR pgmigrate_success " (since Linux 3.8)"
6554 .\" commit 5647bc293ab15f66a7b1cda850c5e9d162a6c7c2
6555 .\" Present only if the kernel was configured with
6556 .\" .BR CONFIG_VM_EVENT_COUNTERS
6558 .\" .BR CONFIG_MIGRATION .
6560 .IR pgmigrate_fail " (since Linux 3.8)"
6561 .\" commit 5647bc293ab15f66a7b1cda850c5e9d162a6c7c2
6562 .\" Present only if the kernel was configured with
6563 .\" .BR CONFIG_VM_EVENT_COUNTERS
6565 .\" .BR CONFIG_MIGRATION .
6567 .IR compact_migrate_scanned " (since Linux 3.8)"
6568 .\" commit 397487db696cae0b026a474a5cd66f4e372995e6
6569 .\" Linux 3.8 dropped compact_blocks_moved, compact_pages_moved, and
6570 .\" compact_pagemigrate_failed
6571 .\" Present only if the kernel was configured with
6572 .\" .BR CONFIG_VM_EVENT_COUNTERS
6574 .\" .BR CONFIG_COMPACTION .
6576 .IR compact_free_scanned " (since Linux 3.8)"
6577 .\" commit 397487db696cae0b026a474a5cd66f4e372995e6
6578 .\" Present only if the kernel was configured with
6579 .\" .BR CONFIG_VM_EVENT_COUNTERS
6581 .\" .BR CONFIG_COMPACTION .
6583 .IR compact_isolated " (since Linux 3.8)"
6584 .\" commit 397487db696cae0b026a474a5cd66f4e372995e6
6585 .\" Present only if the kernel was configured with
6586 .\" .BR CONFIG_VM_EVENT_COUNTERS
6588 .\" .BR CONFIG_COMPACTION .
6590 .IR compact_stall " (since Linux 2.6.35)"
6591 .\" commit 56de7263fcf3eb10c8dcdf8d59a9cec831795f3f
6592 See the kernel source file
6593 .IR Documentation/admin\-guide/mm/transhuge.rst .
6594 .\" Present only if the kernel was configured with
6595 .\" .BR CONFIG_VM_EVENT_COUNTERS
6597 .\" .BR CONFIG_COMPACTION .
6599 .IR compact_fail " (since Linux 2.6.35)"
6600 .\" commit 56de7263fcf3eb10c8dcdf8d59a9cec831795f3f
6601 See the kernel source file
6602 .IR Documentation/admin\-guide/mm/transhuge.rst .
6603 .\" Present only if the kernel was configured with
6604 .\" .BR CONFIG_VM_EVENT_COUNTERS
6606 .\" .BR CONFIG_COMPACTION .
6608 .IR compact_success " (since Linux 2.6.35)"
6609 .\" commit 56de7263fcf3eb10c8dcdf8d59a9cec831795f3f
6610 See the kernel source file
6611 .IR Documentation/admin\-guide/mm/transhuge.rst .
6612 .\" Present only if the kernel was configured with
6613 .\" .BR CONFIG_VM_EVENT_COUNTERS
6615 .\" .BR CONFIG_COMPACTION .
6617 .IR htlb_buddy_alloc_success " (since Linux 2.6.26)"
6618 .\" commit 3b1163006332302117b1b2acf226d4014ff46525
6619 .\" Present only if the kernel was configured with
6620 .\" .BR CONFIG_VM_EVENT_COUNTERS
6622 .\" .BR CONFIG_HUGETLB_PAGE .
6624 .IR htlb_buddy_alloc_fail " (since Linux 2.6.26)"
6625 .\" commit 3b1163006332302117b1b2acf226d4014ff46525
6626 .\" Present only if the kernel was configured with
6627 .\" .BR CONFIG_VM_EVENT_COUNTERS
6629 .\" .BR CONFIG_HUGETLB_PAGE .
6631 .IR unevictable_pgs_culled " (since Linux 2.6.28)"
6632 .\" commit bbfd28eee9fbd73e780b19beb3dc562befbb94fa
6633 .\" Present only if the kernel was configured with
6634 .\" .BR CONFIG_VM_EVENT_COUNTERS .
6636 .IR unevictable_pgs_scanned " (since Linux 2.6.28)"
6637 .\" commit bbfd28eee9fbd73e780b19beb3dc562befbb94fa
6638 .\" Present only if the kernel was configured with
6639 .\" .BR CONFIG_VM_EVENT_COUNTERS .
6641 .IR unevictable_pgs_rescued " (since Linux 2.6.28)"
6642 .\" commit bbfd28eee9fbd73e780b19beb3dc562befbb94fa
6643 .\" Present only if the kernel was configured with
6644 .\" .BR CONFIG_VM_EVENT_COUNTERS .
6646 .IR unevictable_pgs_mlocked " (since Linux 2.6.28)"
6647 .\" commit 5344b7e648980cc2ca613ec03a56a8222ff48820
6648 .\" Present only if the kernel was configured with
6649 .\" .BR CONFIG_VM_EVENT_COUNTERS .
6651 .IR unevictable_pgs_munlocked " (since Linux 2.6.28)"
6652 .\" commit 5344b7e648980cc2ca613ec03a56a8222ff48820
6653 .\" Present only if the kernel was configured with
6654 .\" .BR CONFIG_VM_EVENT_COUNTERS .
6656 .IR unevictable_pgs_cleared " (since Linux 2.6.28)"
6657 .\" commit 5344b7e648980cc2ca613ec03a56a8222ff48820
6658 .\" Present only if the kernel was configured with
6659 .\" .BR CONFIG_VM_EVENT_COUNTERS .
6661 .IR unevictable_pgs_stranded " (since Linux 2.6.28)"
6662 .\" commit 5344b7e648980cc2ca613ec03a56a8222ff48820
6663 .\" Present only if the kernel was configured with
6664 .\" .BR CONFIG_VM_EVENT_COUNTERS .
6665 .\" Linux 3.7 removed unevictable_pgs_mlockfreed
6667 .IR thp_fault_alloc " (since Linux 2.6.39)"
6668 .\" commit 81ab4201fb7d91d6b0cd9ad5b4b16776e4bed145
6669 See the kernel source file
6670 .IR Documentation/admin\-guide/mm/transhuge.rst .
6671 .\" Present only if the kernel was configured with
6672 .\" .BR CONFIG_VM_EVENT_COUNTERS
6674 .\" .BR CONFIG_TRANSPARENT_HUGEPAGE .
6676 .IR thp_fault_fallback " (since Linux 2.6.39)"
6677 .\" commit 81ab4201fb7d91d6b0cd9ad5b4b16776e4bed145
6678 See the kernel source file
6679 .IR Documentation/admin\-guide/mm/transhuge.rst .
6680 .\" Present only if the kernel was configured with
6681 .\" .BR CONFIG_VM_EVENT_COUNTERS
6683 .\" .BR CONFIG_TRANSPARENT_HUGEPAGE .
6685 .IR thp_collapse_alloc " (since Linux 2.6.39)"
6686 .\" commit 81ab4201fb7d91d6b0cd9ad5b4b16776e4bed145
6687 See the kernel source file
6688 .IR Documentation/admin\-guide/mm/transhuge.rst .
6689 .\" Present only if the kernel was configured with
6690 .\" .BR CONFIG_VM_EVENT_COUNTERS
6692 .\" .BR CONFIG_TRANSPARENT_HUGEPAGE .
6694 .IR thp_collapse_alloc_failed " (since Linux 2.6.39)"
6695 .\" commit 81ab4201fb7d91d6b0cd9ad5b4b16776e4bed145
6696 See the kernel source file
6697 .IR Documentation/admin\-guide/mm/transhuge.rst .
6698 .\" Present only if the kernel was configured with
6699 .\" .BR CONFIG_VM_EVENT_COUNTERS
6701 .\" .BR CONFIG_TRANSPARENT_HUGEPAGE .
6703 .IR thp_split " (since Linux 2.6.39)"
6704 .\" commit 81ab4201fb7d91d6b0cd9ad5b4b16776e4bed145
6705 See the kernel source file
6706 .IR Documentation/admin\-guide/mm/transhuge.rst .
6707 .\" Present only if the kernel was configured with
6708 .\" .BR CONFIG_VM_EVENT_COUNTERS
6710 .\" .BR CONFIG_TRANSPARENT_HUGEPAGE .
6712 .IR thp_zero_page_alloc " (since Linux 3.8)"
6713 .\" commit d8a8e1f0da3d29d7268b3300c96a059d63901b76
6714 See the kernel source file
6715 .IR Documentation/admin\-guide/mm/transhuge.rst .
6716 .\" Present only if the kernel was configured with
6717 .\" .BR CONFIG_VM_EVENT_COUNTERS
6719 .\" .BR CONFIG_TRANSPARENT_HUGEPAGE .
6721 .IR thp_zero_page_alloc_failed " (since Linux 3.8)"
6722 .\" commit d8a8e1f0da3d29d7268b3300c96a059d63901b76
6723 See the kernel source file
6724 .IR Documentation/admin\-guide/mm/transhuge.rst .
6725 .\" Present only if the kernel was configured with
6726 .\" .BR CONFIG_VM_EVENT_COUNTERS
6728 .\" .BR CONFIG_TRANSPARENT_HUGEPAGE .
6730 .IR balloon_inflate " (since Linux 3.18)"
6731 .\" commit 09316c09dde33aae14f34489d9e3d243ec0d5938
6732 .\" Present only if the kernel was configured with
6733 .\" .BR CONFIG_VM_EVENT_COUNTERS
6735 .\" .BR CONFIG_MEMORY_BALLOON .
6737 .IR balloon_deflate " (since Linux 3.18)"
6738 .\" commit 09316c09dde33aae14f34489d9e3d243ec0d5938
6739 .\" Present only if the kernel was configured with
6740 .\" .BR CONFIG_VM_EVENT_COUNTERS
6742 .\" .BR CONFIG_MEMORY_BALLOON .
6744 .IR balloon_migrate " (since Linux 3.18)"
6745 .\" commit 09316c09dde33aae14f34489d9e3d243ec0d5938
6746 .\" Present only if the kernel was configured with
6747 .\" .BR CONFIG_VM_EVENT_COUNTERS ,
6748 .\" .BR CONFIG_MEMORY_BALLOON ,
6750 .\" .BR CONFIG_BALLOON_COMPACTION .
6752 .IR nr_tlb_remote_flush " (since Linux 3.12)"
6753 .\" commit 9824cf9753ecbe8f5b47aa9b2f218207defea211
6754 .\" Present only if the kernel was configured with
6755 .\" .BR CONFIG_DEBUG_TLBFLUSH
6757 .\" .BR CONFIG_SMP .
6759 .IR nr_tlb_remote_flush_received " (since Linux 3.12)"
6760 .\" commit 9824cf9753ecbe8f5b47aa9b2f218207defea211
6761 .\" Present only if the kernel was configured with
6762 .\" .BR CONFIG_DEBUG_TLBFLUSH
6764 .\" .BR CONFIG_SMP .
6766 .IR nr_tlb_local_flush_all " (since Linux 3.12)"
6767 .\" commit 9824cf9753ecbe8f5b47aa9b2f218207defea211
6768 .\" Present only if the kernel was configured with
6769 .\" .BR CONFIG_DEBUG_TLBFLUSH .
6771 .IR nr_tlb_local_flush_one " (since Linux 3.12)"
6772 .\" commit 9824cf9753ecbe8f5b47aa9b2f218207defea211
6773 .\" Present only if the kernel was configured with
6774 .\" .BR CONFIG_DEBUG_TLBFLUSH .
6776 .IR vmacache_find_calls " (since Linux 3.16)"
6777 .\" commit 4f115147ff802267d0aa41e361c5aa5bd933d896
6778 .\" Present only if the kernel was configured with
6779 .\" .BR CONFIG_DEBUG_VM_VMACACHE .
6781 .IR vmacache_find_hits " (since Linux 3.16)"
6782 .\" commit 4f115147ff802267d0aa41e361c5aa5bd933d896
6783 .\" Present only if the kernel was configured with
6784 .\" .BR CONFIG_DEBUG_VM_VMACACHE .
6786 .IR vmacache_full_flushes " (since Linux 3.19)"
6787 .\" commit f5f302e21257ebb0c074bbafc37606c26d28cc3d
6788 .\" Present only if the kernel was configured with
6789 .\" .BR CONFIG_DEBUG_VM_VMACACHE .
6792 .IR /proc/zoneinfo " (since Linux 2.6.13)"
6793 This file displays information about memory zones.
6794 This is useful for analyzing virtual memory behavior.
6795 .\" FIXME more should be said about /proc/zoneinfo
6797 Many files contain strings (e.g., the environment and command line)
6798 that are in the internal format,
6799 with subfields terminated by null bytes (\(aq\e0\(aq).
6800 When inspecting such files, you may find that the results are more readable
6801 if you use a command of the following form to display them:
6805 .RB "$" " cat \fIfile\fP | tr \(aq\e000\(aq \(aq\en\(aq"
6809 This manual page is incomplete, possibly inaccurate, and is the kind
6810 of thing that needs to be updated very often.
6811 .\" .SH ACKNOWLEDGEMENTS
6812 .\" The material on /proc/sys/fs and /proc/sys/kernel is closely based on
6813 .\" kernel source documentation files written by Rik van Riel.
6845 The Linux kernel source files:
6846 .IR Documentation/filesystems/proc.txt ,
6847 .IR Documentation/sysctl/fs.txt ,
6848 .IR Documentation/sysctl/kernel.txt ,
6849 .IR Documentation/sysctl/net.txt ,
6851 .IR Documentation/sysctl/vm.txt .