user_namespaces.7: Document /proc/PID/projid_map
[man-pages.git] / man5 / proc.5
blob3da1a1aa7f1ba7159182c5d0752a272a04e59966
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>
8 .\"
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.
14 .\"
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.
19 .\"
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.
24 .\"
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/>.
28 .\" %%%LICENSE_END
29 .\"
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
50 .\"
51 .\" FIXME cross check against Documentation/filesystems/proc.txt
52 .\" to see what information could be imported from that file
53 .\" into this file.
54 .\"
55 .TH PROC 5 2021-03-22 "Linux" "Linux Programmer's Manual"
56 .SH NAME
57 proc \- process information pseudo-filesystem
58 .SH DESCRIPTION
59 The
60 .B proc
61 filesystem is a pseudo-filesystem which provides an interface to
62 kernel data structures.
63 It is commonly mounted at
64 .IR /proc .
65 Typically, it is mounted automatically by the system,
66 but it can also be mounted manually using a command such as:
67 .PP
68 .in +4n
69 .EX
70 mount \-t proc proc /proc
71 .EE
72 .in
73 .PP
74 Most of the files in the
75 .B proc
76 filesystem are read-only,
77 but some files are writable, allowing kernel variables to be changed.
78 .\"
79 .SS Mount options
80 The
81 .B proc
82 filesystem supports the following mount options:
83 .TP
84 .BR hidepid "=\fIn\fP (since Linux 3.3)"
85 .\" commit 0499680a42141d86417a8fbaa8c8db806bea1201
86 This option controls who can access the information in
87 .IR /proc/[pid]
88 directories.
89 The argument,
90 .IR n ,
91 is one of the following values:
92 .RS
93 .TP 4
95 Everybody may access all
96 .IR /proc/[pid]
97 directories.
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
103 .IR /proc/[pid]
104 directories but their own (the
105 .IR /proc/[pid]
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
113 specific program
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
123 .IR /proc/[pid]
124 directories belonging to other users become invisible.
125 This means that
126 .IR /proc/[pid]
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
132 .BR stat (2)
133 on a
134 .IR /proc/[pid]
135 directory.
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
147 .BR hidepid
148 (i.e., users in this group behave as though
149 .I /proc
150 was mounted with
151 .IR hidepid=0 ).
152 This group should be used instead of approaches such as putting
153 nonroot users into the
154 .BR sudoers (5)
155 file.
157 .SS Overview
158 Underneath
159 .IR /proc ,
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
167 .I /proc/[pid]
168 directories, a
169 .I task
170 subdirectory contains subdirectories of the form
171 .IR task/[tid] ,
172 which contain corresponding information about each of the threads
173 in the process, where
174 .I tid
175 is the kernel thread ID of the thread.
178 .I /proc/[pid]
179 subdirectories are visible when iterating through
180 .I /proc
181 with
182 .BR getdents (2)
183 (and thus are visible when one uses
184 .BR ls (1)
185 to view the contents of
186 .IR /proc ).
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]
193 directories.
196 .I /proc/[tid]
197 subdirectories are
198 .I not
199 visible when iterating through
200 .I /proc
201 with
202 .BR getdents (2)
203 (and thus are
204 .I not
205 visible when one uses
206 .BR ls (1)
207 to view the contents of
208 .IR /proc ).
210 .I /proc/self
211 When a process accesses this magic symbolic link,
212 it resolves to the process's own
213 .I /proc/[pid]
214 directory.
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]
220 directory.
222 .I /proc/[a\-z]*
223 Various other files and subdirectories under
224 .I /proc
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
231 under the
232 .I /proc
233 hierarchy.
235 .I /proc/[pid]
236 There is a numerical subdirectory for each running process; the
237 subdirectory is named by the process ID.
238 Each
239 .I /proc/[pid]
240 subdirectory contains the pseudo-files and directories described below.
242 The files inside each
243 .I /proc/[pid]
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
247 .IR root:root
248 if the process's "dumpable" attribute is set to a value other than 1.
250 Before Linux 4.11,
251 .\" commit 68eb94f16227336a5773b83ecfa8290f1d6b78ce
252 .IR root:root
253 meant the "global" root user ID and group ID
254 (i.e., UID 0 and GID 0 in the initial user namespace).
255 Since Linux 4.11,
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
259 .I /proc/[pid]
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:
266 .IP * 3
267 The attribute was explicitly set via the
268 .BR prctl (2)
269 .B PR_SET_DUMPABLE
270 operation.
271 .IP *
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
275 .BR prctl (2).
278 Resetting the "dumpable" attribute to 1 reverts the ownership of the
279 .IR /proc/[pid]/*
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
283 .BR prctl (2).
284 Therefore, it may be desirable to reset the "dumpable" attribute
285 .I after
286 making any desired changes to the process's effective UID or GID.
288 .I /proc/[pid]/attr
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
316 transitions to
317 .BR execve (2)
318 (see the description of
319 .IR /proc/[pid]/attr/exec ,
320 below).
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
325 contexts.
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
339 writes to this node.
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
344 .BR execve (2).
346 In SELinux,
347 this is needed to support role/domain transitions, and
348 .BR execve (2)
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
353 .BR execve (2)
354 so that the new program reverts to the default behavior for any
355 .BR execve (2)
356 calls that it may make.
357 In SELinux, a process can set
358 only its own
359 .I /proc/[pid]/attr/exec
360 attribute.
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
365 .BR open (2),
366 .BR mkdir (2),
367 .BR symlink (2),
369 .BR mknod (2)
371 SELinux employs this file to support creation of a file
372 (using the aforementioned system calls)
373 in a secure state,
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
377 .BR execve (2),
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
381 explicitly reset.
382 In SELinux, a process can set only its own
383 .IR /proc/[pid]/attr/fscreate
384 attribute.
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
390 .RB ( add_key (2))
391 will be labeled with this context.
392 For further information, see the kernel source file
393 .I Documentation/security/keys/core.rst
394 (or file
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
400 before Linux 3.0).
402 .IR /proc/[pid]/attr/prev " (since Linux 2.6.0)"
403 This file contains the security context of the process before the last
404 .BR execve (2);
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
416 .BR sched (7).
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.
425 See also
426 .BR getauxval (3).
428 Permission to access this file is governed by a ptrace access mode
429 .B PTRACE_MODE_READ_FSCREDS
430 check; see
431 .BR ptrace (2).
433 .IR /proc/[pid]/cgroup " (since Linux 2.6.24)"
435 .BR cgroups (7).
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
455 had this effect.)
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
474 process.
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:
486 4 (since Linux 3.11)
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
494 was written to.
496 5 (since Linux 4.0)
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.
502 Writing any value to
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.
522 If, after an
523 .BR execve (2),
524 the process modifies its
525 .I argv
526 strings, those changes will show up here.
527 This is not the same thing as modifying the
528 .I argv
529 array.
531 Furthermore, a process may change the memory location that this file refers via
532 .BR prctl (2)
533 operations such as
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
541 .I comm
542 value\(emthat is, the command name associated with the process.
543 Different threads in the same process may have different
544 .I comm
545 values, accessible via
546 .IR /proc/[pid]/task/[tid]/comm .
547 A thread may modify its
548 .I comm
549 value, or that of any of other thread in the same thread group (see
550 the discussion of
551 .B CLONE_THREAD
553 .BR clone (2)),
554 by writing to the file
555 .IR /proc/self/task/[tid]/comm .
556 Strings longer than
557 .B TASK_COMM_LEN
558 (16) characters (including the terminating null byte) are silently truncated.
560 This file provides a superset of the
561 .BR prctl (2)
562 .B PR_SET_NAME
564 .B PR_GET_NAME
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
569 .I %e
570 specifier in
571 .IR /proc/sys/kernel/core_pattern ;
573 .BR core (5).
575 .IR /proc/[pid]/coredump_filter " (since Linux 2.6.23)"
577 .BR core (5).
579 .IR /proc/[pid]/cpuset " (since Linux 2.6.12)"
580 .\" and/proc/[pid]/task/[tid]/cpuset
582 .BR cpuset (7).
584 .I /proc/[pid]/cwd
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:
589 .in +4n
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
602 .RB ( readlink (2))
603 this symbolic link is governed by a ptrace access mode
604 .B PTRACE_MODE_READ_FSCREDS
605 check; see
606 .BR ptrace (2).
608 .I /proc/[pid]/environ
609 This file contains the initial environment that was set
610 when the currently executing program was started via
611 .BR execve (2).
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:
616 .in +4n
618 .RB "$" " cat /proc/1/environ | tr \(aq\e000\(aq \(aq\en\(aq"
622 If, after an
623 .BR execve (2),
624 the process modifies its environment
625 (e.g., by calling functions such as
626 .BR putenv (3)
627 or modifying the
628 .BR environ (7)
629 variable directly),
630 this file will
631 .I not
632 reflect those changes.
634 Furthermore, a process may change the memory location that this file refers via
635 .BR prctl (2)
636 operations such as
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
641 check; see
642 .BR ptrace (2).
644 .I /proc/[pid]/exe
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.
649 You can even type
650 .I /proc/[pid]/exe
651 to run another copy of the same executable that is being run by
652 process [pid].
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
662 .RB ( readlink (2))
663 this symbolic link is governed by a ptrace access mode
664 .B PTRACE_MODE_READ_FSCREDS
665 check; see
666 .BR ptrace (2).
668 Under Linux 2.0 and earlier,
669 .I /proc/[pid]/exe
670 is a pointer to the binary which was executed,
671 and appears as a symbolic link.
673 .BR readlink (2)
674 call on this file under Linux 2.0 returns a string in the format:
676     [device]:inode
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).
681 .BR find (1)
682 with the
683 .I \-inum
684 option can be used to locate the file.
686 .I /proc/[pid]/fd/
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.
696 .BR readlink (2)
697 call on this file returns a string in the format:
699     type:[inode]
701 For example,
702 .I socket:[2248868]
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
706 .IR /proc/net/ .
708 For file descriptors that have no corresponding inode
709 (e.g., file descriptors produced by
710 .BR bpf (2),
711 .BR epoll_create (2),
712 .BR eventfd (2),
713 .BR inotify_init (2),
714 .BR perf_event_open (2),
715 .BR signalfd (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
724 .I file-type
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
743 .IR /proc/[pid]/fd
744 files as command-line arguments.
745 For example, assuming that
746 .I \-i
747 is the flag designating an input file and
748 .I \-o
749 is the flag designating an output file:
751 .in +4n
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.
763 .I /proc/self/fd/N
764 is approximately the same as
765 .I /dev/fd/N
766 in some UNIX and UNIX-like systems.
767 Most Linux MAKEDEV scripts symbolically link
768 .I /dev/fd
770 .IR /proc/self/fd ,
771 in fact.
773 Most systems provide symbolic links
774 .IR /dev/stdin ,
775 .IR /dev/stdout ,
777 .IR /dev/stderr ,
778 which respectively link to the files
779 .IR 0 ,
780 .IR 1 ,
782 .IR 2
784 .IR /proc/self/fd .
785 Thus the example command above could be written as:
787 .in +4n
789 .RB "$" " foobar \-i /dev/stdin \-o /dev/stdout ..."
793 Permission to dereference or read
794 .RB ( readlink (2))
795 the symbolic links in this directory is governed by a ptrace access mode
796 .B PTRACE_MODE_READ_FSCREDS
797 check; see
798 .BR ptrace (2).
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
803 .I /proc/[pid]/fd
804 entry,
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:
808 .in +4n
810 .RB "$" " echo test | sudo \-u nobody cat"
811 test
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
819 .IR nobody ,
821 .B cat
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:
836 .in +4n
838 .RB "$" " cat /proc/12015/fdinfo/4"
839 pos:    1000
840 flags:  01002002
841 mnt_id: 21
845 The fields are as follows:
848 .I pos
849 This is a decimal number showing the file offset.
851 .I flags
852 This is an octal number that displays the
853 file access mode and file status flags (see
854 .BR open (2)).
855 If the close-on-exec file descriptor flag is set, then
856 .I flags
857 will also include the value
858 .BR O_CLOEXEC .
860 Before Linux 3.1,
861 .\" commit 1117f72ea0217ba0cc19f05adbbd8b9a397f5ab7
862 this field incorrectly displayed the setting of
863 .B O_CLOEXEC
864 at the time the file was opened,
865 rather than the current setting of the close-on-exec flag.
868 .I mnt_id
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
877 .BR eventfd (2)),
878 we see (since Linux 3.8)
879 .\" commit cbac5542d48127b546a23d816380a7926eee1c25
880 the following fields:
882 .in +4n
884 pos:    0
885 flags:  02
886 mnt_id: 10
887 eventfd\-count:               40
891 .I eventfd\-count
892 is the current value of the eventfd counter, in hexadecimal.
894 For epoll file descriptors (see
895 .BR epoll (7)),
896 we see (since Linux 3.8)
897 .\" commit 138d22b58696c506799f8de759804083ff9effae
898 the following fields:
900 .in +4n
902 pos:    0
903 flags:  02
904 mnt_id: 10
905 tfd:        9 events:       19 data: 74253d2500000009
906 tfd:        7 events:       19 data: 74253d2500000007
910 Each of the lines beginning
911 .I tfd
912 describes one of the file descriptors being monitored via
913 the epoll file descriptor (see
914 .BR epoll_ctl (2)
915 for some details).
917 .IR tfd
918 field is the number of the file descriptor.
920 .I events
921 field is a hexadecimal mask of the events being monitored for this file
922 descriptor.
924 .I data
925 field is the data value associated with this file descriptor.
927 For signalfd file descriptors (see
928 .BR signalfd (2)),
929 we see (since Linux 3.8)
930 .\" commit 138d22b58696c506799f8de759804083ff9effae
931 the following fields:
933 .in +4n
935 pos:    0
936 flags:  02
937 mnt_id: 10
938 sigmask:        0000000000000006
942 .I sigmask
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
946 .B SIGINT
948 .BR SIGQUIT ;
950 .BR signal (7).)
952 For inotify file descriptors (see
953 .BR inotify (7)),
954 we see (since Linux 3.8)
955 the following fields:
957 .in +4n
959 pos:    0
960 flags:  00
961 mnt_id: 11
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:
972 .I wd
973 A watch descriptor number (in decimal).
975 .I ino
976 The inode number of the target file (in hexadecimal).
978 .I sdev
979 The ID of the device where the target file resides (in hexadecimal).
981 .I mask
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:
987 .IR fhandle\-bytes ,
988 .IR fhandle\-type ,
990 .IR f_handle .
992 For fanotify file descriptors (see
993 .BR fanotify (7)),
994 we see (since Linux 3.8)
995 the following fields:
997 .in +4n
999 pos:    0
1000 flags:  02
1001 mnt_id: 11
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
1008 was created via
1009 .BR fanotify_init (2):
1012 .I flags
1014 .I flags
1015 argument given to
1016 .BR fanotify_init (2)
1017 (expressed in hexadecimal).
1019 .I event\-flags
1021 .I event_f_flags
1022 argument given to
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:
1032 .I mflags
1033 The flags associated with the mark
1034 (expressed in hexadecimal).
1036 .I mask
1037 The events mask for this mark
1038 (expressed in hexadecimal).
1040 .I ignored_mask
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
1049 .BR timerfd (2)),
1050 we see (since Linux 3.17)
1051 .\" commit af9c4957cf212ad9cf0bee34c95cb11de5426e85
1052 the following fields:
1054 .in +4n
1056 pos:    0
1057 flags:  02004002
1058 mnt_id: 13
1059 clockid: 0
1060 ticks: 0
1061 settime flags: 03
1062 it_value: (7695568592, 640020877)
1063 it_interval: (0, 0)
1068 .I clockid
1069 This is the numeric value of the clock ID
1070 (corresponding to one of the
1071 .B CLOCK_*
1072 constants defined via
1073 .IR <time.h> )
1074 that is used to mark the progress of the timer (in this example, 0 is
1075 .BR CLOCK_REALTIME ).
1077 .I ticks
1078 This is the number of timer expirations that have occurred,
1079 (i.e., the value that
1080 .BR read (2)
1081 on it would return).
1083 .I settime flags
1084 This field lists the flags with which the timerfd was last armed (see
1085 .BR timerfd_settime (2)),
1086 in octal
1087 (in this example, both
1088 .B TFD_TIMER_ABSTIME
1090 .B TFD_TIMER_CANCEL_ON_SET
1091 are set).
1093 .I it_value
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
1099 flag.
1101 .I it_interval
1102 This field contains the interval of the timer,
1103 in seconds and nanoseconds.
1104 (The
1105 .I it_value
1107 .I it_interval
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:
1121 .in +4n
1123 .RB "#" " cat /proc/3828/io"
1124 rchar: 323934931
1125 wchar: 323929600
1126 syscr: 632687
1127 syscw: 632675
1128 read_bytes: 0
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
1140 .BR read (2)
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
1145 pagecache).
1147 .IR wchar ": characters written"
1148 The number of bytes which this task has caused, or shall cause to be written
1149 to disk.
1150 Similar caveats apply here as with
1151 .IR rchar .
1153 .IR syscr ": read syscalls"
1154 Attempt to count the number of read I/O operations\(emthat is,
1155 system calls such as
1156 .BR read (2)
1158 .BR pread (2).
1160 .IR syscw ": write syscalls"
1161 Attempt to count the number of write I/O operations\(emthat is,
1162 system calls such as
1163 .BR write (2)
1165 .BR pwrite (2).
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
1174 the storage layer.
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
1186 (in its
1187 .IR write_bytes )
1188 will not be happening.
1191 .IR Note :
1192 In the current implementation, things are a bit racy on 32-bit systems:
1193 if process A reads process B's
1194 .I /proc/[pid]/io
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
1200 check; see
1201 .BR ptrace (2).
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
1206 .BR getrlimit (2)).
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.
1209 Since Linux 2.6.36,
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
1219 files (see
1220 .BR mmap (2)).
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:
1226 .in +4n
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
1231 \&...
1235 Although these entries are present for memory regions that were
1236 mapped with the
1237 .BR MAP_FILE
1238 flag, the way anonymous shared memory (regions created with the
1239 .B MAP_ANON | MAP_SHARED
1240 flags)
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
1244 .I /dev/zero
1245 one:
1247 .in +4n
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
1256 check; see
1257 .BR ptrace (2).
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
1267 .BR CAP_SYS_ADMIN
1268 in the initial user namespace;
1269 since Linux 5.9, the reading process must have either
1270 .BR CAP_SYS_ADMIN
1272 .BR CAP_CHECKPOINT_RESTORE
1273 in the user namespace where it resides.
1275 .I /proc/[pid]/maps
1276 A file containing the currently mapped memory regions and their access
1277 permissions.
1279 .BR mmap (2)
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
1284 check; see
1285 .BR ptrace (2).
1287 The format of the file is:
1289 .in +4n
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]
1297 \&...
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
1306 \&...
1307 f2c6ff8c000\-7f2c7078c000 rw\-p 00000000 00:00 0    [stack:986]
1308 \&...
1309 7fffb2c0d000\-7fffb2c2e000 rw\-p 00000000 00:00 0   [stack]
1310 7fffb2d48000\-7fffb2d49000 r\-xp 00000000 00:00 0   [vdso]
1315 .I address
1316 field is the address space in the process that the mapping occupies.
1318 .I perms
1319 field is a set of permissions:
1321 .in +4n
1323 r = read
1324 w = write
1325 x = execute
1326 s = shared
1327 p = private (copy on write)
1332 .I offset
1333 field is the offset into the file/whatever;
1334 .I dev
1335 is the device
1336 (major:minor);
1337 .I inode
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).
1343 .I pathname
1344 field will usually be the file that is backing the mapping.
1345 For ELF files,
1346 you can easily coordinate with the
1347 .I offset
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:
1355 .IR [stack]
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
1362 .IR <tid>
1363 is a thread ID).
1364 It corresponds to the
1365 .IR /proc/[pid]/task/[tid]/
1366 path.
1367 This field was removed in Linux 4.5, since providing this information
1368 for a process with large numbers of threads is expensive.
1370 .IR [vdso]
1371 The virtual dynamically linked shared object.
1373 .BR vdso (7).
1375 .IR [heap]
1376 The process's heap.
1380 If the
1381 .I pathname
1382 field is blank,
1383 this is an anonymous mapping as obtained via
1384 .BR mmap (2).
1385 There is no easy way to coordinate this back to a process's source,
1386 short of running it through
1387 .BR gdb (1),
1388 .BR strace (1),
1389 or similar.
1391 .I pathname
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
1396 .I \e012
1397 character sequence.
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.
1405 .I /proc/[pid]/mem
1406 This file can be used to access the pages of a process's memory through
1407 .BR open (2),
1408 .BR read (2),
1410 .BR lseek (2).
1412 Permission to access this file is governed by a ptrace access mode
1413 .B PTRACE_MODE_ATTACH_FSCREDS
1414 check; see
1415 .BR ptrace (2).
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:
1439 .RS 7
1440 .TP 5
1442 mount ID: a unique ID for the mount (may be reused after
1443 .BR umount (2)).
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
1460 .BR chroot (2)),
1461 the ID shown here won't have a corresponding record in
1462 .I mountinfo
1463 whose mount ID (field 1) matches this parent mount ID
1464 (because mounts that lie outside the process's root directory
1465 are not shown in
1466 .IR mountinfo ).
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
1474 .IR mountinfo .
1477 major:minor: the value of
1478 .I st_dev
1479 for files on this filesystem (see
1480 .BR stat (2)).
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
1492 .BR mount (2)).
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]".
1503 (10)
1504 mount source: filesystem-specific information or "none".
1506 (11)
1507 super options: per-superblock options (see
1508 .BR mount (2)).
1511 Currently, the possible optional fields are
1512 .IR shared ,
1513 .IR master ,
1514 .IR propagate_from ,
1516 .IR unbindable .
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
1531 .BR fstab (5).
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
1536 .BR select (2)
1537 to mark the file descriptor as having an exceptional condition, and
1538 .BR poll (2)
1540 .BR epoll_wait (2)
1541 mark the file as having a priority event
1542 .RB ( POLLPRI ).
1543 (Before Linux 2.6.30,
1544 a change in this file was indicated by the file descriptor
1545 being marked as readable for
1546 .BR select (2),
1547 and being marked as having an error condition for
1548 .BR poll (2)
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:
1558 .in +4n
1560 device /dev/sda7 mounted on /home with fstype ext3 [stats]
1561 (       1      )            ( 2 )             (3 ) (  4  )
1565 The fields in each line are:
1566 .RS 7
1567 .TP 5
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
1588 .IR /proc/net .
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
1594 .BR setns (2).
1595 For more information, see
1596 .BR namespaces (7).
1598 .IR /proc/[pid]/numa_maps " (since Linux 2.6.14)"
1600 .BR numa (7).
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
1606 .IR oom_score
1607 value:
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
1617 .I oom_adj
1618 setting.
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
1632 for the OOM-killer.
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
1641 .IP * 2
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:
1648 .IP * 2
1649 whether the process creates a lot of children using
1650 .BR fork (2)
1651 (+);
1652 .IP *
1653 whether the process has been running a long time,
1654 or has used a lot of CPU time (\-);
1655 .IP *
1656 whether the process has a low nice value (i.e., > 0) (+); and
1657 .IP *
1658 whether the process is making direct hardware access (\-).
1659 .\" More precisely, if it has CAP_SYS_RAWIO
1663 .I oom_score
1664 also reflects the adjustment specified by the
1665 .I oom_score_adj
1667 .I oom_adj
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
1690 being exhausted,
1691 the allowed memory represents the set of mems assigned to that
1692 cpuset (see
1693 .BR cpuset (7)).
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.
1701 The value of
1702 .I oom_score_adj
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.
1716 Setting an
1717 .I oom_score_adj
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.
1729 Its value is
1730 scaled linearly with
1731 .IR oom_score_adj .
1733 Writing to
1734 .IR /proc/[pid]/oom_score_adj
1736 .IR /proc/[pid]/oom_adj
1737 will change the other with its scaled value.
1740 .BR choom (1)
1741 program provides a command-line interface for adjusting the
1742 .I oom_score_adj
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)
1762 Zero
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)
1771 PTE is soft-dirty
1772 (see the kernel source file
1773 .IR Documentation/admin\-guide/mm/soft\-dirty.rst ).
1775 54\(en0
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.
1788 To employ
1789 .IR /proc/[pid]/pagemap
1790 efficiently, use
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
1803 check; see
1804 .BR ptrace (2).
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
1814 check; see
1815 .BR ptrace (2).
1817 .I /proc/[pid]/root
1818 UNIX and Linux support the idea of a per-process root of the
1819 filesystem, set by the
1820 .BR chroot (2)
1821 system call.
1822 This file is a symbolic link that points to the process's
1823 root directory, and behaves in the same way as
1824 .IR exe ,
1826 .IR fd/* .
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:
1835 .in +4n
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
1840 sh1# \fBecho $$\fP
1841 27123
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:
1849 .in +4n
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
1859 11                                    # Actually bind
1860                                       # mounted to /usr
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
1868 .I /proc/[pid]/root
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
1874 .RB ( readlink (2))
1875 this symbolic link is governed by a ptrace access mode
1876 .B PTRACE_MODE_READ_FSCREDS
1877 check; see
1878 .BR ptrace (2).
1879 .\" FIXME Describe /proc/[pid]/projid_map
1880 .\"       Added in 3.7
1881 .\"       commit f76d207a66c3a53defea67e7d36c3eb1b7d6d61d
1883 .IR /proc/[pid]/seccomp " (Linux 2.6.12 to 2.6.22)"
1884 This file can be used to read and change the process's
1885 secure computing (seccomp) mode setting.
1886 It contains the value 0 if the process is not in seccomp mode,
1887 and 1 if the process is in strict seccomp mode (see
1888 .BR seccomp (2)).
1889 Writing 1 to this file places the process irreversibly in strict seccomp mode.
1890 (Further attempts to write to the file fail with the
1891 .B EPERM
1892 error.)
1894 In Linux 2.6.23,
1895 this file went away, to be replaced by the
1896 .BR prctl (2)
1897 .BR PR_GET_SECCOMP
1899 .BR PR_SET_SECCOMP
1900 operations (and later by
1901 .BR seccomp (2)
1902 and the
1903 .I Seccomp
1904 field in
1905 .IR /proc/[pid]/status ).
1906 .\" FIXME Describe /proc/[pid]/sessionid
1907 .\"       commit 1e0bd7550ea9cf474b1ad4c6ff5729a507f75fdc
1908 .\"       CONFIG_AUDITSYSCALL
1909 .\"       Added in 2.6.25; read-only; only readable by real UID
1911 .\" FIXME Describe /proc/[pid]/sched
1912 .\"       Added in 2.6.23
1913 .\"       CONFIG_SCHED_DEBUG, and additional fields if CONFIG_SCHEDSTATS
1914 .\"       Displays various scheduling parameters
1915 .\"       This file can be written, to reset stats
1916 .\"       The set of fields exposed by this file have changed
1917 .\"       significantly over time.
1918 .\"       commit 43ae34cb4cd650d1eb4460a8253a8e747ba052ac
1920 .\" FIXME Describe /proc/[pid]/schedstats and
1921 .\"       /proc/[pid]/task/[tid]/schedstats
1922 .\"       Added in 2.6.9
1923 .\"       CONFIG_SCHEDSTATS
1925 .IR /proc/[pid]/setgroups " (since Linux 3.19)"
1927 .BR user_namespaces (7).
1929 .IR /proc/[pid]/smaps " (since Linux 2.6.14)"
1930 This file shows memory consumption for each of the process's mappings.
1931 (The
1932 .BR pmap (1)
1933 command displays similar information,
1934 in a form that may be easier for parsing.)
1935 For each mapping there is a series of lines such as the following:
1937 .in +4n
1939 00400000\-0048a000 r\-xp 00000000 fd:03 960637       /bin/bash
1940 Size:                552 kB
1941 Rss:                 460 kB
1942 Pss:                 100 kB
1943 Shared_Clean:        452 kB
1944 Shared_Dirty:          0 kB
1945 Private_Clean:         8 kB
1946 Private_Dirty:         0 kB
1947 Referenced:          460 kB
1948 Anonymous:             0 kB
1949 AnonHugePages:         0 kB
1950 ShmemHugePages:        0 kB
1951 ShmemPmdMapped:        0 kB
1952 Swap:                  0 kB
1953 KernelPageSize:        4 kB
1954 MMUPageSize:           4 kB
1955 KernelPageSize:        4 kB
1956 MMUPageSize:           4 kB
1957 Locked:                0 kB
1958 ProtectionKey:         0
1959 VmFlags: rd ex mr mw me dw
1963 The first of these lines shows the same information as is displayed
1964 for the mapping in
1965 .IR /proc/[pid]/maps .
1966 The following lines show the size of the mapping,
1967 the amount of the mapping that is currently resident in RAM ("Rss"),
1968 the process's proportional share of this mapping ("Pss"),
1969 the number of clean and dirty shared pages in the mapping,
1970 and the number of clean and dirty private pages in the mapping.
1971 "Referenced" indicates the amount of memory currently marked as
1972 referenced or accessed.
1973 "Anonymous" shows the amount of memory
1974 that does not belong to any file.
1975 "Swap" shows how much
1976 would-be-anonymous memory is also used, but out on swap.
1978 The "KernelPageSize" line (available since Linux 2.6.29)
1979 is the page size used by the kernel to back the virtual memory area.
1980 This matches the size used by the MMU in the majority of cases.
1981 However, one counter-example occurs on PPC64 kernels
1982 whereby a kernel using 64 kB as a base page size may still use 4 kB
1983 pages for the MMU on older processors.
1984 To distinguish the two attributes, the "MMUPageSize" line
1985 (also available since Linux 2.6.29)
1986 reports the page size used by the MMU.
1988 The "Locked" indicates whether the mapping is locked in memory
1989 or not.
1991 The "ProtectionKey" line (available since Linux 4.9, on x86 only)
1992 contains the memory protection key (see
1993 .BR pkeys (7))
1994 associated with the virtual memory area.
1995 This entry is present only if the kernel was built with the
1996 .B CONFIG_X86_INTEL_MEMORY_PROTECTION_KEYS
1997 configuration option (since Linux 4.6).
1999 The "VmFlags" line (available since Linux 3.8)
2000 represents the kernel flags associated with the virtual memory area,
2001 encoded using the following two-letter codes:
2003     rd  - readable
2004     wr  - writable
2005     ex  - executable
2006     sh  - shared
2007     mr  - may read
2008     mw  - may write
2009     me  - may execute
2010     ms  - may share
2011     gd  - stack segment grows down
2012     pf  - pure PFN range
2013     dw  - disabled write to the mapped file
2014     lo  - pages are locked in memory
2015     io  - memory mapped I/O area
2016     sr  - sequential read advise provided
2017     rr  - random read advise provided
2018     dc  - do not copy area on fork
2019     de  - do not expand area on remapping
2020     ac  - area is accountable
2021     nr  - swap space is not reserved for the area
2022     ht  - area uses huge tlb pages
2023     sf  - perform synchronous page faults (since Linux 4.15)
2024     nl  - non-linear mapping (removed in Linux 4.0)
2025     ar  - architecture specific flag
2026     wf  - wipe on fork (since Linux 4.14)
2027     dd  - do not include area into core dump
2028     sd  - soft-dirty flag (since Linux 3.13)
2029     mm  - mixed map area
2030     hg  - huge page advise flag
2031     nh  - no-huge page advise flag
2032     mg  - mergeable advise flag
2033     um  - userfaultfd missing pages tracking (since Linux 4.3)
2034     uw  - userfaultfd wprotect pages tracking (since Linux 4.3)
2037 .IR /proc/[pid]/smaps
2038 file is present only if the
2039 .B CONFIG_PROC_PAGE_MONITOR
2040 kernel configuration option is enabled.
2042 .IR /proc/[pid]/stack " (since Linux 2.6.29)"
2043 .\" 2ec220e27f5040aec1e88901c1b6ea3d135787ad
2044 This file provides a symbolic trace of the function calls in this
2045 process's kernel stack.
2046 This file is provided only if the kernel was built with the
2047 .B CONFIG_STACKTRACE
2048 configuration option.
2050 Permission to access this file is governed by a ptrace access mode
2051 .B PTRACE_MODE_ATTACH_FSCREDS
2052 check; see
2053 .BR ptrace (2).
2055 .I /proc/[pid]/stat
2056 Status information about the process.
2057 This is used by
2058 .BR ps (1).
2059 It is defined in the kernel source file
2060 .IR fs/proc/array.c "."
2062 The fields, in order, with their proper
2063 .BR scanf (3)
2064 format specifiers, are listed below.
2065 Whether or not certain of these fields display valid information is governed by
2066 a ptrace access mode
2067 .BR PTRACE_MODE_READ_FSCREDS " | " PTRACE_MODE_NOAUDIT
2068 check (refer to
2069 .BR ptrace (2)).
2070 If the check denies access, then the field value is displayed as 0.
2071 The affected fields are indicated with the marking [PT].
2074 (1) \fIpid\fP \ %d
2076 The process ID.
2078 (2) \fIcomm\fP \ %s
2079 The filename of the executable, in parentheses.
2080 Strings longer than
2081 .B TASK_COMM_LEN
2082 (16) characters (including the terminating null byte) are silently truncated.
2083 This is visible whether or not the executable is swapped out.
2085 (3) \fIstate\fP \ %c
2086 One of the following characters, indicating process state:
2088 .IP R 3
2089 Running
2090 .IP S
2091 Sleeping in an interruptible wait
2092 .IP D
2093 Waiting in uninterruptible
2094 disk sleep
2095 .IP Z
2096 Zombie
2097 .IP T
2098 Stopped (on a signal) or (before Linux 2.6.33) trace stopped
2099 .IP t
2100 .\" commit 44d90df6b757c59651ddd55f1a84f28132b50d29
2101 Tracing stop (Linux 2.6.33 onward)
2102 .IP W
2103 Paging (only before Linux 2.6.0)
2104 .IP X
2105 Dead (from Linux 2.6.0 onward)
2106 .IP x
2107 .\" commit 44d90df6b757c59651ddd55f1a84f28132b50d29
2108 Dead (Linux 2.6.33 to
2109 .\" commit 74e37200de8e9c4e09b70c21c3f13c2071e77457
2110 3.13 only)
2111 .IP K
2112 .\" commit 44d90df6b757c59651ddd55f1a84f28132b50d29
2113 Wakekill (Linux 2.6.33 to
2114 .\" commit 74e37200de8e9c4e09b70c21c3f13c2071e77457
2115 3.13 only)
2116 .IP W
2117 .\" commit 44d90df6b757c59651ddd55f1a84f28132b50d29
2118 Waking (Linux 2.6.33 to
2119 .\" commit 74e37200de8e9c4e09b70c21c3f13c2071e77457
2120 3.13 only)
2121 .IP P
2122 .\" commit f2530dc71cf0822f90bb63ea4600caaef33a66bb
2123 Parked (Linux 3.9 to
2124 .\" commit 74e37200de8e9c4e09b70c21c3f13c2071e77457
2125 3.13 only)
2128 (4) \fIppid\fP \ %d
2129 The PID of the parent of this process.
2131 (5) \fIpgrp\fP \ %d
2132 The process group ID of the process.
2134 (6) \fIsession\fP \ %d
2135 The session ID of the process.
2137 (7) \fItty_nr\fP \ %d
2138 The controlling terminal of the process.
2139 (The minor device number is contained in the combination of bits
2140 31 to 20 and 7 to 0;
2141 the major device number is in bits 15 to 8.)
2143 (8) \fItpgid\fP \ %d
2144 .\" This field and following, up to and including wchan added 0.99.1
2145 The ID of the foreground process group of the controlling
2146 terminal of the process.
2148 (9) \fIflags\fP \ %u
2149 The kernel flags word of the process.
2150 For bit meanings,
2151 see the PF_* defines in the Linux kernel source file
2152 .IR include/linux/sched.h .
2153 Details depend on the kernel version.
2155 The format for this field was %lu before Linux 2.6.
2157 (10) \fIminflt\fP \ %lu
2158 The number of minor faults the process has made which have not
2159 required loading a memory page from disk.
2161 (11) \fIcminflt\fP \ %lu
2162 The number of minor faults that the process's
2163 waited-for children have made.
2165 (12) \fImajflt\fP \ %lu
2166 The number of major faults the process has made which have
2167 required loading a memory page from disk.
2169 (13) \fIcmajflt\fP \ %lu
2170 The number of major faults that the process's
2171 waited-for children have made.
2173 (14) \fIutime\fP \ %lu
2174 Amount of time that this process has been scheduled in user mode,
2175 measured in clock ticks (divide by
2176 .IR sysconf(_SC_CLK_TCK) ).
2177 This includes guest time, \fIguest_time\fP
2178 (time spent running a virtual CPU, see below),
2179 so that applications that are not aware of the guest time field
2180 do not lose that time from their calculations.
2182 (15) \fIstime\fP \ %lu
2183 Amount of time that this process has been scheduled in kernel mode,
2184 measured in clock ticks (divide by
2185 .IR sysconf(_SC_CLK_TCK) ).
2187 (16) \fIcutime\fP \ %ld
2188 Amount of time that this process's
2189 waited-for children have been scheduled in user mode,
2190 measured in clock ticks (divide by
2191 .IR sysconf(_SC_CLK_TCK) ).
2192 (See also
2193 .BR times (2).)
2194 This includes guest time, \fIcguest_time\fP
2195 (time spent running a virtual CPU, see below).
2197 (17) \fIcstime\fP \ %ld
2198 Amount of time that this process's
2199 waited-for children have been scheduled in kernel mode,
2200 measured in clock ticks (divide by
2201 .IR sysconf(_SC_CLK_TCK) ).
2203 (18) \fIpriority\fP \ %ld
2204 (Explanation for Linux 2.6)
2205 For processes running a real-time scheduling policy
2206 .RI ( policy
2207 below; see
2208 .BR sched_setscheduler (2)),
2209 this is the negated scheduling priority, minus one;
2210 that is, a number in the range \-2 to \-100,
2211 corresponding to real-time priorities 1 to 99.
2212 For processes running under a non-real-time scheduling policy,
2213 this is the raw nice value
2214 .RB ( setpriority (2))
2215 as represented in the kernel.
2216 The kernel stores nice values as numbers
2217 in the range 0 (high) to 39 (low),
2218 corresponding to the user-visible nice range of \-20 to 19.
2220 Before Linux 2.6, this was a scaled value based on
2221 the scheduler weighting given to this process.
2222 .\" And back in kernel 1.2 days things were different again.
2224 (19) \fInice\fP \ %ld
2225 The nice value (see
2226 .BR setpriority (2)),
2227 a value in the range 19 (low priority) to \-20 (high priority).
2228 .\" Back in kernel 1.2 days things were different.
2229 .\" .TP
2230 .\" \fIcounter\fP %ld
2231 .\" The current maximum size in jiffies of the process's next timeslice,
2232 .\" or what is currently left of its current timeslice, if it is the
2233 .\" currently running process.
2234 .\" .TP
2235 .\" \fItimeout\fP %u
2236 .\" The time in jiffies of the process's next timeout.
2237 .\" timeout was removed sometime around 2.1/2.2
2239 (20) \fInum_threads\fP \ %ld
2240 Number of threads in this process (since Linux 2.6).
2241 Before kernel 2.6, this field was hard coded to 0 as a placeholder
2242 for an earlier removed field.
2244 (21) \fIitrealvalue\fP \ %ld
2245 The time in jiffies before the next
2246 .B SIGALRM
2247 is sent to the process due to an interval timer.
2248 Since kernel 2.6.17, this field is no longer maintained,
2249 and is hard coded as 0.
2251 (22) \fIstarttime\fP \ %llu
2252 The time the process started after system boot.
2253 In kernels before Linux 2.6, this value was expressed in jiffies.
2254 Since Linux 2.6, the value is expressed in clock ticks (divide by
2255 .IR sysconf(_SC_CLK_TCK) ).
2257 The format for this field was %lu before Linux 2.6.
2259 (23) \fIvsize\fP \ %lu
2260 Virtual memory size in bytes.
2262 (24) \fIrss\fP \ %ld
2263 Resident Set Size: number of pages the process has in real memory.
2264 This is just the pages which
2265 count toward text, data, or stack space.
2266 This does not include pages
2267 which have not been demand-loaded in, or which are swapped out.
2268 This value is inaccurate; see
2269 .I /proc/[pid]/statm
2270 below.
2272 (25) \fIrsslim\fP \ %lu
2273 Current soft limit in bytes on the rss of the process;
2274 see the description of
2275 .B RLIMIT_RSS
2277 .BR getrlimit (2).
2279 (26) \fIstartcode\fP \ %lu \ [PT]
2280 The address above which program text can run.
2282 (27) \fIendcode\fP \ %lu \ [PT]
2283 The address below which program text can run.
2285 (28) \fIstartstack\fP \ %lu \ [PT]
2286 The address of the start (i.e., bottom) of the stack.
2288 (29) \fIkstkesp\fP \ %lu \ [PT]
2289 The current value of ESP (stack pointer), as found in the
2290 kernel stack page for the process.
2292 (30) \fIkstkeip\fP \ %lu \ [PT]
2293 The current EIP (instruction pointer).
2295 (31) \fIsignal\fP \ %lu
2296 The bitmap of pending signals, displayed as a decimal number.
2297 Obsolete, because it does not provide information on real-time signals; use
2298 .I /proc/[pid]/status
2299 instead.
2301 (32) \fIblocked\fP \ %lu
2302 The bitmap of blocked signals, displayed as a decimal number.
2303 Obsolete, because it does not provide information on real-time signals; use
2304 .I /proc/[pid]/status
2305 instead.
2307 (33) \fIsigignore\fP \ %lu
2308 The bitmap of ignored signals, displayed as a decimal number.
2309 Obsolete, because it does not provide information on real-time signals; use
2310 .I /proc/[pid]/status
2311 instead.
2313 (34) \fIsigcatch\fP \ %lu
2314 The bitmap of caught signals, displayed as a decimal number.
2315 Obsolete, because it does not provide information on real-time signals; use
2316 .I /proc/[pid]/status
2317 instead.
2319 (35) \fIwchan\fP \ %lu \ [PT]
2320 This is the "channel" in which the process is waiting.
2321 It is the address of a location in the kernel where the process is sleeping.
2322 The corresponding symbolic name can be found in
2323 .IR /proc/[pid]/wchan .
2325 (36) \fInswap\fP \ %lu
2326 .\" nswap was added in 2.0
2327 Number of pages swapped (not maintained).
2329 (37) \fIcnswap\fP \ %lu
2330 .\" cnswap was added in 2.0
2331 Cumulative \fInswap\fP for child processes (not maintained).
2333 (38) \fIexit_signal\fP \ %d \ (since Linux 2.1.22)
2334 Signal to be sent to parent when we die.
2336 (39) \fIprocessor\fP \ %d \ (since Linux 2.2.8)
2337 CPU number last executed on.
2339 (40) \fIrt_priority\fP \ %u \ (since Linux 2.5.19)
2340 Real-time scheduling priority, a number in the range 1 to 99 for
2341 processes scheduled under a real-time policy,
2342 or 0, for non-real-time processes (see
2343 .BR sched_setscheduler (2)).
2345 (41) \fIpolicy\fP \ %u \ (since Linux 2.5.19)
2346 Scheduling policy (see
2347 .BR sched_setscheduler (2)).
2348 Decode using the SCHED_* constants in
2349 .IR linux/sched.h .
2351 The format for this field was %lu before Linux 2.6.22.
2353 (42) \fIdelayacct_blkio_ticks\fP \ %llu \ (since Linux 2.6.18)
2354 Aggregated block I/O delays, measured in clock ticks (centiseconds).
2356 (43) \fIguest_time\fP \ %lu \ (since Linux 2.6.24)
2357 Guest time of the process (time spent running a virtual CPU
2358 for a guest operating system), measured in clock ticks (divide by
2359 .IR sysconf(_SC_CLK_TCK) ).
2361 (44) \fIcguest_time\fP \ %ld \ (since Linux 2.6.24)
2362 Guest time of the process's children, measured in clock ticks (divide by
2363 .IR sysconf(_SC_CLK_TCK) ).
2365 (45) \fIstart_data\fP \ %lu \ (since Linux 3.3) \ [PT]
2366 .\" commit b3f7f573a20081910e34e99cbc91831f4f02f1ff
2367 Address above which program initialized and
2368 uninitialized (BSS) data are placed.
2370 (46) \fIend_data\fP \ %lu \ (since Linux 3.3) \ [PT]
2371 .\" commit b3f7f573a20081910e34e99cbc91831f4f02f1ff
2372 Address below which program initialized and
2373 uninitialized (BSS) data are placed.
2375 (47) \fIstart_brk\fP \ %lu \ (since Linux 3.3) \ [PT]
2376 .\" commit b3f7f573a20081910e34e99cbc91831f4f02f1ff
2377 Address above which program heap can be expanded with
2378 .BR brk (2).
2380 (48) \fIarg_start\fP \ %lu \ (since Linux 3.5) \ [PT]
2381 .\" commit 5b172087f99189416d5f47fd7ab5e6fb762a9ba3
2382 Address above which program command-line arguments
2383 .RI ( argv )
2384 are placed.
2386 (49) \fIarg_end\fP \ %lu \ (since Linux 3.5) \ [PT]
2387 .\" commit 5b172087f99189416d5f47fd7ab5e6fb762a9ba3
2388 Address below program command-line arguments
2389 .RI ( argv )
2390 are placed.
2392 (50) \fIenv_start\fP \ %lu \ (since Linux 3.5) \ [PT]
2393 .\" commit 5b172087f99189416d5f47fd7ab5e6fb762a9ba3
2394 Address above which program environment is placed.
2396 (51) \fIenv_end\fP \ %lu \ (since Linux 3.5) \ [PT]
2397 .\" commit 5b172087f99189416d5f47fd7ab5e6fb762a9ba3
2398 Address below which program environment is placed.
2400 (52) \fIexit_code\fP \ %d \ (since Linux 3.5) \ [PT]
2401 .\" commit 5b172087f99189416d5f47fd7ab5e6fb762a9ba3
2402 The thread's exit status in the form reported by
2403 .BR waitpid (2).
2406 .I /proc/[pid]/statm
2407 Provides information about memory usage, measured in pages.
2408 The columns are:
2410 .in +4n
2412 size       (1) total program size
2413            (same as VmSize in \fI/proc/[pid]/status\fP)
2414 resident   (2) resident set size
2415            (inaccurate; same as VmRSS in \fI/proc/[pid]/status\fP)
2416 shared     (3) number of resident shared pages
2417            (i.e., backed by a file)
2418            (inaccurate; same as RssFile+RssShmem in
2419            \fI/proc/[pid]/status\fP)
2420 text       (4) text (code)
2421 .\" (not including libs; broken, includes data segment)
2422 lib        (5) library (unused since Linux 2.6; always 0)
2423 data       (6) data + stack
2424 .\" (including libs; broken, includes library text)
2425 dt         (7) dirty pages (unused since Linux 2.6; always 0)
2429 .\" See SPLIT_RSS_COUNTING in the kernel.
2430 .\" Inaccuracy is bounded by TASK_RSS_EVENTS_THRESH.
2431 Some of these values are inaccurate because
2432 of a kernel-internal scalability optimization.
2433 If accurate values are required, use
2434 .I /proc/[pid]/smaps
2436 .I /proc/[pid]/smaps_rollup
2437 instead, which are much slower but provide accurate, detailed information.
2439 .I /proc/[pid]/status
2440 Provides much of the information in
2441 .I /proc/[pid]/stat
2443 .I /proc/[pid]/statm
2444 in a format that's easier for humans to parse.
2445 Here's an example:
2447 .in +4n
2449 .RB "$" " cat /proc/$$/status"
2450 Name:   bash
2451 Umask:  0022
2452 State:  S (sleeping)
2453 Tgid:   17248
2454 Ngid:   0
2455 Pid:    17248
2456 PPid:   17200
2457 TracerPid:      0
2458 Uid:    1000    1000    1000    1000
2459 Gid:    100     100     100     100
2460 FDSize: 256
2461 Groups: 16 33 100
2462 NStgid: 17248
2463 NSpid:  17248
2464 NSpgid: 17248
2465 NSsid:  17200
2466 VmPeak:   131168 kB
2467 VmSize:   131168 kB
2468 VmLck:         0 kB
2469 VmPin:         0 kB
2470 VmHWM:     13484 kB
2471 VmRSS:     13484 kB
2472 RssAnon:           10264 kB
2473 RssFile:            3220 kB
2474 RssShmem:              0 kB
2475 VmData:    10332 kB
2476 VmStk:       136 kB
2477 VmExe:       992 kB
2478 VmLib:      2104 kB
2479 VmPTE:        76 kB
2480 VmPMD:        12 kB
2481 VmSwap:        0 kB
2482 HugetlbPages:          0 kB             # 4.4
2483 CoreDumping:    0                       # 4.15
2484 Threads:        1
2485 SigQ:   0/3067
2486 SigPnd: 0000000000000000
2487 ShdPnd: 0000000000000000
2488 SigBlk: 0000000000010000
2489 SigIgn: 0000000000384004
2490 SigCgt: 000000004b813efb
2491 CapInh: 0000000000000000
2492 CapPrm: 0000000000000000
2493 CapEff: 0000000000000000
2494 CapBnd: ffffffffffffffff
2495 CapAmb: 0000000000000000
2496 NoNewPrivs:     0
2497 Seccomp:        0
2498 Speculation_Store_Bypass:       vulnerable
2499 Cpus_allowed:   00000001
2500 Cpus_allowed_list:      0
2501 Mems_allowed:   1
2502 Mems_allowed_list:      0
2503 voluntary_ctxt_switches:        150
2504 nonvoluntary_ctxt_switches:     545
2508 The fields are as follows:
2511 .IR Name
2512 Command run by this process.
2513 Strings longer than
2514 .B TASK_COMM_LEN
2515 (16) characters (including the terminating null byte) are silently truncated.
2517 .IR Umask
2518 Process umask, expressed in octal with a leading zero; see
2519 .BR umask (2).
2520 (Since Linux 4.7.)
2522 .IR State
2523 Current state of the process.
2524 One of
2525 "R (running)",
2526 "S (sleeping)",
2527 "D (disk sleep)",
2528 "T (stopped)",
2529 "t (tracing stop)",
2530 "Z (zombie)",
2532 "X (dead)".
2534 .IR Tgid
2535 Thread group ID (i.e., Process ID).
2537 .IR Ngid
2538 NUMA group ID (0 if none; since Linux 3.13).
2540 .IR Pid
2541 Thread ID (see
2542 .BR gettid (2)).
2544 .IR PPid
2545 PID of parent process.
2547 .IR TracerPid
2548 PID of process tracing this process (0 if not being traced).
2550 .IR Uid ", " Gid
2551 Real, effective, saved set, and filesystem UIDs (GIDs).
2553 .IR FDSize
2554 Number of file descriptor slots currently allocated.
2556 .IR Groups
2557 Supplementary group list.
2559 .IR NStgid
2560 Thread group ID (i.e., PID) in each of the PID namespaces of which
2561 .I [pid]
2562 is a member.
2563 The leftmost entry shows the value with respect to the PID namespace
2564 of the process that mounted this procfs (or the root namespace
2565 if mounted by the kernel),
2566 followed by the value in successively nested inner namespaces.
2567 .\" commit e4bc33245124db69b74a6d853ac76c2976f472d5
2568 (Since Linux 4.1.)
2570 .IR NSpid
2571 Thread ID in each of the PID namespaces of which
2572 .I [pid]
2573 is a member.
2574 The fields are ordered as for
2575 .IR NStgid .
2576 (Since Linux 4.1.)
2578 .IR NSpgid
2579 Process group ID in each of the PID namespaces of which
2580 .I [pid]
2581 is a member.
2582 The fields are ordered as for
2583 .IR NStgid .
2584 (Since Linux 4.1.)
2586 .IR NSsid
2587 descendant namespace session ID hierarchy
2588 Session ID in each of the PID namespaces of which
2589 .I [pid]
2590 is a member.
2591 The fields are ordered as for
2592 .IR NStgid .
2593 (Since Linux 4.1.)
2595 .IR VmPeak
2596 Peak virtual memory size.
2598 .IR VmSize
2599 Virtual memory size.
2601 .IR VmLck
2602 Locked memory size (see
2603 .BR mlock (2)).
2605 .IR VmPin
2606 Pinned memory size
2607 .\" commit bc3e53f682d93df677dbd5006a404722b3adfe18
2608 (since Linux 3.2).
2609 These are pages that can't be moved because something needs to
2610 directly access physical memory.
2612 .IR VmHWM
2613 Peak resident set size ("high water mark").
2614 This value is inaccurate; see
2615 .I /proc/[pid]/statm
2616 above.
2618 .IR VmRSS
2619 Resident set size.
2620 Note that the value here is the sum of
2621 .IR RssAnon ,
2622 .IR RssFile ,
2624 .IR RssShmem .
2625 This value is inaccurate; see
2626 .I /proc/[pid]/statm
2627 above.
2629 .IR RssAnon
2630 Size of resident anonymous memory.
2631 .\" commit bf9683d6990589390b5178dafe8fd06808869293
2632 (since Linux 4.5).
2633 This value is inaccurate; see
2634 .I /proc/[pid]/statm
2635 above.
2637 .IR RssFile
2638 Size of resident file mappings.
2639 .\" commit bf9683d6990589390b5178dafe8fd06808869293
2640 (since Linux 4.5).
2641 This value is inaccurate; see
2642 .I /proc/[pid]/statm
2643 above.
2645 .IR RssShmem
2646 Size of resident shared memory (includes System V shared memory,
2647 mappings from
2648 .BR tmpfs (5),
2649 and shared anonymous mappings).
2650 .\" commit bf9683d6990589390b5178dafe8fd06808869293
2651 (since Linux 4.5).
2653 .IR VmData ", " VmStk ", " VmExe
2654 Size of data, stack, and text segments.
2655 This value is inaccurate; see
2656 .I /proc/[pid]/statm
2657 above.
2659 .IR VmLib
2660 Shared library code size.
2662 .IR VmPTE
2663 Page table entries size (since Linux 2.6.10).
2665 .IR VmPMD
2666 .\" commit dc6c9a35b66b520cf67e05d8ca60ebecad3b0479
2667 Size of second-level page tables (added in Linux 4.0; removed in Linux 4.15).
2669 .IR VmSwap
2670 .\" commit b084d4353ff99d824d3bc5a5c2c22c70b1fba722
2671 Swapped-out virtual memory size by anonymous private pages;
2672 shmem swap usage is not included (since Linux 2.6.34).
2673 This value is inaccurate; see
2674 .I /proc/[pid]/statm
2675 above.
2677 .IR HugetlbPages
2678 Size of hugetlb memory portions
2679 .\" commit 5d317b2b6536592a9b51fe65faed43d65ca9158e
2680 (since Linux 4.4).
2682 .IR CoreDumping
2683 Contains the value 1 if the process is currently dumping core,
2684 and 0 if it is not
2685 .\" commit c643401218be0f4ab3522e0c0a63016596d6e9ca
2686 (since Linux 4.15).
2687 This information can be used by a monitoring process to avoid killing
2688 a process that is currently dumping core,
2689 which could result in a corrupted core dump file.
2691 .IR Threads
2692 Number of threads in process containing this thread.
2694 .IR SigQ
2695 This field contains two slash-separated numbers that relate to
2696 queued signals for the real user ID of this process.
2697 The first of these is the number of currently queued
2698 signals for this real user ID, and the second is the
2699 resource limit on the number of queued signals for this process
2700 (see the description of
2701 .BR RLIMIT_SIGPENDING
2703 .BR getrlimit (2)).
2705 .IR SigPnd ", " ShdPnd
2706 Mask (expressed in hexadecimal)
2707 of signals pending for thread and for process as a whole (see
2708 .BR pthreads (7)
2710 .BR signal (7)).
2712 .IR SigBlk ", " SigIgn ", " SigCgt
2713 Masks (expressed in hexadecimal)
2714 indicating signals being blocked, ignored, and caught (see
2715 .BR signal (7)).
2717 .IR CapInh ", " CapPrm ", " CapEff
2718 Masks (expressed in hexadecimal)
2719 of capabilities enabled in inheritable, permitted, and effective sets
2720 (see
2721 .BR capabilities (7)).
2723 .IR CapBnd
2724 Capability bounding set, expressed in hexadecimal
2725 (since Linux 2.6.26, see
2726 .BR capabilities (7)).
2728 .IR CapAmb
2729 Ambient capability set, expressed in hexadecimal
2730 (since Linux 4.3, see
2731 .BR capabilities (7)).
2733 .IR NoNewPrivs
2734 .\" commit af884cd4a5ae62fcf5e321fecf0ec1014730353d
2735 Value of the
2736 .I no_new_privs
2738 (since Linux 4.10, see
2739 .BR prctl (2)).
2741 .IR Seccomp
2742 .\" commit 2f4b3bf6b2318cfaa177ec5a802f4d8d6afbd816
2743 Seccomp mode of the process
2744 (since Linux 3.8, see
2745 .BR seccomp (2)).
2746 0 means
2747 .BR SECCOMP_MODE_DISABLED ;
2748 1 means
2749 .BR SECCOMP_MODE_STRICT ;
2750 2 means
2751 .BR SECCOMP_MODE_FILTER .
2752 This field is provided only if the kernel was built with the
2753 .BR CONFIG_SECCOMP
2754 kernel configuration option enabled.
2756 .IR Speculation_Store_Bypass
2757 .\" commit fae1fa0fc6cca8beee3ab8ed71d54f9a78fa3f64
2758 Speculation flaw mitigation state
2759 (since Linux 4.17, see
2760 .BR prctl (2)).
2762 .IR Cpus_allowed
2763 Hexadecimal mask of CPUs on which this process may run
2764 (since Linux 2.6.24, see
2765 .BR cpuset (7)).
2767 .IR Cpus_allowed_list
2768 Same as previous, but in "list format"
2769 (since Linux 2.6.26, see
2770 .BR cpuset (7)).
2772 .IR Mems_allowed
2773 Mask of memory nodes allowed to this process
2774 (since Linux 2.6.24, see
2775 .BR cpuset (7)).
2777 .IR Mems_allowed_list
2778 Same as previous, but in "list format"
2779 (since Linux 2.6.26, see
2780 .BR cpuset (7)).
2782 .IR voluntary_ctxt_switches ", " nonvoluntary_ctxt_switches
2783 Number of voluntary and involuntary context switches (since Linux 2.6.23).
2786 .IR /proc/[pid]/syscall " (since Linux 2.6.27)"
2787 .\" commit ebcb67341fee34061430f3367f2e507e52ee051b
2788 This file exposes the system call number and argument registers for the
2789 system call currently being executed by the process,
2790 followed by the values of the stack pointer and program counter registers.
2791 The values of all six argument registers are exposed,
2792 although most system calls use fewer registers.
2794 If the process is blocked, but not in a system call,
2795 then the file displays \-1 in place of the system call number,
2796 followed by just the values of the stack pointer and program counter.
2797 If process is not blocked, then the file contains just the string "running".
2799 This file is present only if the kernel was configured with
2800 .BR CONFIG_HAVE_ARCH_TRACEHOOK .
2802 Permission to access this file is governed by a ptrace access mode
2803 .B PTRACE_MODE_ATTACH_FSCREDS
2804 check; see
2805 .BR ptrace (2).
2807 .IR /proc/[pid]/task " (since Linux 2.6.0)"
2808 .\" Precisely: Linux 2.6.0-test6
2809 This is a directory that contains one subdirectory
2810 for each thread in the process.
2811 The name of each subdirectory is the numerical thread ID
2812 .RI ( [tid] )
2813 of the thread (see
2814 .BR gettid (2)).
2816 Within each of these subdirectories, there is a set of
2817 files with the same names and contents as under the
2818 .I /proc/[pid]
2819 directories.
2820 For attributes that are shared by all threads, the contents for
2821 each of the files under the
2822 .I task/[tid]
2823 subdirectories will be the same as in the corresponding
2824 file in the parent
2825 .I /proc/[pid]
2826 directory
2827 (e.g., in a multithreaded process, all of the
2828 .I task/[tid]/cwd
2829 files will have the same value as the
2830 .I /proc/[pid]/cwd
2831 file in the parent directory, since all of the threads in a process
2832 share a working directory).
2833 For attributes that are distinct for each thread,
2834 the corresponding files under
2835 .I task/[tid]
2836 may have different values (e.g., various fields in each of the
2837 .I task/[tid]/status
2838 files may be different for each thread),
2839 .\" in particular: "children" :/
2840 or they might not exist in
2841 .I /proc/[pid]
2842 at all.
2844 .\" The following was still true as at kernel 2.6.13
2845 In a multithreaded process, the contents of the
2846 .I /proc/[pid]/task
2847 directory are not available if the main thread has already terminated
2848 (typically by calling
2849 .BR pthread_exit (3)).
2851 .IR /proc/[pid]/task/[tid]/children " (since Linux 3.5)"
2852 .\" commit 818411616baf46ceba0cff6f05af3a9b294734f7
2853 A space-separated list of child tasks of this task.
2854 Each child task is represented by its TID.
2856 .\" see comments in get_children_pid() in fs/proc/array.c
2857 This option is intended for use by the checkpoint-restore (CRIU) system,
2858 and reliably provides a list of children only if all of the child processes
2859 are stopped or frozen.
2860 It does not work properly if children of the target task exit while
2861 the file is being read!
2862 Exiting children may cause non-exiting children to be omitted from the list.
2863 This makes this interface even more unreliable than classic PID-based
2864 approaches if the inspected task and its children aren't frozen,
2865 and most code should probably not use this interface.
2867 Until Linux 4.2, the presence of this file was governed by the
2868 .B CONFIG_CHECKPOINT_RESTORE
2869 kernel configuration option.
2870 Since Linux 4.2,
2871 .\" commit 2e13ba54a2682eea24918b87ad3edf70c2cf085b
2872 it is governed by the
2873 .B CONFIG_PROC_CHILDREN
2874 option.
2876 .IR /proc/[pid]/timers " (since Linux 3.10)"
2877 .\" commit 5ed67f05f66c41e39880a6d61358438a25f9fee5
2878 .\" commit 48f6a7a511ef8823fdff39afee0320092d43a8a0
2879 A list of the POSIX timers for this process.
2880 Each timer is listed with a line that starts with the string "ID:".
2881 For example:
2883 .in +4n
2885 ID: 1
2886 signal: 60/00007fff86e452a8
2887 notify: signal/pid.2634
2888 ClockID: 0
2889 ID: 0
2890 signal: 60/00007fff86e452a8
2891 notify: signal/pid.2634
2892 ClockID: 1
2896 The lines shown for each timer have the following meanings:
2899 .I ID
2900 The ID for this timer.
2901 This is not the same as the timer ID returned by
2902 .BR timer_create (2);
2903 rather, it is the same kernel-internal ID that is available via the
2904 .I si_timerid
2905 field of the
2906 .IR siginfo_t
2907 structure (see
2908 .BR sigaction (2)).
2910 .I signal
2911 This is the signal number that this timer uses to deliver notifications
2912 followed by a slash, and then the
2913 .I sigev_value
2914 value supplied to the signal handler.
2915 Valid only for timers that notify via a signal.
2917 .I notify
2918 The part before the slash specifies the mechanism
2919 that this timer uses to deliver notifications,
2920 and is one of "thread", "signal", or "none".
2921 Immediately following the slash is either the string "tid" for timers
2922 with
2923 .B SIGEV_THREAD_ID
2924 notification, or "pid" for timers that notify by other mechanisms.
2925 Following the "." is the PID of the process
2926 (or the kernel thread ID of the thread)  that will be delivered
2927 a signal if the timer delivers notifications via a signal.
2929 .I ClockID
2930 This field identifies the clock that the timer uses for measuring time.
2931 For most clocks, this is a number that matches one of the user-space
2932 .BR CLOCK_*
2933 constants exposed via
2934 .IR <time.h> .
2935 .B CLOCK_PROCESS_CPUTIME_ID
2936 timers display with a value of \-6
2937 in this field.
2938 .B CLOCK_THREAD_CPUTIME_ID
2939 timers display with a value of \-2
2940 in this field.
2943 This file is available only when the kernel was configured with
2944 .BR CONFIG_CHECKPOINT_RESTORE .
2946 .IR /proc/[pid]/timerslack_ns " (since Linux 4.6)"
2947 .\" commit da8b44d5a9f8bf26da637b7336508ca534d6b319
2948 .\" commit 5de23d435e88996b1efe0e2cebe242074ce67c9e
2949 This file exposes the process's "current" timer slack value,
2950 expressed in nanoseconds.
2951 The file is writable,
2952 allowing the process's timer slack value to be changed.
2953 Writing 0 to this file resets the "current" timer slack to the
2954 "default" timer slack value.
2955 For further details, see the discussion of
2956 .BR PR_SET_TIMERSLACK
2958 .BR prctl (2).
2960 Initially,
2961 permission to access this file was governed by a ptrace access mode
2962 .B PTRACE_MODE_ATTACH_FSCREDS
2963 check (see
2964 .BR ptrace (2)).
2965 However, this was subsequently deemed too strict a requirement
2966 (and had the side effect that requiring a process to have the
2967 .B CAP_SYS_PTRACE
2968 capability would also allow it to view and change any process's memory).
2969 Therefore, since Linux 4.9,
2970 .\" commit 7abbaf94049914f074306d960b0f968ffe52e59f
2971 only the (weaker)
2972 .B CAP_SYS_NICE
2973 capability is required to access this file.
2975 .IR /proc/[pid]/uid_map ", " /proc/[pid]/gid_map " (since Linux 3.5)"
2977 .BR user_namespaces (7).
2979 .IR /proc/[pid]/wchan " (since Linux 2.6.0)"
2980 The symbolic name corresponding to the location
2981 in the kernel where the process is sleeping.
2983 Permission to access this file is governed by a ptrace access mode
2984 .B PTRACE_MODE_READ_FSCREDS
2985 check; see
2986 .BR ptrace (2).
2988 .IR /proc/[tid]
2989 There  is a numerical subdirectory for each running thread
2990 that is not a thread group leader
2991 (i.e., a thread whose thread ID is not the same as its process ID);
2992 the subdirectory is named by the thread ID.
2993 Each one of these subdirectories contains files and subdirectories
2994 exposing information about the thread with the thread ID
2995 .IR tid .
2996 The contents of these directories are the same as the corresponding
2997 .IR /proc/[pid]/task/[tid]
2998 directories.
3001 .I /proc/[tid]
3002 subdirectories are
3003 .I not
3004 visible when iterating through
3005 .I /proc
3006 with
3007 .BR getdents (2)
3008 (and thus are
3009 .I not
3010 visible when one uses
3011 .BR ls (1)
3012 to view the contents of
3013 .IR /proc ).
3014 However, the pathnames of these directories are visible to
3015 (i.e., usable as arguments in)
3016 system calls that operate on pathnames.
3018 .I /proc/apm
3019 Advanced power management version and battery information when
3020 .B CONFIG_APM
3021 is defined at kernel compilation time.
3023 .I /proc/buddyinfo
3024 This file contains information which is used for diagnosing memory
3025 fragmentation issues.
3026 Each line starts with the identification of the node and the name
3027 of the zone which together identify a memory region.
3028 This is then
3029 followed by the count of available chunks of a certain order in
3030 which these zones are split.
3031 The size in bytes of a certain order is given by the formula:
3033     (2^order)\ *\ PAGE_SIZE
3035 The binary buddy allocator algorithm inside the kernel will split
3036 one chunk into two chunks of a smaller order (thus with half the
3037 size) or combine two contiguous chunks into one larger chunk of
3038 a higher order (thus with double the size) to satisfy allocation
3039 requests and to counter memory fragmentation.
3040 The order matches the column number, when starting to count at zero.
3042 For example on an x86-64 system:
3043 .RS -12
3045 Node 0, zone     DMA     1    1    1    0    2    1    1    0    1    1    3
3046 Node 0, zone   DMA32    65   47    4   81   52   28   13   10    5    1  404
3047 Node 0, zone  Normal   216   55  189  101   84   38   37   27    5    3  587
3051 In this example, there is one node containing three zones and there
3052 are 11 different chunk sizes.
3053 If the page size is 4 kilobytes, then the first zone called
3054 .I DMA
3055 (on x86 the first 16 megabyte of memory) has 1 chunk of 4 kilobytes
3056 (order 0) available and has 3 chunks of 4 megabytes (order 10) available.
3058 If the memory is heavily fragmented, the counters for higher
3059 order chunks will be zero and allocation of large contiguous areas
3060 will fail.
3062 Further information about the zones can be found in
3063 .IR /proc/zoneinfo .
3065 .I /proc/bus
3066 Contains subdirectories for installed busses.
3068 .I /proc/bus/pccard
3069 Subdirectory for PCMCIA devices when
3070 .B CONFIG_PCMCIA
3071 is set at kernel compilation time.
3073 .I /proc/bus/pccard/drivers
3075 .I /proc/bus/pci
3076 Contains various bus subdirectories and pseudo-files containing
3077 information about PCI busses, installed devices, and device
3078 drivers.
3079 Some of these files are not ASCII.
3081 .I /proc/bus/pci/devices
3082 Information about PCI devices.
3083 They may be accessed through
3084 .BR lspci (8)
3086 .BR setpci (8).
3088 .IR /proc/cgroups " (since Linux 2.6.24)"
3090 .BR cgroups (7).
3092 .I /proc/cmdline
3093 Arguments passed to the Linux kernel at boot time.
3094 Often done via a boot manager such as
3095 .BR lilo (8)
3097 .BR grub (8).
3099 .IR /proc/config.gz " (since Linux 2.6)"
3100 This file exposes the configuration options that were used
3101 to build the currently running kernel,
3102 in the same format as they would be shown in the
3103 .I .config
3104 file that resulted when configuring the kernel (using
3105 .IR "make xconfig" ,
3106 .IR "make config" ,
3107 or similar).
3108 The file contents are compressed; view or search them using
3109 .BR zcat (1)
3111 .BR zgrep (1).
3112 As long as no changes have been made to the following file,
3113 the contents of
3114 .I /proc/config.gz
3115 are the same as those provided by:
3117 .in +4n
3119 cat /lib/modules/$(uname \-r)/build/.config
3123 .I /proc/config.gz
3124 is provided only if the kernel is configured with
3125 .BR CONFIG_IKCONFIG_PROC .
3127 .I /proc/crypto
3128 A list of the ciphers provided by the kernel crypto API.
3129 For details, see the kernel
3130 .I "Linux Kernel Crypto API"
3131 documentation available under the kernel source directory
3132 .I Documentation/crypto/
3133 .\" commit 3b72c814a8e8cd638e1ba0da4dfce501e9dff5af
3135 .I Documentation/DocBook
3136 before 4.10;
3137 the documentation can be built using a command such as
3138 .IR "make htmldocs"
3139 in the root directory of the kernel source tree).
3141 .I /proc/cpuinfo
3142 This is a collection of CPU and system architecture dependent items,
3143 for each supported architecture a different list.
3144 Two common entries are \fIprocessor\fP which gives CPU number and
3145 \fIbogomips\fP; a system constant that is calculated
3146 during kernel initialization.
3147 SMP machines have information for
3148 each CPU.
3150 .BR lscpu (1)
3151 command gathers its information from this file.
3153 .I /proc/devices
3154 Text listing of major numbers and device groups.
3155 This can be used by MAKEDEV scripts for consistency with the kernel.
3157 .IR /proc/diskstats " (since Linux 2.5.69)"
3158 This file contains disk I/O statistics for each disk device.
3159 See the Linux kernel source file
3160 .I Documentation/iostats.txt
3161 for further information.
3163 .I /proc/dma
3164 This is a list of the registered \fIISA\fP DMA (direct memory access)
3165 channels in use.
3167 .I /proc/driver
3168 Empty subdirectory.
3170 .I /proc/execdomains
3171 List of the execution domains (ABI personalities).
3173 .I /proc/fb
3174 Frame buffer information when
3175 .B CONFIG_FB
3176 is defined during kernel compilation.
3178 .I /proc/filesystems
3179 A text listing of the filesystems which are supported by the kernel,
3180 namely filesystems which were compiled into the kernel or whose kernel
3181 modules are currently loaded.
3182 (See also
3183 .BR filesystems (5).)
3184 If a filesystem is marked with "nodev",
3185 this means that it does not require a block device to be mounted
3186 (e.g., virtual filesystem, network filesystem).
3188 Incidentally, this file may be used by
3189 .BR mount (8)
3190 when no filesystem is specified and it didn't manage to determine the
3191 filesystem type.
3192 Then filesystems contained in this file are tried
3193 (excepted those that are marked with "nodev").
3195 .I /proc/fs
3196 .\" FIXME Much more needs to be said about /proc/fs
3198 Contains subdirectories that in turn contain files
3199 with information about (certain) mounted filesystems.
3201 .I /proc/ide
3202 This directory
3203 exists on systems with the IDE bus.
3204 There are directories for each IDE channel and attached device.
3205 Files include:
3207 .in +4n
3209 cache              buffer size in KB
3210 capacity           number of sectors
3211 driver             driver version
3212 geometry           physical and logical geometry
3213 identify           in hexadecimal
3214 media              media type
3215 model              manufacturer\(aqs model number
3216 settings           drive settings
3217 smart_thresholds   IDE disk management thresholds (in hex)
3218 smart_values       IDE disk management values (in hex)
3223 .BR hdparm (8)
3224 utility provides access to this information in a friendly format.
3226 .I /proc/interrupts
3227 This is used to record the number of interrupts per CPU per IO device.
3228 Since Linux 2.6.24,
3229 for the i386 and x86-64 architectures, at least, this also includes
3230 interrupts internal to the system (that is, not associated with a device
3231 as such), such as NMI (nonmaskable interrupt), LOC (local timer interrupt),
3232 and for SMP systems, TLB (TLB flush interrupt), RES (rescheduling
3233 interrupt), CAL (remote function call interrupt), and possibly others.
3234 Very easy to read formatting, done in ASCII.
3236 .I /proc/iomem
3237 I/O memory map in Linux 2.4.
3239 .I /proc/ioports
3240 This is a list of currently registered Input-Output port regions that
3241 are in use.
3243 .IR /proc/kallsyms " (since Linux 2.5.71)"
3244 This holds the kernel exported symbol definitions used by the
3245 .BR modules (X)
3246 tools to dynamically link and bind loadable modules.
3247 In Linux 2.5.47 and earlier, a similar file with slightly different syntax
3248 was named
3249 .IR ksyms .
3251 .I /proc/kcore
3252 This file represents the physical memory of the system and is stored
3253 in the ELF core file format.
3254 With this pseudo-file, and an unstripped
3255 kernel
3256 .RI ( /usr/src/linux/vmlinux )
3257 binary, GDB can be used to
3258 examine the current state of any kernel data structures.
3260 The total length of the file is the size of physical memory (RAM) plus
3261 4\ KiB.
3263 .IR /proc/keys " (since Linux 2.6.10)"
3265 .BR keyrings (7).
3267 .IR /proc/key\-users " (since Linux 2.6.10)"
3269 .BR keyrings (7).
3271 .I /proc/kmsg
3272 This file can be used instead of the
3273 .BR syslog (2)
3274 system call to read kernel messages.
3275 A process must have superuser
3276 privileges to read this file, and only one process should read this
3277 file.
3278 This file should not be read if a syslog process is running
3279 which uses the
3280 .BR syslog (2)
3281 system call facility to log kernel messages.
3283 Information in this file is retrieved with the
3284 .BR dmesg (1)
3285 program.
3287 .IR /proc/kpagecgroup " (since Linux 4.3)"
3288 .\" commit 80ae2fdceba8313b0433f899bdd9c6c463291a17
3289 This file contains a 64-bit inode number of
3290 the memory cgroup each page is charged to,
3291 indexed by page frame number (see the discussion of
3292 .IR /proc/[pid]/pagemap ).
3295 .IR /proc/kpagecgroup
3296 file is present only if the
3297 .B CONFIG_MEMCG
3298 kernel configuration option is enabled.
3300 .IR /proc/kpagecount " (since Linux 2.6.25)"
3301 This file contains a 64-bit count of the number of
3302 times each physical page frame is mapped,
3303 indexed by page frame number (see the discussion of
3304 .IR /proc/[pid]/pagemap ).
3307 .IR /proc/kpagecount
3308 file is present only if the
3309 .B CONFIG_PROC_PAGE_MONITOR
3310 kernel configuration option is enabled.
3312 .IR /proc/kpageflags " (since Linux 2.6.25)"
3313 This file contains 64-bit masks corresponding to each physical page frame;
3314 it is indexed by page frame number (see the discussion of
3315 .IR /proc/[pid]/pagemap ).
3316 The bits are as follows:
3318      0 - KPF_LOCKED
3319      1 - KPF_ERROR
3320      2 - KPF_REFERENCED
3321      3 - KPF_UPTODATE
3322      4 - KPF_DIRTY
3323      5 - KPF_LRU
3324      6 - KPF_ACTIVE
3325      7 - KPF_SLAB
3326      8 - KPF_WRITEBACK
3327      9 - KPF_RECLAIM
3328     10 - KPF_BUDDY
3329     11 - KPF_MMAP           (since Linux 2.6.31)
3330     12 - KPF_ANON           (since Linux 2.6.31)
3331     13 - KPF_SWAPCACHE      (since Linux 2.6.31)
3332     14 - KPF_SWAPBACKED     (since Linux 2.6.31)
3333     15 - KPF_COMPOUND_HEAD  (since Linux 2.6.31)
3334     16 - KPF_COMPOUND_TAIL  (since Linux 2.6.31)
3335     17 - KPF_HUGE           (since Linux 2.6.31)
3336     18 - KPF_UNEVICTABLE    (since Linux 2.6.31)
3337     19 - KPF_HWPOISON       (since Linux 2.6.31)
3338     20 - KPF_NOPAGE         (since Linux 2.6.31)
3339     21 - KPF_KSM            (since Linux 2.6.32)
3340     22 - KPF_THP            (since Linux 3.4)
3341     23 - KPF_BALLOON        (since Linux 3.18)
3342 .\" KPF_BALLOON: commit 09316c09dde33aae14f34489d9e3d243ec0d5938
3343     24 - KPF_ZERO_PAGE      (since Linux 4.0)
3344 .\" KPF_ZERO_PAGE: commit 56873f43abdcd574b25105867a990f067747b2f4
3345     25 - KPF_IDLE           (since Linux 4.3)
3346 .\" KPF_IDLE: commit f074a8f49eb87cde95ac9d040ad5e7ea4f029738
3348 For further details on the meanings of these bits,
3349 see the kernel source file
3350 .IR Documentation/admin\-guide/mm/pagemap.rst .
3351 Before kernel 2.6.29,
3352 .\" commit ad3bdefe877afb47480418fdb05ecd42842de65e
3353 .\" commit e07a4b9217d1e97d2f3a62b6b070efdc61212110
3354 .BR KPF_WRITEBACK ,
3355 .BR KPF_RECLAIM ,
3356 .BR KPF_BUDDY ,
3358 .BR KPF_LOCKED
3359 did not report correctly.
3362 .IR /proc/kpageflags
3363 file is present only if the
3364 .B CONFIG_PROC_PAGE_MONITOR
3365 kernel configuration option is enabled.
3367 .IR /proc/ksyms " (Linux 1.1.23\(en2.5.47)"
3369 .IR /proc/kallsyms .
3371 .I /proc/loadavg
3372 The first three fields in this file are load average figures
3373 giving the number of jobs in the run queue (state R)
3374 or waiting for disk I/O (state D) averaged over 1, 5, and 15 minutes.
3375 They are the same as the load average numbers given by
3376 .BR uptime (1)
3377 and other programs.
3378 The fourth field consists of two numbers separated by a slash (/).
3379 The first of these is the number of currently runnable kernel
3380 scheduling entities (processes, threads).
3381 The value after the slash is the number of kernel scheduling entities
3382 that currently exist on the system.
3383 The fifth field is the PID of the process that was most
3384 recently created on the system.
3386 .I /proc/locks
3387 This file shows current file locks
3388 .RB ( flock "(2) and " fcntl (2))
3389 and leases
3390 .RB ( fcntl (2)).
3392 An example of the content shown in this file is the following:
3394 .in +4n
3396 1: POSIX  ADVISORY  READ  5433 08:01:7864448 128 128
3397 2: FLOCK  ADVISORY  WRITE 2001 08:01:7864554 0 EOF
3398 3: FLOCK  ADVISORY  WRITE 1568 00:2f:32388 0 EOF
3399 4: POSIX  ADVISORY  WRITE 699 00:16:28457 0 EOF
3400 5: POSIX  ADVISORY  WRITE 764 00:16:21448 0 0
3401 6: POSIX  ADVISORY  READ  3548 08:01:7867240 1 1
3402 7: POSIX  ADVISORY  READ  3548 08:01:7865567 1826 2335
3403 8: OFDLCK ADVISORY  WRITE \-1 08:01:8713209 128 191
3407 The fields shown in each line are as follows:
3409 .IP (1) 4
3410 The ordinal position of the lock in the list.
3411 .IP (2)
3412 The lock type.
3413 Values that may appear here include:
3416 .B FLOCK
3417 This is a BSD file lock created using
3418 .BR flock (2).
3420 .B OFDLCK
3421 This is an open file description (OFD) lock created using
3422 .BR fcntl (2).
3424 .B POSIX
3425 This is a POSIX byte-range lock created using
3426 .BR fcntl (2).
3428 .IP (3)
3429 Among the strings that can appear here are the following:
3432 .B ADVISORY
3433 This is an advisory lock.
3435 .B MANDATORY
3436 This is a mandatory lock.
3438 .IP (4)
3439 The type of lock.
3440 Values that can appear here are:
3443 .B READ
3444 This is a POSIX or OFD read lock, or a BSD shared lock.
3446 .B WRITE
3447 This is a POSIX or OFD write lock, or a BSD exclusive lock.
3449 .IP (5)
3450 The PID of the process that owns the lock.
3452 Because OFD locks are not owned by a single process
3453 (since multiple processes may have file descriptors that
3454 refer to the same open file description),
3455 the value \-1 is displayed in this field for OFD locks.
3456 (Before kernel 4.14,
3457 .\" commit 9d5b86ac13c573795525ecac6ed2db39ab23e2a8
3458 a bug meant that the PID of the process that
3459 initially acquired the lock was displayed instead of the value \-1.)
3460 .IP (6)
3461 Three colon-separated subfields that identify the major and minor device
3462 ID of the device containing the filesystem where the locked file resides,
3463 followed by the inode number of the locked file.
3464 .IP (7)
3465 The byte offset of the first byte of the lock.
3466 For BSD locks, this value is always 0.
3467 .IP (8)
3468 The byte offset of the last byte of the lock.
3469 .B EOF
3470 in this field means that the lock extends to the end of the file.
3471 For BSD locks, the value shown is always
3472 .IR EOF .
3475 Since Linux 4.9,
3476 .\" commit d67fd44f697dff293d7cdc29af929241b669affe
3477 the list of locks shown in
3478 .I /proc/locks
3479 is filtered to show just the locks for the processes in the PID
3480 namespace (see
3481 .BR pid_namespaces (7))
3482 for which the
3483 .I /proc
3484 filesystem was mounted.
3485 (In the initial PID namespace,
3486 there is no filtering of the records shown in this file.)
3489 .BR lslocks (8)
3490 command provides a bit more information about each lock.
3492 .IR /proc/malloc " (only up to and including Linux 2.2)"
3493 .\" It looks like this only ever did something back in 1.0 days
3494 This file is present only if
3495 .B CONFIG_DEBUG_MALLOC
3496 was defined during compilation.
3498 .I /proc/meminfo
3499 This file reports statistics about memory usage on the system.
3500 It is used by
3501 .BR free (1)
3502 to report the amount of free and used memory (both physical and swap)
3503 on the system as well as the shared memory and buffers used by the
3504 kernel.
3505 Each line of the file consists of a parameter name, followed by a colon,
3506 the value of the parameter, and an option unit of measurement (e.g., "kB").
3507 The list below describes the parameter names and
3508 the format specifier required to read the field value.
3509 Except as noted below,
3510 all of the fields have been present since at least Linux 2.6.0.
3511 Some fields are displayed only if the kernel was configured
3512 with various options; those dependencies are noted in the list.
3515 .IR MemTotal " %lu"
3516 Total usable RAM (i.e., physical RAM minus a few reserved
3517 bits and the kernel binary code).
3519 .IR MemFree " %lu"
3520 The sum of
3521 .IR LowFree + HighFree .
3523 .IR MemAvailable " %lu (since Linux 3.14)"
3524 An estimate of how much memory is available for starting new
3525 applications, without swapping.
3527 .IR Buffers " %lu"
3528 Relatively temporary storage for raw disk blocks that
3529 shouldn't get tremendously large (20 MB or so).
3531 .IR Cached " %lu"
3532 In-memory cache for files read from the disk (the page cache).
3533 Doesn't include
3534 .IR SwapCached .
3536 .IR SwapCached " %lu"
3537 Memory that once was swapped out, is swapped back in but
3538 still also is in the swap file.
3539 (If memory pressure is high, these pages
3540 don't need to be swapped out again because they are already
3541 in the swap file.
3542 This saves I/O.)
3544 .IR Active " %lu"
3545 Memory that has been used more recently and usually not
3546 reclaimed unless absolutely necessary.
3548 .IR Inactive " %lu"
3549 Memory which has been less recently used.
3550 It is more eligible to be reclaimed for other purposes.
3552 .IR Active(anon) " %lu (since Linux 2.6.28)"
3553 [To be documented.]
3555 .IR Inactive(anon) " %lu (since Linux 2.6.28)"
3556 [To be documented.]
3558 .IR Active(file) " %lu (since Linux 2.6.28)"
3559 [To be documented.]
3561 .IR Inactive(file) " %lu (since Linux 2.6.28)"
3562 [To be documented.]
3564 .IR Unevictable " %lu (since Linux 2.6.28)"
3565 (From Linux 2.6.28 to 2.6.30,
3566 \fBCONFIG_UNEVICTABLE_LRU\fP was required.)
3567 [To be documented.]
3569 .IR Mlocked " %lu (since Linux 2.6.28)"
3570 (From Linux 2.6.28 to 2.6.30,
3571 \fBCONFIG_UNEVICTABLE_LRU\fP was required.)
3572 [To be documented.]
3574 .IR HighTotal " %lu"
3575 (Starting with Linux 2.6.19, \fBCONFIG_HIGHMEM\fP is required.)
3576 Total amount of highmem.
3577 Highmem is all memory above \(ti860 MB of physical memory.
3578 Highmem areas are for use by user-space programs,
3579 or for the page cache.
3580 The kernel must use tricks to access
3581 this memory, making it slower to access than lowmem.
3583 .IR HighFree " %lu"
3584 (Starting with Linux 2.6.19, \fBCONFIG_HIGHMEM\fP is required.)
3585 Amount of free highmem.
3587 .IR LowTotal " %lu"
3588 (Starting with Linux 2.6.19, \fBCONFIG_HIGHMEM\fP is required.)
3589 Total amount of lowmem.
3590 Lowmem is memory which can be used for everything that
3591 highmem can be used for, but it is also available for the
3592 kernel's use for its own data structures.
3593 Among many other things,
3594 it is where everything from
3595 .I Slab
3596 is allocated.
3597 Bad things happen when you're out of lowmem.
3599 .IR LowFree " %lu"
3600 (Starting with Linux 2.6.19, \fBCONFIG_HIGHMEM\fP is required.)
3601 Amount of free lowmem.
3603 .IR MmapCopy " %lu (since Linux 2.6.29)"
3604 .RB ( CONFIG_MMU
3605 is required.)
3606 [To be documented.]
3608 .IR SwapTotal " %lu"
3609 Total amount of swap space available.
3611 .IR SwapFree " %lu"
3612 Amount of swap space that is currently unused.
3614 .IR Dirty " %lu"
3615 Memory which is waiting to get written back to the disk.
3617 .IR Writeback " %lu"
3618 Memory which is actively being written back to the disk.
3620 .IR AnonPages " %lu (since Linux 2.6.18)"
3621 Non-file backed pages mapped into user-space page tables.
3623 .IR Mapped " %lu"
3624 Files which have been mapped into memory (with
3625 .BR mmap (2)),
3626 such as libraries.
3628 .IR Shmem " %lu (since Linux 2.6.32)"
3629 Amount of memory consumed in
3630 .BR tmpfs (5)
3631 filesystems.
3633 .IR KReclaimable " %lu (since Linux 4.20)"
3634 Kernel allocations that the kernel will attempt to reclaim
3635 under memory pressure.
3636 Includes
3637 .I SReclaimable
3638 (below), and other direct allocations with a shrinker.
3640 .IR Slab " %lu"
3641 In-kernel data structures cache.
3642 (See
3643 .BR slabinfo (5).)
3645 .IR SReclaimable " %lu (since Linux 2.6.19)"
3646 Part of
3647 .IR Slab ,
3648 that might be reclaimed, such as caches.
3650 .IR SUnreclaim " %lu (since Linux 2.6.19)"
3651 Part of
3652 .IR Slab ,
3653 that cannot be reclaimed on memory pressure.
3655 .IR KernelStack " %lu (since Linux 2.6.32)"
3656 Amount of memory allocated to kernel stacks.
3658 .IR PageTables " %lu (since Linux 2.6.18)"
3659 Amount of memory dedicated to the lowest level of page tables.
3661 .IR Quicklists " %lu (since Linux 2.6.27)"
3662 (\fBCONFIG_QUICKLIST\fP is required.)
3663 [To be documented.]
3665 .IR NFS_Unstable " %lu (since Linux 2.6.18)"
3666 NFS pages sent to the server, but not yet committed to stable storage.
3668 .IR Bounce " %lu (since Linux 2.6.18)"
3669 Memory used for block device "bounce buffers".
3671 .IR WritebackTmp " %lu (since Linux 2.6.26)"
3672 Memory used by FUSE for temporary writeback buffers.
3674 .IR CommitLimit " %lu (since Linux 2.6.10)"
3675 This is the total amount of memory currently available to
3676 be allocated on the system, expressed in kilobytes.
3677 This limit is adhered to
3678 only if strict overcommit accounting is enabled (mode 2 in
3679 .IR /proc/sys/vm/overcommit_memory ).
3680 The limit is calculated according to the formula described under
3681 .IR /proc/sys/vm/overcommit_memory .
3682 For further details, see the kernel source file
3683 .IR Documentation/vm/overcommit\-accounting.rst .
3685 .IR Committed_AS " %lu"
3686 The amount of memory presently allocated on the system.
3687 The committed memory is a sum of all of the memory which
3688 has been allocated by processes, even if it has not been
3689 "used" by them as of yet.
3690 A process which allocates 1 GB of memory (using
3691 .BR malloc (3)
3692 or similar), but touches only 300 MB of that memory will show up
3693 as using only 300 MB of memory even if it has the address space
3694 allocated for the entire 1 GB.
3696 This 1 GB is memory which has been "committed" to by the VM
3697 and can be used at any time by the allocating application.
3698 With strict overcommit enabled on the system (mode 2 in
3699 .IR /proc/sys/vm/overcommit_memory ),
3700 allocations which would exceed the
3701 .I CommitLimit
3702 will not be permitted.
3703 This is useful if one needs to guarantee that processes will not
3704 fail due to lack of memory once that memory has been successfully allocated.
3706 .IR VmallocTotal " %lu"
3707 Total size of vmalloc memory area.
3709 .IR VmallocUsed " %lu"
3710 Amount of vmalloc area which is used.
3711 Since Linux 4.4,
3712 .\" commit a5ad88ce8c7fae7ddc72ee49a11a75aa837788e0
3713 this field is no longer calculated, and is hard coded as 0.
3715 .IR /proc/vmallocinfo .
3717 .IR VmallocChunk " %lu"
3718 Largest contiguous block of vmalloc area which is free.
3719 Since Linux 4.4,
3720 .\" commit a5ad88ce8c7fae7ddc72ee49a11a75aa837788e0
3721 this field is no longer calculated and is hard coded as 0.
3723 .IR /proc/vmallocinfo .
3725 .IR HardwareCorrupted " %lu (since Linux 2.6.32)"
3726 (\fBCONFIG_MEMORY_FAILURE\fP is required.)
3727 [To be documented.]
3729 .IR LazyFree " %lu (since Linux 4.12)"
3730 Shows the amount of memory marked by
3731 .BR madvise (2)
3732 .BR MADV_FREE .
3734 .IR AnonHugePages " %lu (since Linux 2.6.38)"
3735 (\fBCONFIG_TRANSPARENT_HUGEPAGE\fP is required.)
3736 Non-file backed huge pages mapped into user-space page tables.
3738 .IR ShmemHugePages " %lu (since Linux 4.8)"
3739 (\fBCONFIG_TRANSPARENT_HUGEPAGE\fP is required.)
3740 Memory used by shared memory (shmem) and
3741 .BR tmpfs (5)
3742 allocated with huge pages.
3744 .IR ShmemPmdMapped " %lu (since Linux 4.8)"
3745 (\fBCONFIG_TRANSPARENT_HUGEPAGE\fP is required.)
3746 Shared memory mapped into user space with huge pages.
3748 .IR CmaTotal " %lu (since Linux 3.1)"
3749 Total CMA (Contiguous Memory Allocator) pages.
3750 (\fBCONFIG_CMA\fP is required.)
3752 .IR CmaFree " %lu (since Linux 3.1)"
3753 Free CMA (Contiguous Memory Allocator) pages.
3754 (\fBCONFIG_CMA\fP is required.)
3756 .IR HugePages_Total " %lu"
3757 (\fBCONFIG_HUGETLB_PAGE\fP is required.)
3758 The size of the pool of huge pages.
3760 .IR HugePages_Free " %lu"
3761 (\fBCONFIG_HUGETLB_PAGE\fP is required.)
3762 The number of huge pages in the pool that are not yet allocated.
3764 .IR HugePages_Rsvd " %lu (since Linux 2.6.17)"
3765 (\fBCONFIG_HUGETLB_PAGE\fP is required.)
3766 This is the number of huge pages for
3767 which a commitment to allocate from the pool has been made,
3768 but no allocation has yet been made.
3769 These reserved huge pages
3770 guarantee that an application will be able to allocate a
3771 huge page from the pool of huge pages at fault time.
3773 .IR HugePages_Surp " %lu (since Linux 2.6.24)"
3774 (\fBCONFIG_HUGETLB_PAGE\fP is required.)
3775 This is the number of huge pages in
3776 the pool above the value in
3777 .IR /proc/sys/vm/nr_hugepages .
3778 The maximum number of surplus huge pages is controlled by
3779 .IR /proc/sys/vm/nr_overcommit_hugepages .
3781 .IR Hugepagesize " %lu"
3782 (\fBCONFIG_HUGETLB_PAGE\fP is required.)
3783 The size of huge pages.
3785 .IR DirectMap4k " %lu (since Linux 2.6.27)"
3786 Number of bytes of RAM linearly mapped by kernel in 4 kB pages.
3787 (x86.)
3789 .IR DirectMap4M " %lu (since Linux 2.6.27)"
3790 Number of bytes of RAM linearly mapped by kernel in 4 MB pages.
3791 (x86 with
3792 .BR CONFIG_X86_64
3794 .BR CONFIG_X86_PAE
3795 enabled.)
3797 .IR DirectMap2M " %lu (since Linux 2.6.27)"
3798 Number of bytes of RAM linearly mapped by kernel in 2 MB pages.
3799 (x86 with neither
3800 .BR CONFIG_X86_64
3802 .BR CONFIG_X86_PAE
3803 enabled.)
3805 .IR DirectMap1G " %lu (since Linux 2.6.27)"
3806 (x86 with
3807 .BR CONFIG_X86_64
3809 .B CONFIG_X86_DIRECT_GBPAGES
3810 enabled.)
3813 .I /proc/modules
3814 A text list of the modules that have been loaded by the system.
3815 See also
3816 .BR lsmod (8).
3818 .I /proc/mounts
3819 Before kernel 2.4.19, this file was a list
3820 of all the filesystems currently mounted on the system.
3821 With the introduction of per-process mount namespaces in Linux 2.4.19 (see
3822 .BR mount_namespaces (7)),
3823 this file became a link to
3824 .IR /proc/self/mounts ,
3825 which lists the mounts of the process's own mount namespace.
3826 The format of this file is documented in
3827 .BR fstab (5).
3829 .I /proc/mtrr
3830 Memory Type Range Registers.
3831 See the Linux kernel source file
3832 .I Documentation/x86/mtrr.txt
3833 .\" commit 7225e75144b9718cbbe1820d9c011c809d5773fd
3835 .I Documentation/mtrr.txt
3836 before Linux 2.6.28)
3837 for details.
3839 .I /proc/net
3840 This directory contains various files and subdirectories containing
3841 information about the networking layer.
3842 The files contain ASCII structures and are,
3843 therefore, readable with
3844 .BR cat (1).
3845 However, the standard
3846 .BR netstat (8)
3847 suite provides much cleaner access to these files.
3849 With the advent of network namespaces,
3850 various information relating to the network stack is virtualized (see
3851 .BR network_namespaces (7)).
3852 Thus, since Linux 2.6.25,
3853 .\" commit e9720acd728a46cb40daa52c99a979f7c4ff195c
3854 .IR /proc/net
3855 is a symbolic link to the directory
3856 .IR /proc/self/net ,
3857 which contains the same files and directories as listed below.
3858 However, these files and directories now expose information
3859 for the network namespace of which the process is a member.
3861 .I /proc/net/arp
3862 This holds an ASCII readable dump of the kernel ARP table used for
3863 address resolutions.
3864 It will show both dynamically learned and preprogrammed ARP entries.
3865 The format is:
3867 .in +4n
3869 IP address     HW type   Flags     HW address          Mask   Device
3870 192.168.0.50   0x1       0x2       00:50:BF:25:68:F3   *      eth0
3871 192.168.0.250  0x1       0xc       00:00:00:00:00:00   *      eth0
3875 Here "IP address" is the IPv4 address of the machine and the "HW type"
3876 is the hardware type of the address from RFC\ 826.
3877 The flags are the internal
3878 flags of the ARP structure (as defined in
3879 .IR /usr/include/linux/if_arp.h )
3881 the "HW address" is the data link layer mapping for that IP address if
3882 it is known.
3884 .I /proc/net/dev
3885 The dev pseudo-file contains network device status information.
3886 This gives
3887 the number of received and sent packets, the number of errors and
3888 collisions
3889 and other basic statistics.
3890 These are used by the
3891 .BR ifconfig (8)
3892 program to report device status.
3893 The format is:
3896 Inter\-|   Receive                                                |  Transmit
3897  face |bytes    packets errs drop fifo frame compressed multicast|bytes    packets errs drop fifo colls carrier compressed
3898     lo: 2776770   11307    0    0    0     0          0         0  2776770   11307    0    0    0     0       0          0
3899   eth0: 1215645    2751    0    0    0     0          0         0  1782404    4324    0    0    0   427       0          0
3900   ppp0: 1622270    5552    1    0    0     0          0         0   354130    5669    0    0    0     0       0          0
3901   tap0:    7714      81    0    0    0     0          0         0     7714      81    0    0    0     0       0          0
3903 .\" .TP
3904 .\" .I /proc/net/ipx
3905 .\" No information.
3906 .\" .TP
3907 .\" .I /proc/net/ipx_route
3908 .\" No information.
3910 .I /proc/net/dev_mcast
3911 Defined in
3912 .IR /usr/src/linux/net/core/dev_mcast.c :
3914 .in +4n
3916 indx interface_name  dmi_u dmi_g dmi_address
3917 2    eth0            1     0     01005e000001
3918 3    eth1            1     0     01005e000001
3919 4    eth2            1     0     01005e000001
3923 .I /proc/net/igmp
3924 Internet Group Management Protocol.
3925 Defined in
3926 .IR /usr/src/linux/net/core/igmp.c .
3928 .I /proc/net/rarp
3929 This file uses the same format as the
3930 .I arp
3931 file and contains the current reverse mapping database used to provide
3932 .BR rarp (8)
3933 reverse address lookup services.
3934 If RARP is not configured into the
3935 kernel,
3936 this file will not be present.
3938 .I /proc/net/raw
3939 Holds a dump of the RAW socket table.
3940 Much of the information is not of
3942 apart from debugging.
3943 The "sl" value is the kernel hash slot for the
3944 socket,
3945 the "local_address" is the local address and protocol number pair.
3946 \&"St" is
3947 the internal status of the socket.
3948 The "tx_queue" and "rx_queue" are the
3949 outgoing and incoming data queue in terms of kernel memory usage.
3950 The "tr", "tm\->when", and "rexmits" fields are not used by RAW.
3951 The "uid"
3952 field holds the effective UID of the creator of the socket.
3953 .\" .TP
3954 .\" .I /proc/net/route
3955 .\" No information, but looks similar to
3956 .\" .BR route (8).
3958 .I /proc/net/snmp
3959 This file holds the ASCII data needed for the IP, ICMP, TCP, and UDP
3960 management
3961 information bases for an SNMP agent.
3963 .I /proc/net/tcp
3964 Holds a dump of the TCP socket table.
3965 Much of the information is not
3966 of use apart from debugging.
3967 The "sl" value is the kernel hash slot
3968 for the socket, the "local_address" is the local address and port number pair.
3969 The "rem_address" is the remote address and port number pair
3970 (if connected).
3971 \&"St" is the internal status of the socket.
3972 The "tx_queue" and "rx_queue" are the
3973 outgoing and incoming data queue in terms of kernel memory usage.
3974 The "tr", "tm\->when", and "rexmits" fields hold internal information of
3975 the kernel socket state and are useful only for debugging.
3976 The "uid"
3977 field holds the effective UID of the creator of the socket.
3979 .I /proc/net/udp
3980 Holds a dump of the UDP socket table.
3981 Much of the information is not of
3982 use apart from debugging.
3983 The "sl" value is the kernel hash slot for the
3984 socket, the "local_address" is the local address and port number pair.
3985 The "rem_address" is the remote address and port number pair
3986 (if connected).
3987 "St" is the internal status of the socket.
3988 The "tx_queue" and "rx_queue" are the outgoing and incoming data queue
3989 in terms of kernel memory usage.
3990 The "tr", "tm\->when", and "rexmits" fields
3991 are not used by UDP.
3992 The "uid"
3993 field holds the effective UID of the creator of the socket.
3994 The format is:
3997 sl  local_address rem_address   st tx_queue rx_queue tr rexmits  tm\->when uid
3998  1: 01642C89:0201 0C642C89:03FF 01 00000000:00000001 01:000071BA 00000000 0
3999  1: 00000000:0801 00000000:0000 0A 00000000:00000000 00:00000000 6F000100 0
4000  1: 00000000:0201 00000000:0000 0A 00000000:00000000 00:00000000 00000000 0
4003 .I /proc/net/unix
4004 Lists the UNIX domain sockets present within the system and their
4005 status.
4006 The format is:
4009 Num RefCount Protocol Flags    Type St Inode Path
4010  0: 00000002 00000000 00000000 0001 03    42
4011  1: 00000001 00000000 00010000 0001 01  1948 /dev/printer
4014 The fields are as follows:
4016 .TP 10
4017 .IR Num :
4018 the kernel table slot number.
4020 .IR RefCount :
4021 the number of users of the socket.
4023 .IR Protocol :
4024 currently always 0.
4026 .IR Flags :
4027 the internal kernel flags holding the status of the socket.
4029 .IR Type :
4030 the socket type.
4032 .BR SOCK_STREAM
4033 sockets, this is 0001; for
4034 .BR SOCK_DGRAM
4035 sockets, it is 0002; and for
4036 .BR SOCK_SEQPACKET
4037 sockets, it is 0005.
4039 .IR St :
4040 the internal state of the socket.
4042 .IR Inode :
4043 the inode number of the socket.
4045 .IR Path :
4046 the bound pathname (if any) of the socket.
4047 Sockets in the abstract namespace are included in the list,
4048 and are shown with a
4049 .I Path
4050 that commences with the character '@'.
4053 .I /proc/net/netfilter/nfnetlink_queue
4054 This file contains information about netfilter user-space queueing, if used.
4055 Each line represents a queue.
4056 Queues that have not been subscribed to
4057 by user space are not shown.
4059 .in +4n
4061    1   4207     0  2 65535     0     0        0  1
4062   (1)   (2)    (3)(4)  (5)    (6)   (7)      (8)
4066 The fields in each line are:
4067 .RS 7
4068 .TP 5
4070 The ID of the queue.
4071 This matches what is specified in the
4072 .B \-\-queue\-num
4074 .B \-\-queue\-balance
4075 options to the
4076 .BR iptables (8)
4077 NFQUEUE target.
4079 .BR iptables\-extensions (8)
4080 for more information.
4083 The netlink port ID subscribed to the queue.
4086 The number of packets currently queued and waiting to be processed by
4087 the application.
4090 The copy mode of the queue.
4091 It is either 1 (metadata only) or 2
4092 (also copy payload data to user space).
4095 Copy range; that is, how many bytes of packet payload should be copied to
4096 user space at most.
4099 queue dropped.
4100 Number of packets that had to be dropped by the kernel because
4101 too many packets are already waiting for user space to send back the mandatory
4102 accept/drop verdicts.
4105 queue user dropped.
4106 Number of packets that were dropped within the netlink
4107 subsystem.
4108 Such drops usually happen when the corresponding socket buffer is
4109 full; that is, user space is not able to read messages fast enough.
4112 sequence number.
4113 Every queued packet is associated with a (32-bit)
4114 monotonically increasing sequence number.
4115 This shows the ID of the most recent packet queued.
4118 The last number exists only for compatibility reasons and is always 1.
4120 .I /proc/partitions
4121 Contains the major and minor numbers of each partition as well as the number
4122 of 1024-byte blocks and the partition name.
4124 .I /proc/pci
4125 This is a listing of all PCI devices found during kernel initialization
4126 and their configuration.
4128 This file has been deprecated in favor of a new
4129 .I /proc
4130 interface for PCI
4131 .RI ( /proc/bus/pci ).
4132 It became optional in Linux 2.2 (available with
4133 .B CONFIG_PCI_OLD_PROC
4134 set at kernel compilation).
4135 It became once more nonoptionally enabled in Linux 2.4.
4136 Next, it was deprecated in Linux 2.6 (still available with
4137 .B CONFIG_PCI_LEGACY_PROC
4138 set), and finally removed altogether since Linux 2.6.17.
4139 .\" FIXME Document /proc/sched_debug (since Linux 2.6.23)
4140 .\" See also /proc/[pid]/sched
4142 .IR /proc/profile " (since Linux 2.4)"
4143 This file is present only if the kernel was booted with the
4144 .I profile=1
4145 command-line option.
4146 It exposes kernel profiling information in a binary format for use by
4147 .BR readprofile (1).
4148 Writing (e.g., an empty string) to this file resets the profiling counters;
4149 on some architectures,
4150 writing a binary integer "profiling multiplier" of size
4151 .IR sizeof(int)
4152 sets the profiling interrupt frequency.
4154 .I /proc/scsi
4155 A directory with the
4156 .I scsi
4157 mid-level pseudo-file and various SCSI low-level
4158 driver directories,
4159 which contain a file for each SCSI host in this system, all of
4160 which give the status of some part of the SCSI IO subsystem.
4161 These files contain ASCII structures and are, therefore, readable with
4162 .BR cat (1).
4164 You can also write to some of the files to reconfigure the subsystem or
4165 switch certain features on or off.
4167 .I /proc/scsi/scsi
4168 This is a listing of all SCSI devices known to the kernel.
4169 The listing is similar to the one seen during bootup.
4170 scsi currently supports only the \fIadd\-single\-device\fP command which
4171 allows root to add a hotplugged device to the list of known devices.
4173 The command
4175 .in +4n
4177 echo \(aqscsi add\-single\-device 1 0 5 0\(aq > /proc/scsi/scsi
4181 will cause
4182 host scsi1 to scan on SCSI channel 0 for a device on ID 5 LUN 0.
4183 If there
4184 is already a device known on this address or the address is invalid, an
4185 error will be returned.
4187 .I /proc/scsi/[drivername]
4188 \fI[drivername]\fP can currently be NCR53c7xx, aha152x, aha1542, aha1740,
4189 aic7xxx, buslogic, eata_dma, eata_pio, fdomain, in2000, pas16, qlogic,
4190 scsi_debug, seagate, t128, u15\-24f, ultrastore, or wd7000.
4191 These directories show up for all drivers that registered at least one
4192 SCSI HBA.
4193 Every directory contains one file per registered host.
4194 Every host-file is named after the number the host was assigned during
4195 initialization.
4197 Reading these files will usually show driver and host configuration,
4198 statistics, and so on.
4200 Writing to these files allows different things on different hosts.
4201 For example, with the \fIlatency\fP and \fInolatency\fP commands,
4202 root can switch on and off command latency measurement code in the
4203 eata_dma driver.
4204 With the \fIlockup\fP and \fIunlock\fP commands,
4205 root can control bus lockups simulated by the scsi_debug driver.
4207 .I /proc/self
4208 This directory refers to the process accessing the
4209 .I /proc
4210 filesystem,
4211 and is identical to the
4212 .I /proc
4213 directory named by the process ID of the same process.
4215 .I /proc/slabinfo
4216 Information about kernel caches.
4218 .BR slabinfo (5)
4219 for details.
4221 .I /proc/stat
4222 kernel/system statistics.
4223 Varies with architecture.
4224 Common
4225 entries include:
4228 .I cpu  10132153 290696 3084719 46828483 16683 0 25195 0 175628 0
4230 .I cpu0 1393280 32966 572056 13343292 6130 0 17875 0 23933 0
4231 The amount of time, measured in units of
4232 USER_HZ (1/100ths of a second on most architectures, use
4233 .IR sysconf(_SC_CLK_TCK)
4234 to obtain the right value),
4235 .\" 1024 on Alpha and ia64
4236 that the system ("cpu" line) or the specific CPU ("cpu\fIN\fR" line)
4237 spent in various states:
4240 .I user
4241 (1) Time spent in user mode.
4243 .I nice
4244 (2) Time spent in user mode with low priority (nice).
4246 .I system
4247 (3) Time spent in system mode.
4249 .I idle
4250 (4) Time spent in the idle task.
4251 .\" FIXME . Actually, the following info about the /proc/stat 'cpu' field
4252 .\"       does not seem to be quite right (at least in 2.6.12 or 3.6):
4253 .\"       the idle time in /proc/uptime does not quite match this value
4254 This value should be USER_HZ times the
4255 second entry in the
4256 .I /proc/uptime
4257 pseudo-file.
4259 .IR iowait " (since Linux 2.5.41)"
4260 (5) Time waiting for I/O to complete.
4261 This value is not reliable, for the following reasons:
4262 .\" See kernel commit 9c240d757658a3ae9968dd309e674c61f07c7f48
4264 .IP 1. 3
4265 The CPU will not wait for I/O to complete;
4266 iowait is the time that a task is waiting for I/O to complete.
4267 When a CPU goes into idle state for outstanding task I/O,
4268 another task will be scheduled on this CPU.
4269 .IP 2.
4270 On a multi-core CPU,
4271 the task waiting for I/O to complete is not running on any CPU,
4272 so the iowait of each CPU is difficult to calculate.
4273 .IP 3.
4274 The value in this field may
4275 .I decrease
4276 in certain conditions.
4279 .IR irq " (since Linux 2.6.0)"
4280 .\" Precisely: Linux 2.6.0-test4
4281 (6) Time servicing interrupts.
4283 .IR softirq " (since Linux 2.6.0)"
4284 .\" Precisely: Linux 2.6.0-test4
4285 (7) Time servicing softirqs.
4287 .IR steal " (since Linux 2.6.11)"
4288 (8) Stolen time, which is the time spent in other operating systems when
4289 running in a virtualized environment
4291 .IR guest " (since Linux 2.6.24)"
4292 (9) Time spent running a virtual CPU for guest
4293 operating systems under the control of the Linux kernel.
4294 .\" See Changelog entry for 5e84cfde51cf303d368fcb48f22059f37b3872de
4296 .IR guest_nice " (since Linux 2.6.33)"
4297 .\" commit ce0e7b28fb75cb003cfc8d0238613aaf1c55e797
4298 (10) Time spent running a niced guest (virtual CPU for guest
4299 operating systems under the control of the Linux kernel).
4302 \fIpage 5741 1808\fP
4303 The number of pages the system paged in and the number that were paged
4304 out (from disk).
4306 \fIswap 1 0\fP
4307 The number of swap pages that have been brought in and out.
4309 .\" FIXME . The following is not the full picture for the 'intr' of
4310 .\"       /proc/stat on 2.6:
4311 \fIintr 1462898\fP
4312 This line shows counts of interrupts serviced since boot time,
4313 for each of the possible system interrupts.
4314 The first column is the total of all interrupts serviced
4315 including unnumbered architecture specific interrupts;
4316 each subsequent column is the total for that particular numbered interrupt.
4317 Unnumbered interrupts are not shown, only summed into the total.
4319 \fIdisk_io: (2,0):(31,30,5764,1,2) (3,0):\fP...
4320 (major,disk_idx):(noinfo, read_io_ops, blks_read, write_io_ops, blks_written)
4322 (Linux 2.4 only)
4324 \fIctxt 115315\fP
4325 The number of context switches that the system underwent.
4327 \fIbtime 769041601\fP
4328 boot time, in seconds since the Epoch, 1970-01-01 00:00:00 +0000 (UTC).
4330 \fIprocesses 86031\fP
4331 Number of forks since boot.
4333 \fIprocs_running 6\fP
4334 Number of processes in runnable state.
4335 (Linux 2.5.45 onward.)
4337 \fIprocs_blocked 2\fP
4338 Number of processes blocked waiting for I/O to complete.
4339 (Linux 2.5.45 onward.)
4341 .I softirq 229245889 94 60001584 13619 5175704 2471304 28 51212741 59130143 0 51240672
4342 .\" commit d3d64df21d3d0de675a0d3ffa7c10514f3644b30
4343 This line shows the number of softirq for all CPUs.
4344 The first column is the total of all softirqs and
4345 each subsequent column is the total for particular softirq.
4346 (Linux 2.6.31 onward.)
4349 .I /proc/swaps
4350 Swap areas in use.
4351 See also
4352 .BR swapon (8).
4354 .I /proc/sys
4355 This directory (present since 1.3.57) contains a number of files
4356 and subdirectories corresponding to kernel variables.
4357 These variables can be read and in some cases modified using
4358 the \fI/proc\fP filesystem, and the (deprecated)
4359 .BR sysctl (2)
4360 system call.
4362 String values may be terminated by either \(aq\e0\(aq or \(aq\en\(aq.
4364 Integer and long values may be written either in decimal or in
4365 hexadecimal notation (e.g., 0x3FFF).
4366 When writing multiple integer or long values, these may be separated
4367 by any of the following whitespace characters:
4368 \(aq\ \(aq, \(aq\et\(aq, or \(aq\en\(aq.
4369 Using other separators leads to the error
4370 .BR EINVAL .
4372 .IR /proc/sys/abi " (since Linux 2.4.10)"
4373 This directory may contain files with application binary information.
4374 .\" On some systems, it is not present.
4375 See the Linux kernel source file
4376 .I Documentation/sysctl/abi.txt
4377 for more information.
4379 .I /proc/sys/debug
4380 This directory may be empty.
4382 .I /proc/sys/dev
4383 This directory contains device-specific information (e.g.,
4384 .IR dev/cdrom/info ).
4386 some systems, it may be empty.
4388 .I /proc/sys/fs
4389 This directory contains the files and subdirectories for kernel variables
4390 related to filesystems.
4392 .IR /proc/sys/fs/aio\-max\-nr " and " /proc/sys/fs/aio\-nr " (since Linux 2.6.4)"
4393 .I aio\-nr
4394 is the running total of the number of events specified by
4395 .BR io_setup (2)
4396 calls for all currently active AIO contexts.
4398 .I aio\-nr
4399 reaches
4400 .IR aio\-max\-nr ,
4401 then
4402 .BR io_setup (2)
4403 will fail with the error
4404 .BR EAGAIN .
4405 Raising
4406 .I aio\-max\-nr
4407 does not result in the preallocation or resizing
4408 of any kernel data structures.
4410 .I /proc/sys/fs/binfmt_misc
4411 Documentation for files in this directory can be found
4412 in the Linux kernel source in the file
4413 .IR Documentation/admin\-guide/binfmt\-misc.rst
4414 (or in
4415 .IR Documentation/binfmt_misc.txt
4416 on older kernels).
4418 .IR /proc/sys/fs/dentry\-state " (since Linux 2.2)"
4419 This file contains information about the status of the
4420 directory cache (dcache).
4421 The file contains six numbers,
4422 .IR nr_dentry ", " nr_unused ", " age_limit " (age in seconds),"
4423 .I want_pages
4424 (pages requested by system) and two dummy values.
4426 .IP * 2
4427 .I nr_dentry
4428 is the number of allocated dentries (dcache entries).
4429 This field is unused in Linux 2.2.
4430 .IP *
4431 .I nr_unused
4432 is the number of unused dentries.
4433 .IP *
4434 .I age_limit
4435 .\" looks like this is unused in kernels 2.2 to 2.6
4436 is the age in seconds after which dcache entries
4437 can be reclaimed when memory is short.
4438 .IP *
4439 .I want_pages
4440 .\" looks like this is unused in kernels 2.2 to 2.6
4441 is nonzero when the kernel has called shrink_dcache_pages() and the
4442 dcache isn't pruned yet.
4445 .I /proc/sys/fs/dir\-notify\-enable
4446 This file can be used to disable or enable the
4447 .I dnotify
4448 interface described in
4449 .BR fcntl (2)
4450 on a system-wide basis.
4451 A value of 0 in this file disables the interface,
4452 and a value of 1 enables it.
4454 .I /proc/sys/fs/dquot\-max
4455 This file shows the maximum number of cached disk quota entries.
4456 On some (2.4) systems, it is not present.
4457 If the number of free cached disk quota entries is very low and
4458 you have some awesome number of simultaneous system users,
4459 you might want to raise the limit.
4461 .I /proc/sys/fs/dquot\-nr
4462 This file shows the number of allocated disk quota
4463 entries and the number of free disk quota entries.
4465 .IR /proc/sys/fs/epoll " (since Linux 2.6.28)"
4466 This directory contains the file
4467 .IR max_user_watches ,
4468 which can be used to limit the amount of kernel memory consumed by the
4469 .I epoll
4470 interface.
4471 For further details, see
4472 .BR epoll (7).
4474 .I /proc/sys/fs/file\-max
4475 This file defines
4476 a system-wide limit on the number of open files for all processes.
4477 System calls that fail when encountering this limit fail with the error
4478 .BR ENFILE .
4479 (See also
4480 .BR setrlimit (2),
4481 which can be used by a process to set the per-process limit,
4482 .BR RLIMIT_NOFILE ,
4483 on the number of files it may open.)
4484 If you get lots
4485 of error messages in the kernel log about running out of file handles
4486 (open file descriptions)
4487 (look for "VFS: file\-max limit <number> reached"),
4488 try increasing this value:
4490 .in +4n
4492 echo 100000 > /proc/sys/fs/file\-max
4496 Privileged processes
4497 .RB ( CAP_SYS_ADMIN )
4498 can override the
4499 .I file\-max
4500 limit.
4502 .I /proc/sys/fs/file\-nr
4503 This (read-only) file contains three numbers:
4504 the number of allocated file handles
4505 (i.e., the number of open file descriptions; see
4506 .BR open (2));
4507 the number of free file handles;
4508 and the maximum number of file handles (i.e., the same value as
4509 .IR /proc/sys/fs/file\-max ).
4510 If the number of allocated file handles is close to the
4511 maximum, you should consider increasing the maximum.
4512 Before Linux 2.6,
4513 the kernel allocated file handles dynamically,
4514 but it didn't free them again.
4515 Instead the free file handles were kept in a list for reallocation;
4516 the "free file handles" value indicates the size of that list.
4517 A large number of free file handles indicates that there was
4518 a past peak in the usage of open file handles.
4519 Since Linux 2.6, the kernel does deallocate freed file handles,
4520 and the "free file handles" value is always zero.
4522 .IR /proc/sys/fs/inode\-max " (only present until Linux 2.2)"
4523 This file contains the maximum number of in-memory inodes.
4524 This value should be 3\(en4 times larger
4525 than the value in
4526 .IR file\-max ,
4527 since \fIstdin\fP, \fIstdout\fP
4528 and network sockets also need an inode to handle them.
4529 When you regularly run out of inodes, you need to increase this value.
4531 Starting with Linux 2.4,
4532 there is no longer a static limit on the number of inodes,
4533 and this file is removed.
4535 .I /proc/sys/fs/inode\-nr
4536 This file contains the first two values from
4537 .IR inode\-state .
4539 .I /proc/sys/fs/inode\-state
4540 This file
4541 contains seven numbers:
4542 .IR nr_inodes ,
4543 .IR nr_free_inodes ,
4544 .IR preshrink ,
4545 and four dummy values (always zero).
4547 .I nr_inodes
4548 is the number of inodes the system has allocated.
4549 .\" This can be slightly more than
4550 .\" .I inode\-max
4551 .\" because Linux allocates them one page full at a time.
4552 .I nr_free_inodes
4553 represents the number of free inodes.
4555 .I preshrink
4556 is nonzero when the
4557 .I nr_inodes
4559 .I inode\-max
4560 and the system needs to prune the inode list instead of allocating more;
4561 since Linux 2.4, this field is a dummy value (always zero).
4563 .IR /proc/sys/fs/inotify " (since Linux 2.6.13)"
4564 This directory contains files
4565 .IR max_queued_events ", " max_user_instances ", and " max_user_watches ,
4566 that can be used to limit the amount of kernel memory consumed by the
4567 .I inotify
4568 interface.
4569 For further details, see
4570 .BR inotify (7).
4572 .I /proc/sys/fs/lease\-break\-time
4573 This file specifies the grace period that the kernel grants to a process
4574 holding a file lease
4575 .RB ( fcntl (2))
4576 after it has sent a signal to that process notifying it
4577 that another process is waiting to open the file.
4578 If the lease holder does not remove or downgrade the lease within
4579 this grace period, the kernel forcibly breaks the lease.
4581 .I /proc/sys/fs/leases\-enable
4582 This file can be used to enable or disable file leases
4583 .RB ( fcntl (2))
4584 on a system-wide basis.
4585 If this file contains the value 0, leases are disabled.
4586 A nonzero value enables leases.
4588 .IR /proc/sys/fs/mount\-max " (since Linux 4.9)"
4589 .\" commit d29216842a85c7970c536108e093963f02714498
4590 The value in this file specifies the maximum number of mounts that may exist
4591 in a mount namespace.
4592 The default value in this file is 100,000.
4594 .IR /proc/sys/fs/mqueue " (since Linux 2.6.6)"
4595 This directory contains files
4596 .IR msg_max ", " msgsize_max ", and " queues_max ,
4597 controlling the resources used by POSIX message queues.
4599 .BR mq_overview (7)
4600 for details.
4602 .IR /proc/sys/fs/nr_open " (since Linux 2.6.25)"
4603 .\" commit 9cfe015aa424b3c003baba3841a60dd9b5ad319b
4604 This file imposes a ceiling on the value to which the
4605 .BR RLIMIT_NOFILE
4606 resource limit can be raised (see
4607 .BR getrlimit (2)).
4608 This ceiling is enforced for both unprivileged and privileged process.
4609 The default value in this file is 1048576.
4610 (Before Linux 2.6.25, the ceiling for
4611 .BR RLIMIT_NOFILE
4612 was hard-coded to the same value.)
4614 .IR /proc/sys/fs/overflowgid " and " /proc/sys/fs/overflowuid
4615 These files
4616 allow you to change the value of the fixed UID and GID.
4617 The default is 65534.
4618 Some filesystems support only 16-bit UIDs and GIDs, although in Linux
4619 UIDs and GIDs are 32 bits.
4620 When one of these filesystems is mounted
4621 with writes enabled, any UID or GID that would exceed 65535 is translated
4622 to the overflow value before being written to disk.
4624 .IR /proc/sys/fs/pipe\-max\-size " (since Linux 2.6.35)"
4626 .BR pipe (7).
4628 .IR /proc/sys/fs/pipe\-user\-pages\-hard " (since Linux 4.5)"
4630 .BR pipe (7).
4632 .IR /proc/sys/fs/pipe\-user\-pages\-soft " (since Linux 4.5)"
4634 .BR pipe (7).
4636 .IR /proc/sys/fs/protected_fifos " (since Linux 4.19)"
4637 The value in this file is/can be set to one of the following:
4639 .TP 4
4641 Writing to FIFOs is unrestricted.
4644 Don't allow
4645 .B O_CREAT
4646 .BR open (2)
4647 on FIFOs that the caller doesn't own in world-writable sticky directories,
4648 unless the FIFO is owned by the owner of the directory.
4651 As for the value 1,
4652 but the restriction also applies to group-writable sticky directories.
4655 The intent of the above protections is to avoid unintentional writes to an
4656 attacker-controlled FIFO when a program expected to create a regular file.
4658 .IR /proc/sys/fs/protected_hardlinks " (since Linux 3.6)"
4659 .\" commit 800179c9b8a1e796e441674776d11cd4c05d61d7
4660 When the value in this file is 0,
4661 no restrictions are placed on the creation of hard links
4662 (i.e., this is the historical behavior before Linux 3.6).
4663 When the value in this file is 1,
4664 a hard link can be created to a target file
4665 only if one of the following conditions is true:
4667 .IP * 3
4668 The calling process has the
4669 .BR CAP_FOWNER
4670 capability in its user namespace
4671 and the file UID has a mapping in the namespace.
4672 .IP *
4673 The filesystem UID of the process creating the link matches
4674 the owner (UID) of the target file
4675 (as described in
4676 .BR credentials (7),
4677 a process's filesystem UID is normally the same as its effective UID).
4678 .IP *
4679 All of the following conditions are true:
4680 .RS 4
4681 .IP \(bu 3
4682 the target is a regular file;
4683 .IP \(bu
4684 the target file does not have its set-user-ID mode bit enabled;
4685 .IP \(bu
4686 the target file does not have both its set-group-ID and
4687 group-executable mode bits enabled; and
4688 .IP \(bu
4689 the caller has permission to read and write the target file
4690 (either via the file's permissions mask or because it has
4691 suitable capabilities).
4695 The default value in this file is 0.
4696 Setting the value to 1
4697 prevents a longstanding class of security issues caused by
4698 hard-link-based time-of-check, time-of-use races,
4699 most commonly seen in world-writable directories such as
4700 .IR /tmp .
4701 The common method of exploiting this flaw
4702 is to cross privilege boundaries when following a given hard link
4703 (i.e., a root process follows a hard link created by another user).
4704 Additionally, on systems without separated partitions,
4705 this stops unauthorized users from "pinning" vulnerable set-user-ID and
4706 set-group-ID files against being upgraded by
4707 the administrator, or linking to special files.
4709 .IR /proc/sys/fs/protected_regular " (since Linux 4.19)"
4710 The value in this file is/can be set to one of the following:
4712 .TP 4
4714 Writing to regular files is unrestricted.
4717 Don't allow
4718 .B O_CREAT
4719 .BR open (2)
4720 on regular files that the caller doesn't own in
4721 world-writable sticky directories,
4722 unless the regular file is owned by the owner of the directory.
4725 As for the value 1,
4726 but the restriction also applies to group-writable sticky directories.
4729 The intent of the above protections is similar to
4730 .IR protected_fifos ,
4731 but allows an application to
4732 avoid writes to an attacker-controlled regular file,
4733 where the application expected to create one.
4735 .IR /proc/sys/fs/protected_symlinks " (since Linux 3.6)"
4736 .\" commit 800179c9b8a1e796e441674776d11cd4c05d61d7
4737 When the value in this file is 0,
4738 no restrictions are placed on following symbolic links
4739 (i.e., this is the historical behavior before Linux 3.6).
4740 When the value in this file is 1, symbolic links are followed only
4741 in the following circumstances:
4743 .IP * 3
4744 the filesystem UID of the process following the link matches
4745 the owner (UID) of the symbolic link
4746 (as described in
4747 .BR credentials (7),
4748 a process's filesystem UID is normally the same as its effective UID);
4749 .IP *
4750 the link is not in a sticky world-writable directory; or
4751 .IP *
4752 the symbolic link and its parent directory have the same owner (UID)
4755 A system call that fails to follow a symbolic link
4756 because of the above restrictions returns the error
4757 .BR EACCES
4759 .IR errno .
4761 The default value in this file is 0.
4762 Setting the value to 1 avoids a longstanding class of security issues
4763 based on time-of-check, time-of-use races when accessing symbolic links.
4765 .IR /proc/sys/fs/suid_dumpable " (since Linux 2.6.13)"
4766 .\" The following is based on text from Documentation/sysctl/kernel.txt
4767 The value in this file is assigned to a process's "dumpable" flag
4768 in the circumstances described in
4769 .BR prctl (2).
4770 In effect,
4771 the value in this file determines whether core dump files are
4772 produced for set-user-ID or otherwise protected/tainted binaries.
4773 The "dumpable" setting also affects the ownership of files in a process's
4774 .IR /proc/[pid]
4775 directory, as described above.
4777 Three different integer values can be specified:
4780 \fI0\ (default)\fP
4781 .\" In kernel source: SUID_DUMP_DISABLE
4782 This provides the traditional (pre-Linux 2.6.13) behavior.
4783 A core dump will not be produced for a process which has
4784 changed credentials (by calling
4785 .BR seteuid (2),
4786 .BR setgid (2),
4787 or similar, or by executing a set-user-ID or set-group-ID program)
4788 or whose binary does not have read permission enabled.
4790 \fI1\ ("debug")\fP
4791 .\" In kernel source: SUID_DUMP_USER
4792 All processes dump core when possible.
4793 (Reasons why a process might nevertheless not dump core are described in
4794 .BR core (5).)
4795 The core dump is owned by the filesystem user ID of the dumping process
4796 and no security is applied.
4797 This is intended for system debugging situations only:
4798 this mode is insecure because it allows unprivileged users to
4799 examine the memory contents of privileged processes.
4801 \fI2\ ("suidsafe")\fP
4802 .\" In kernel source: SUID_DUMP_ROOT
4803 Any binary which normally would not be dumped (see "0" above)
4804 is dumped readable by root only.
4805 This allows the user to remove the core dump file but not to read it.
4806 For security reasons core dumps in this mode will not overwrite one
4807 another or other files.
4808 This mode is appropriate when administrators are
4809 attempting to debug problems in a normal environment.
4811 Additionally, since Linux 3.6,
4812 .\" 9520628e8ceb69fa9a4aee6b57f22675d9e1b709
4813 .I /proc/sys/kernel/core_pattern
4814 must either be an absolute pathname
4815 or a pipe command, as detailed in
4816 .BR core (5).
4817 Warnings will be written to the kernel log if
4818 .I core_pattern
4819 does not follow these rules, and no core dump will be produced.
4820 .\" 54b501992dd2a839e94e76aa392c392b55080ce8
4823 For details of the effect of a process's "dumpable" setting
4824 on ptrace access mode checking, see
4825 .BR ptrace (2).
4827 .I /proc/sys/fs/super\-max
4828 This file
4829 controls the maximum number of superblocks, and
4830 thus the maximum number of mounted filesystems the kernel
4831 can have.
4832 You need increase only
4833 .I super\-max
4834 if you need to mount more filesystems than the current value in
4835 .I super\-max
4836 allows you to.
4838 .I /proc/sys/fs/super\-nr
4839 This file
4840 contains the number of filesystems currently mounted.
4842 .I /proc/sys/kernel
4843 This directory contains files controlling a range of kernel parameters,
4844 as described below.
4846 .I /proc/sys/kernel/acct
4847 This file
4848 contains three numbers:
4849 .IR highwater ,
4850 .IR lowwater ,
4852 .IR frequency .
4853 If BSD-style process accounting is enabled, these values control
4854 its behavior.
4855 If free space on filesystem where the log lives goes below
4856 .I lowwater
4857 percent, accounting suspends.
4858 If free space gets above
4859 .I highwater
4860 percent, accounting resumes.
4861 .I frequency
4862 determines
4863 how often the kernel checks the amount of free space (value is in
4864 seconds).
4865 Default values are 4, 2, and 30.
4866 That is, suspend accounting if 2% or less space is free; resume it
4867 if 4% or more space is free; consider information about amount of free space
4868 valid for 30 seconds.
4870 .IR /proc/sys/kernel/auto_msgmni " (Linux 2.6.27 to 3.18)"
4871 .\" commit 9eefe520c814f6f62c5d36a2ddcd3fb99dfdb30e (introduces feature)
4872 .\" commit 0050ee059f7fc86b1df2527aaa14ed5dc72f9973 (rendered redundant)
4873 From Linux 2.6.27 to 3.18,
4874 this file was used to control recomputing of the value in
4875 .IR /proc/sys/kernel/msgmni
4876 upon the addition or removal of memory or upon IPC namespace creation/removal.
4877 Echoing "1" into this file enabled
4878 .I msgmni
4879 automatic recomputing (and triggered a recomputation of
4880 .I msgmni
4881 based on the current amount of available memory and number of IPC namespaces).
4882 Echoing "0" disabled automatic recomputing.
4883 (Automatic recomputing was also disabled if a value was explicitly assigned to
4884 .IR /proc/sys/kernel/msgmni .)
4885 The default value in
4886 .I auto_msgmni
4887 was 1.
4889 Since Linux 3.19, the content of this file has no effect (because
4890 .IR msgmni
4891 .\" FIXME Must document the 3.19 'msgmni' changes.
4892 defaults to near the maximum value possible),
4893 and reads from this file always return the value "0".
4895 .IR /proc/sys/kernel/cap_last_cap " (since Linux 3.2)"
4897 .BR capabilities (7).
4899 .IR /proc/sys/kernel/cap\-bound " (from Linux 2.2 to 2.6.24)"
4900 This file holds the value of the kernel
4901 .I "capability bounding set"
4902 (expressed as a signed decimal number).
4903 This set is ANDed against the capabilities permitted to a process
4904 during
4905 .BR execve (2).
4906 Starting with Linux 2.6.25,
4907 the system-wide capability bounding set disappeared,
4908 and was replaced by a per-thread bounding set; see
4909 .BR capabilities (7).
4911 .I /proc/sys/kernel/core_pattern
4913 .BR core (5).
4915 .I /proc/sys/kernel/core_pipe_limit
4917 .BR core (5).
4919 .I /proc/sys/kernel/core_uses_pid
4921 .BR core (5).
4923 .I /proc/sys/kernel/ctrl\-alt\-del
4924 This file
4925 controls the handling of Ctrl-Alt-Del from the keyboard.
4926 When the value in this file is 0, Ctrl-Alt-Del is trapped and
4927 sent to the
4928 .BR init (1)
4929 program to handle a graceful restart.
4930 When the value is greater than zero, Linux's reaction to a Vulcan
4931 Nerve Pinch (tm) will be an immediate reboot, without even
4932 syncing its dirty buffers.
4933 Note: when a program (like dosemu) has the keyboard in "raw"
4934 mode, the ctrl-alt-del is intercepted by the program before it
4935 ever reaches the kernel tty layer, and it's up to the program
4936 to decide what to do with it.
4938 .IR /proc/sys/kernel/dmesg_restrict " (since Linux 2.6.37)"
4939 The value in this file determines who can see kernel syslog contents.
4940 A value of 0 in this file imposes no restrictions.
4941 If the value is 1, only privileged users can read the kernel syslog.
4942 (See
4943 .BR syslog (2)
4944 for more details.)
4945 Since Linux 3.4,
4946 .\" commit 620f6e8e855d6d447688a5f67a4e176944a084e8
4947 only users with the
4948 .BR CAP_SYS_ADMIN
4949 capability may change the value in this file.
4951 .IR /proc/sys/kernel/domainname " and " /proc/sys/kernel/hostname
4952 can be used to set the NIS/YP domainname and the
4953 hostname of your box in exactly the same way as the commands
4954 .BR domainname (1)
4956 .BR hostname (1),
4957 that is:
4959 .in +4n
4961 .RB "#" " echo \(aqdarkstar\(aq > /proc/sys/kernel/hostname"
4962 .RB "#" " echo \(aqmydomain\(aq > /proc/sys/kernel/domainname"
4966 has the same effect as
4968 .in +4n
4970 .RB "#" " hostname \(aqdarkstar\(aq"
4971 .RB "#" " domainname \(aqmydomain\(aq"
4975 Note, however, that the classic darkstar.frop.org has the
4976 hostname "darkstar" and DNS (Internet Domain Name Server)
4977 domainname "frop.org", not to be confused with the NIS (Network
4978 Information Service) or YP (Yellow Pages) domainname.
4979 These two
4980 domain names are in general different.
4981 For a detailed discussion
4982 see the
4983 .BR hostname (1)
4984 man page.
4986 .I /proc/sys/kernel/hotplug
4987 This file
4988 contains the pathname for the hotplug policy agent.
4989 The default value in this file is
4990 .IR /sbin/hotplug .
4992 .\" Removed in commit 87f504e5c78b910b0c1d6ffb89bc95e492322c84 (tglx/history.git)
4993 .IR /proc/sys/kernel/htab\-reclaim " (before Linux 2.4.9.2)"
4994 (PowerPC only) If this file is set to a nonzero value,
4995 the PowerPC htab
4996 .\" removed in commit 1b483a6a7b2998e9c98ad985d7494b9b725bd228, before 2.6.28
4997 (see kernel file
4998 .IR Documentation/powerpc/ppc_htab.txt )
4999 is pruned
5000 each time the system hits the idle loop.
5002 .IR /proc/sys/kernel/keys/*
5003 This directory contains various files that define parameters and limits
5004 for the key-management facility.
5005 These files are described in
5006 .BR keyrings (7).
5008 .IR /proc/sys/kernel/kptr_restrict " (since Linux 2.6.38)"
5009 .\" 455cd5ab305c90ffc422dd2e0fb634730942b257
5010 The value in this file determines whether kernel addresses are exposed via
5011 .I /proc
5012 files and other interfaces.
5013 A value of 0 in this file imposes no restrictions.
5014 If the value is 1, kernel pointers printed using the
5015 .I %pK
5016 format specifier will be replaced with zeros unless the user has the
5017 .BR CAP_SYSLOG
5018 capability.
5019 If the value is 2, kernel pointers printed using the
5020 .I %pK
5021 format specifier will be replaced with zeros regardless
5022 of the user's capabilities.
5023 The initial default value for this file was 1,
5024 but the default was changed
5025 .\" commit 411f05f123cbd7f8aa1edcae86970755a6e2a9d9
5026 to 0 in Linux 2.6.39.
5027 Since Linux 3.4,
5028 .\" commit 620f6e8e855d6d447688a5f67a4e176944a084e8
5029 only users with the
5030 .BR CAP_SYS_ADMIN
5031 capability can change the value in this file.
5033 .I /proc/sys/kernel/l2cr
5034 (PowerPC only) This file
5035 contains a flag that controls the L2 cache of G3 processor
5036 boards.
5037 If 0, the cache is disabled.
5038 Enabled if nonzero.
5040 .I /proc/sys/kernel/modprobe
5041 This file contains the pathname for the kernel module loader.
5042 The default value is
5043 .IR /sbin/modprobe .
5044 The file is present only if the kernel is built with the
5045 .B CONFIG_MODULES
5046 .RB ( CONFIG_KMOD
5047 in Linux 2.6.26 and earlier)
5048 option enabled.
5049 It is described by the Linux kernel source file
5050 .I Documentation/kmod.txt
5051 (present only in kernel 2.4 and earlier).
5053 .IR /proc/sys/kernel/modules_disabled " (since Linux 2.6.31)"
5054 .\" 3d43321b7015387cfebbe26436d0e9d299162ea1
5055 .\" From Documentation/sysctl/kernel.txt
5056 A toggle value indicating if modules are allowed to be loaded
5057 in an otherwise modular kernel.
5058 This toggle defaults to off (0), but can be set true (1).
5059 Once true, modules can be neither loaded nor unloaded,
5060 and the toggle cannot be set back to false.
5061 The file is present only if the kernel is built with the
5062 .B CONFIG_MODULES
5063 option enabled.
5065 .IR /proc/sys/kernel/msgmax " (since Linux 2.2)"
5066 This file defines
5067 a system-wide limit specifying the maximum number of bytes in
5068 a single message written on a System V message queue.
5070 .IR /proc/sys/kernel/msgmni " (since Linux 2.4)"
5071 This file defines the system-wide limit on the number of
5072 message queue identifiers.
5073 See also
5074 .IR /proc/sys/kernel/auto_msgmni .
5076 .IR /proc/sys/kernel/msgmnb " (since Linux 2.2)"
5077 This file defines a system-wide parameter used to initialize the
5078 .I msg_qbytes
5079 setting for subsequently created message queues.
5081 .I msg_qbytes
5082 setting specifies the maximum number of bytes that may be written to the
5083 message queue.
5085 .IR /proc/sys/kernel/ngroups_max " (since Linux 2.6.4)"
5086 This is a read-only file that displays the upper limit on the
5087 number of a process's group memberships.
5089 .IR /proc/sys/kernel/ns_last_pid " (since Linux 3.3)"
5091 .BR pid_namespaces (7).
5093 .IR /proc/sys/kernel/ostype " and " /proc/sys/kernel/osrelease
5094 These files
5095 give substrings of
5096 .IR /proc/version .
5098 .IR /proc/sys/kernel/overflowgid " and " /proc/sys/kernel/overflowuid
5099 These files duplicate the files
5100 .I /proc/sys/fs/overflowgid
5102 .IR /proc/sys/fs/overflowuid .
5104 .I /proc/sys/kernel/panic
5105 This file gives read/write access to the kernel variable
5106 .IR panic_timeout .
5107 If this is zero, the kernel will loop on a panic; if nonzero,
5108 it indicates that the kernel should autoreboot after this number
5109 of seconds.
5110 When you use the
5111 software watchdog device driver, the recommended setting is 60.
5113 .IR /proc/sys/kernel/panic_on_oops " (since Linux 2.5.68)"
5114 This file controls the kernel's behavior when an oops
5115 or BUG is encountered.
5116 If this file contains 0, then the system
5117 tries to continue operation.
5118 If it contains 1, then the system
5119 delays a few seconds (to give klogd time to record the oops output)
5120 and then panics.
5121 If the
5122 .I /proc/sys/kernel/panic
5123 file is also nonzero, then the machine will be rebooted.
5125 .IR /proc/sys/kernel/pid_max " (since Linux 2.5.34)"
5126 This file specifies the value at which PIDs wrap around
5127 (i.e., the value in this file is one greater than the maximum PID).
5128 PIDs greater than this value are not allocated;
5129 thus, the value in this file also acts as a system-wide limit
5130 on the total number of processes and threads.
5131 The default value for this file, 32768,
5132 results in the same range of PIDs as on earlier kernels.
5133 On 32-bit platforms, 32768 is the maximum value for
5134 .IR pid_max .
5135 On 64-bit systems,
5136 .I pid_max
5137 can be set to any value up to 2^22
5138 .RB ( PID_MAX_LIMIT ,
5139 approximately 4 million).
5140 .\" Prior to 2.6.10, pid_max could also be raised above 32768 on 32-bit
5141 .\" platforms, but this broke /proc/[pid]
5142 .\" See http://marc.theaimsgroup.com/?l=linux-kernel&m=109513010926152&w=2
5144 .IR /proc/sys/kernel/powersave\-nap " (PowerPC only)"
5145 This file contains a flag.
5146 If set, Linux-PPC will use the "nap" mode of
5147 powersaving,
5148 otherwise the "doze" mode will be used.
5150 .I /proc/sys/kernel/printk
5152 .BR syslog (2).
5154 .IR /proc/sys/kernel/pty " (since Linux 2.6.4)"
5155 This directory contains two files relating to the number of UNIX 98
5156 pseudoterminals (see
5157 .BR pts (4))
5158 on the system.
5160 .I /proc/sys/kernel/pty/max
5161 This file defines the maximum number of pseudoterminals.
5162 .\" FIXME Document /proc/sys/kernel/pty/reserve
5163 .\"     New in Linux 3.3
5164 .\"     commit e9aba5158a80098447ff207a452a3418ae7ee386
5166 .I /proc/sys/kernel/pty/nr
5167 This read-only file
5168 indicates how many pseudoterminals are currently in use.
5170 .I /proc/sys/kernel/random
5171 This directory
5172 contains various parameters controlling the operation of the file
5173 .IR /dev/random .
5175 .BR random (4)
5176 for further information.
5178 .IR /proc/sys/kernel/random/uuid " (since Linux 2.4)"
5179 Each read from this read-only file returns a randomly generated 128-bit UUID,
5180 as a string in the standard UUID format.
5182 .IR /proc/sys/kernel/randomize_va_space " (since Linux 2.6.12)"
5183 .\" Some further details can be found in Documentation/sysctl/kernel.txt
5184 Select the address space layout randomization (ASLR) policy for the system
5185 (on architectures that support ASLR).
5186 Three values are supported for this file:
5188 .IP 0 3
5189 Turn ASLR off.
5190 This is the default for architectures that don't support ASLR,
5191 and when the kernel is booted with the
5192 .I norandmaps
5193 parameter.
5194 .IP 1
5195 Make the addresses of
5196 .BR mmap (2)
5197 allocations, the stack, and the VDSO page randomized.
5198 Among other things, this means that shared libraries will be
5199 loaded at randomized addresses.
5200 The text segment of PIE-linked binaries will also be loaded
5201 at a randomized address.
5202 This value is the default if the kernel was configured with
5203 .BR CONFIG_COMPAT_BRK .
5204 .IP 2
5205 (Since Linux 2.6.25)
5206 .\" commit c1d171a002942ea2d93b4fbd0c9583c56fce0772
5207 Also support heap randomization.
5208 This value is the default if the kernel was not configured with
5209 .BR CONFIG_COMPAT_BRK .
5212 .I /proc/sys/kernel/real\-root\-dev
5213 This file is documented in the Linux kernel source file
5214 .I Documentation/admin\-guide/initrd.rst
5215 .\" commit 9d85025b0418163fae079c9ba8f8445212de8568
5217 .I Documentation/initrd.txt
5218 before Linux 4.10).
5220 .IR /proc/sys/kernel/reboot\-cmd " (Sparc only)"
5221 This file seems to be a way to give an argument to the SPARC
5222 ROM/Flash boot loader.
5223 Maybe to tell it what to do after
5224 rebooting?
5226 .I /proc/sys/kernel/rtsig\-max
5227 (Only in kernels up to and including 2.6.7; see
5228 .BR setrlimit (2))
5229 This file can be used to tune the maximum number
5230 of POSIX real-time (queued) signals that can be outstanding
5231 in the system.
5233 .I /proc/sys/kernel/rtsig\-nr
5234 (Only in kernels up to and including 2.6.7.)
5235 This file shows the number of POSIX real-time signals currently queued.
5237 .IR /proc/[pid]/sched_autogroup_enabled " (since Linux 2.6.38)"
5238 .\" commit 5091faa449ee0b7d73bc296a93bca9540fc51d0a
5240 .BR sched (7).
5242 .IR /proc/sys/kernel/sched_child_runs_first " (since Linux 2.6.23)"
5243 If this file contains the value zero, then, after a
5244 .BR fork (2),
5245 the parent is first scheduled on the CPU.
5246 If the file contains a nonzero value,
5247 then the child is scheduled first on the CPU.
5248 (Of course, on a multiprocessor system,
5249 the parent and the child might both immediately be scheduled on a CPU.)
5251 .IR /proc/sys/kernel/sched_rr_timeslice_ms " (since Linux 3.9)"
5253 .BR sched_rr_get_interval (2).
5255 .IR /proc/sys/kernel/sched_rt_period_us " (since Linux 2.6.25)"
5257 .BR sched (7).
5259 .IR /proc/sys/kernel/sched_rt_runtime_us " (since Linux 2.6.25)"
5261 .BR sched (7).
5263 .IR /proc/sys/kernel/seccomp " (since Linux 4.14)"
5264 .\" commit 8e5f1ad116df6b0de65eac458d5e7c318d1c05af
5265 This directory provides additional seccomp information and
5266 configuration.
5268 .BR seccomp (2)
5269 for further details.
5271 .IR /proc/sys/kernel/sem " (since Linux 2.4)"
5272 This file contains 4 numbers defining limits for System V IPC semaphores.
5273 These fields are, in order:
5275 .IP SEMMSL 8
5276 The maximum semaphores per semaphore set.
5277 .IP SEMMNS 8
5278 A system-wide limit on the number of semaphores in all semaphore sets.
5279 .IP SEMOPM 8
5280 The maximum number of operations that may be specified in a
5281 .BR semop (2)
5282 call.
5283 .IP SEMMNI 8
5284 A system-wide limit on the maximum number of semaphore identifiers.
5287 .I /proc/sys/kernel/sg\-big\-buff
5288 This file
5289 shows the size of the generic SCSI device (sg) buffer.
5290 You can't tune it just yet, but you could change it at
5291 compile time by editing
5292 .I include/scsi/sg.h
5293 and changing
5294 the value of
5295 .BR SG_BIG_BUFF .
5296 However, there shouldn't be any reason to change this value.
5298 .IR /proc/sys/kernel/shm_rmid_forced " (since Linux 3.1)"
5299 .\" commit b34a6b1da371ed8af1221459a18c67970f7e3d53
5300 .\" See also Documentation/sysctl/kernel.txt
5301 If this file is set to 1, all System V shared memory segments will
5302 be marked for destruction as soon as the number of attached processes
5303 falls to zero;
5304 in other words, it is no longer possible to create shared memory segments
5305 that exist independently of any attached process.
5307 The effect is as though a
5308 .BR shmctl (2)
5309 .B IPC_RMID
5310 is performed on all existing segments as well as all segments
5311 created in the future (until this file is reset to 0).
5312 Note that existing segments that are attached to no process will be
5313 immediately destroyed when this file is set to 1.
5314 Setting this option will also destroy segments that were created,
5315 but never attached,
5316 upon termination of the process that created the segment with
5317 .BR shmget (2).
5319 Setting this file to 1 provides a way of ensuring that
5320 all System V shared memory segments are counted against the
5321 resource usage and resource limits (see the description of
5322 .B RLIMIT_AS
5324 .BR getrlimit (2))
5325 of at least one process.
5327 Because setting this file to 1 produces behavior that is nonstandard
5328 and could also break existing applications,
5329 the default value in this file is 0.
5330 Set this file to 1 only if you have a good understanding
5331 of the semantics of the applications using
5332 System V shared memory on your system.
5334 .IR /proc/sys/kernel/shmall " (since Linux 2.2)"
5335 This file
5336 contains the system-wide limit on the total number of pages of
5337 System V shared memory.
5339 .IR /proc/sys/kernel/shmmax " (since Linux 2.2)"
5340 This file
5341 can be used to query and set the run-time limit
5342 on the maximum (System V IPC) shared memory segment size that can be
5343 created.
5344 Shared memory segments up to 1 GB are now supported in the
5345 kernel.
5346 This value defaults to
5347 .BR SHMMAX .
5349 .IR /proc/sys/kernel/shmmni " (since Linux 2.4)"
5350 This file
5351 specifies the system-wide maximum number of System V shared memory
5352 segments that can be created.
5354 .IR /proc/sys/kernel/sysctl_writes_strict " (since Linux 3.16)"
5355 .\" commit f88083005ab319abba5d0b2e4e997558245493c8
5356 .\" commit 2ca9bb456ada8bcbdc8f77f8fc78207653bbaa92
5357 .\" commit f4aacea2f5d1a5f7e3154e967d70cf3f711bcd61
5358 .\" commit 24fe831c17ab8149413874f2fd4e5c8a41fcd294
5359 The value in this file determines how the file offset affects
5360 the behavior of updating entries in files under
5361 .IR /proc/sys .
5362 The file has three possible values:
5364 .TP 4
5366 This provides legacy handling, with no printk warnings.
5367 Each
5368 .BR write (2)
5369 must fully contain the value to be written,
5370 and multiple writes on the same file descriptor
5371 will overwrite the entire value, regardless of the file position.
5374 (default) This provides the same behavior as for \-1,
5375 but printk warnings are written for processes that
5376 perform writes when the file offset is not 0.
5379 Respect the file offset when writing strings into
5380 .I /proc/sys
5381 files.
5382 Multiple writes will
5383 .I append
5384 to the value buffer.
5385 Anything written beyond the maximum length
5386 of the value buffer will be ignored.
5387 Writes to numeric
5388 .I /proc/sys
5389 entries must always be at file offset 0 and the value must be
5390 fully contained in the buffer provided to
5391 .BR write (2).
5392 .\" FIXME .
5393 .\"     With /proc/sys/kernel/sysctl_writes_strict==1, writes at an
5394 .\"     offset other than 0 do not generate an error. Instead, the
5395 .\"     write() succeeds, but the file is left unmodified.
5396 .\"     This is surprising. The behavior may change in the future.
5397 .\"     See thread.gmane.org/gmane.linux.man/9197
5398 .\"             From: Michael Kerrisk (man-pages <mtk.manpages@...>
5399 .\"             Subject: sysctl_writes_strict documentation + an oddity?
5400 .\"             Newsgroups: gmane.linux.man, gmane.linux.kernel
5401 .\"             Date: 2015-05-09 08:54:11 GMT
5404 .I /proc/sys/kernel/sysrq
5405 This file controls the functions allowed to be invoked by the SysRq key.
5406 By default,
5407 the file contains 1 meaning that every possible SysRq request is allowed
5408 (in older kernel versions, SysRq was disabled by default,
5409 and you were required to specifically enable it at run-time,
5410 but this is not the case any more).
5411 Possible values in this file are:
5413 .TP 5
5415 Disable sysrq completely
5418 Enable all functions of sysrq
5420 > 1
5421 Bit mask of allowed sysrq functions, as follows:
5422 .PD 0
5424 .TP 5
5425 \ \ 2
5426 Enable control of console logging level
5428 \ \ 4
5429 Enable control of keyboard (SAK, unraw)
5431 \ \ 8
5432 Enable debugging dumps of processes etc.
5434 \ 16
5435 Enable sync command
5437 \ 32
5438 Enable remount read-only
5440 \ 64
5441 Enable signaling of processes (term, kill, oom-kill)
5444 Allow reboot/poweroff
5447 Allow nicing of all real-time tasks
5452 This file is present only if the
5453 .B CONFIG_MAGIC_SYSRQ
5454 kernel configuration option is enabled.
5455 For further details see the Linux kernel source file
5456 .I Documentation/admin\-guide/sysrq.rst
5457 .\" commit 9d85025b0418163fae079c9ba8f8445212de8568
5459 .I Documentation/sysrq.txt
5460 before Linux 4.10).
5462 .I /proc/sys/kernel/version
5463 This file contains a string such as:
5465     #5 Wed Feb 25 21:49:24 MET 1998
5467 The "#5" means that
5468 this is the fifth kernel built from this source base and the
5469 date following it indicates the time the kernel was built.
5471 .IR /proc/sys/kernel/threads\-max " (since Linux 2.3.11)"
5472 .\" The following is based on Documentation/sysctl/kernel.txt
5473 This file specifies the system-wide limit on the number of
5474 threads (tasks) that can be created on the system.
5476 Since Linux 4.1,
5477 .\" commit 230633d109e35b0a24277498e773edeb79b4a331
5478 the value that can be written to
5479 .I threads\-max
5480 is bounded.
5481 The minimum value that can be written is 20.
5482 The maximum value that can be written is given by the
5483 constant
5484 .B FUTEX_TID_MASK
5485 (0x3fffffff).
5486 If a value outside of this range is written to
5487 .IR threads\-max ,
5488 the error
5489 .B EINVAL
5490 occurs.
5492 The value written is checked against the available RAM pages.
5493 If the thread structures would occupy too much (more than 1/8th)
5494 of the available RAM pages,
5495 .I threads\-max
5496 is reduced accordingly.
5498 .IR /proc/sys/kernel/yama/ptrace_scope " (since Linux 3.5)"
5500 .BR ptrace (2).
5502 .IR /proc/sys/kernel/zero\-paged " (PowerPC only)"
5503 This file
5504 contains a flag.
5505 When enabled (nonzero), Linux-PPC will pre-zero pages in
5506 the idle loop, possibly speeding up get_free_pages.
5508 .I /proc/sys/net
5509 This directory contains networking stuff.
5510 Explanations for some of the files under this directory can be found in
5511 .BR tcp (7)
5513 .BR ip (7).
5515 .I /proc/sys/net/core/bpf_jit_enable
5517 .BR bpf (2).
5519 .I /proc/sys/net/core/somaxconn
5520 This file defines a ceiling value for the
5521 .I backlog
5522 argument of
5523 .BR listen (2);
5524 see the
5525 .BR listen (2)
5526 manual page for details.
5528 .I /proc/sys/proc
5529 This directory may be empty.
5531 .I /proc/sys/sunrpc
5532 This directory supports Sun remote procedure call for network filesystem
5533 (NFS).
5534 On some systems, it is not present.
5536 .IR /proc/sys/user " (since Linux 4.9)"
5538 .BR namespaces (7).
5540 .I /proc/sys/vm
5541 This directory contains files for memory management tuning, buffer, and
5542 cache management.
5544 .IR /proc/sys/vm/admin_reserve_kbytes " (since Linux 3.10)"
5545 .\" commit 4eeab4f5580d11bffedc697684b91b0bca0d5009
5546 This file defines the amount of free memory (in KiB) on the system that
5547 should be reserved for users with the capability
5548 .BR CAP_SYS_ADMIN .
5550 The default value in this file is the minimum of [3% of free pages, 8MiB]
5551 expressed as KiB.
5552 The default is intended to provide enough for the superuser
5553 to log in and kill a process, if necessary,
5554 under the default overcommit 'guess' mode (i.e., 0 in
5555 .IR /proc/sys/vm/overcommit_memory ).
5557 Systems running in "overcommit never" mode (i.e., 2 in
5558 .IR /proc/sys/vm/overcommit_memory )
5559 should increase the value in this file to account
5560 for the full virtual memory size of the programs used to recover (e.g.,
5561 .BR login (1)
5562 .BR ssh (1),
5564 .BR top (1))
5565 Otherwise, the superuser may not be able to log in to recover the system.
5566 For example, on x86-64 a suitable value is 131072 (128MiB reserved).
5568 Changing the value in this file takes effect whenever
5569 an application requests memory.
5571 .IR /proc/sys/vm/compact_memory " (since Linux 2.6.35)"
5572 When 1 is written to this file, all zones are compacted such that free
5573 memory is available in contiguous blocks where possible.
5574 The effect of this action can be seen by examining
5575 .IR /proc/buddyinfo .
5577 Present only if the kernel was configured with
5578 .BR CONFIG_COMPACTION .
5580 .IR /proc/sys/vm/drop_caches " (since Linux 2.6.16)"
5581 Writing to this file causes the kernel to drop clean caches, dentries, and
5582 inodes from memory, causing that memory to become free.
5583 This can be useful for memory management testing and
5584 performing reproducible filesystem benchmarks.
5585 Because writing to this file causes the benefits of caching to be lost,
5586 it can degrade overall system performance.
5588 To free pagecache, use:
5590     echo 1 > /proc/sys/vm/drop_caches
5592 To free dentries and inodes, use:
5594     echo 2 > /proc/sys/vm/drop_caches
5596 To free pagecache, dentries, and inodes, use:
5598     echo 3 > /proc/sys/vm/drop_caches
5600 Because writing to this file is a nondestructive operation and dirty objects
5601 are not freeable, the
5602 user should run
5603 .BR sync (1)
5604 first.
5606 .IR  /proc/sys/vm/sysctl_hugetlb_shm_group " (since Linux 2.6.7)"
5607 This writable file contains a group ID that is allowed
5608 to allocate memory using huge pages.
5609 If a process has a filesystem group ID or any supplementary group ID that
5610 matches this group ID,
5611 then it can make huge-page allocations without holding the
5612 .BR CAP_IPC_LOCK
5613 capability; see
5614 .BR memfd_create (2),
5615 .BR mmap (2),
5617 .BR shmget (2).
5619 .IR /proc/sys/vm/legacy_va_layout " (since Linux 2.6.9)"
5620 .\" The following is from Documentation/filesystems/proc.txt
5621 If nonzero, this disables the new 32-bit memory-mapping layout;
5622 the kernel will use the legacy (2.4) layout for all processes.
5624 .IR /proc/sys/vm/memory_failure_early_kill " (since Linux 2.6.32)"
5625 .\" The following is based on the text in Documentation/sysctl/vm.txt
5626 Control how to kill processes when an uncorrected memory error
5627 (typically a 2-bit error in a memory module)
5628 that cannot be handled by the kernel
5629 is detected in the background by hardware.
5630 In some cases (like the page still having a valid copy on disk),
5631 the kernel will handle the failure
5632 transparently without affecting any applications.
5633 But if there is no other up-to-date copy of the data,
5634 it will kill processes to prevent any data corruptions from propagating.
5636 The file has one of the following values:
5638 .IP 1: 4
5639 Kill all processes that have the corrupted-and-not-reloadable page mapped
5640 as soon as the corruption is detected.
5641 Note that this is not supported for a few types of pages,
5642 such as kernel internally
5643 allocated data or the swap cache, but works for the majority of user pages.
5644 .IP 0: 4
5645 Unmap the corrupted page from all processes and kill a process
5646 only if it tries to access the page.
5649 The kill is performed using a
5650 .B SIGBUS
5651 signal with
5652 .I si_code
5653 set to
5654 .BR BUS_MCEERR_AO .
5655 Processes can handle this if they want to; see
5656 .BR sigaction (2)
5657 for more details.
5659 This feature is active only on architectures/platforms with advanced machine
5660 check handling and depends on the hardware capabilities.
5662 Applications can override the
5663 .I memory_failure_early_kill
5664 setting individually with the
5665 .BR prctl (2)
5666 .B PR_MCE_KILL
5667 operation.
5669 Present only if the kernel was configured with
5670 .BR CONFIG_MEMORY_FAILURE .
5672 .IR /proc/sys/vm/memory_failure_recovery " (since Linux 2.6.32)"
5673 .\" The following is based on the text in Documentation/sysctl/vm.txt
5674 Enable memory failure recovery (when supported by the platform).
5676 .IP 1: 4
5677 Attempt recovery.
5678 .IP 0: 4
5679 Always panic on a memory failure.
5682 Present only if the kernel was configured with
5683 .BR CONFIG_MEMORY_FAILURE .
5685 .IR /proc/sys/vm/oom_dump_tasks " (since Linux 2.6.25)"
5686 .\" The following is from Documentation/sysctl/vm.txt
5687 Enables a system-wide task dump (excluding kernel threads) to be
5688 produced when the kernel performs an OOM-killing.
5689 The dump includes the following information
5690 for each task (thread, process):
5691 thread ID, real user ID, thread group ID (process ID),
5692 virtual memory size, resident set size,
5693 the CPU that the task is scheduled on,
5694 oom_adj score (see the description of
5695 .IR /proc/[pid]/oom_adj ),
5696 and command name.
5697 This is helpful to determine why the OOM-killer was invoked
5698 and to identify the rogue task that caused it.
5700 If this contains the value zero, this information is suppressed.
5701 On very large systems with thousands of tasks,
5702 it may not be feasible to dump the memory state information for each one.
5703 Such systems should not be forced to incur a performance penalty in
5704 OOM situations when the information may not be desired.
5706 If this is set to nonzero, this information is shown whenever the
5707 OOM-killer actually kills a memory-hogging task.
5709 The default value is 0.
5711 .IR /proc/sys/vm/oom_kill_allocating_task " (since Linux 2.6.24)"
5712 .\" The following is from Documentation/sysctl/vm.txt
5713 This enables or disables killing the OOM-triggering task in
5714 out-of-memory situations.
5716 If this is set to zero, the OOM-killer will scan through the entire
5717 tasklist and select a task based on heuristics to kill.
5718 This normally selects a rogue memory-hogging task that
5719 frees up a large amount of memory when killed.
5721 If this is set to nonzero, the OOM-killer simply kills the task that
5722 triggered the out-of-memory condition.
5723 This avoids a possibly expensive tasklist scan.
5726 .I /proc/sys/vm/panic_on_oom
5727 is nonzero, it takes precedence over whatever value is used in
5728 .IR /proc/sys/vm/oom_kill_allocating_task .
5730 The default value is 0.
5732 .IR /proc/sys/vm/overcommit_kbytes " (since Linux 3.14)"
5733 .\" commit 49f0ce5f92321cdcf741e35f385669a421013cb7
5734 This writable file provides an alternative to
5735 .IR /proc/sys/vm/overcommit_ratio
5736 for controlling the
5737 .I CommitLimit
5738 when
5739 .IR /proc/sys/vm/overcommit_memory
5740 has the value 2.
5741 It allows the amount of memory overcommitting to be specified as
5742 an absolute value (in kB),
5743 rather than as a percentage, as is done with
5744 .IR overcommit_ratio .
5745 This allows for finer-grained control of
5746 .IR CommitLimit
5747 on systems with extremely large memory sizes.
5749 Only one of
5750 .IR overcommit_kbytes
5752 .IR overcommit_ratio
5753 can have an effect:
5755 .IR overcommit_kbytes
5756 has a nonzero value, then it is used to calculate
5757 .IR CommitLimit ,
5758 otherwise
5759 .IR overcommit_ratio
5760 is used.
5761 Writing a value to either of these files causes the
5762 value in the other file to be set to zero.
5764 .I /proc/sys/vm/overcommit_memory
5765 This file contains the kernel virtual memory accounting mode.
5766 Values are:
5769 0: heuristic overcommit (this is the default)
5771 1: always overcommit, never check
5773 2: always check, never overcommit
5776 In mode 0, calls of
5777 .BR mmap (2)
5778 with
5779 .B MAP_NORESERVE
5780 are not checked, and the default check is very weak,
5781 leading to the risk of getting a process "OOM-killed".
5783 In mode 1, the kernel pretends there is always enough memory,
5784 until memory actually runs out.
5785 One use case for this mode is scientific computing applications
5786 that employ large sparse arrays.
5787 In Linux kernel versions before 2.6.0, any nonzero value implies mode 1.
5789 In mode 2 (available since Linux 2.6), the total virtual address space
5790 that can be allocated
5791 .RI ( CommitLimit
5793 .IR /proc/meminfo )
5794 is calculated as
5796     CommitLimit = (total_RAM \- total_huge_TLB) *
5797                   overcommit_ratio / 100 + total_swap
5799 where:
5800 .RS 12
5801 .IP * 3
5802 .I total_RAM
5803 is the total amount of RAM on the system;
5804 .IP *
5805 .I total_huge_TLB
5806 is the amount of memory set aside for huge pages;
5807 .IP *
5808 .I overcommit_ratio
5809 is the value in
5810 .IR /proc/sys/vm/overcommit_ratio ;
5812 .IP *
5813 .I total_swap
5814 is the amount of swap space.
5817 For example, on a system with 16 GB of physical RAM, 16 GB
5818 of swap, no space dedicated to huge pages, and an
5819 .I overcommit_ratio
5820 of 50, this formula yields a
5821 .I CommitLimit
5822 of 24 GB.
5824 Since Linux 3.14, if the value in
5825 .I /proc/sys/vm/overcommit_kbytes
5826 is nonzero, then
5827 .I CommitLimit
5828 is instead calculated as:
5830     CommitLimit = overcommit_kbytes + total_swap
5832 See also the description of
5833 .IR /proc/sys/vm/admin_reserve_kbytes
5835 .IR /proc/sys/vm/user_reserve_kbytes .
5837 .IR /proc/sys/vm/overcommit_ratio " (since Linux 2.6.0)"
5838 This writable file defines a percentage by which memory
5839 can be overcommitted.
5840 The default value in the file is 50.
5841 See the description of
5842 .IR /proc/sys/vm/overcommit_memory .
5844 .IR /proc/sys/vm/panic_on_oom " (since Linux 2.6.18)"
5845 .\" The following is adapted from Documentation/sysctl/vm.txt
5846 This enables or disables a kernel panic in
5847 an out-of-memory situation.
5849 If this file is set to the value 0,
5850 the kernel's OOM-killer will kill some rogue process.
5851 Usually, the OOM-killer is able to kill a rogue process and the
5852 system will survive.
5854 If this file is set to the value 1,
5855 then the kernel normally panics when out-of-memory happens.
5856 However, if a process limits allocations to certain nodes
5857 using memory policies
5858 .RB ( mbind (2)
5859 .BR MPOL_BIND )
5860 or cpusets
5861 .RB ( cpuset (7))
5862 and those nodes reach memory exhaustion status,
5863 one process may be killed by the OOM-killer.
5864 No panic occurs in this case:
5865 because other nodes' memory may be free,
5866 this means the system as a whole may not have reached
5867 an out-of-memory situation yet.
5869 If this file is set to the value 2,
5870 the kernel always panics when an out-of-memory condition occurs.
5872 The default value is 0.
5873 1 and 2 are for failover of clustering.
5874 Select either according to your policy of failover.
5876 .IR /proc/sys/vm/swappiness
5877 .\" The following is from Documentation/sysctl/vm.txt
5878 The value in this file controls how aggressively the kernel will swap
5879 memory pages.
5880 Higher values increase aggressiveness, lower values
5881 decrease aggressiveness.
5882 The default value is 60.
5884 .IR /proc/sys/vm/user_reserve_kbytes " (since Linux 3.10)"
5885 .\" commit c9b1d0981fcce3d9976d7b7a56e4e0503bc610dd
5886 Specifies an amount of memory (in KiB) to reserve for user processes.
5887 This is intended to prevent a user from starting a single memory hogging
5888 process, such that they cannot recover (kill the hog).
5889 The value in this file has an effect only when
5890 .IR /proc/sys/vm/overcommit_memory
5891 is set to 2 ("overcommit never" mode).
5892 In this case, the system reserves an amount of memory that is the minimum
5893 of [3% of current process size,
5894 .IR user_reserve_kbytes ].
5896 The default value in this file is the minimum of [3% of free pages, 128MiB]
5897 expressed as KiB.
5899 If the value in this file is set to zero,
5900 then a user will be allowed to allocate all free memory with a single process
5901 (minus the amount reserved by
5902 .IR /proc/sys/vm/admin_reserve_kbytes ).
5903 Any subsequent attempts to execute a command will result in
5904 "fork: Cannot allocate memory".
5906 Changing the value in this file takes effect whenever
5907 an application requests memory.
5909 .IR /proc/sys/vm/unprivileged_userfaultfd " (since Linux 5.2)"
5910 .\" cefdca0a86be517bc390fc4541e3674b8e7803b0
5911 This (writable) file exposes a flag that controls whether
5912 unprivileged processes are allowed to employ
5913 .BR userfaultfd (2).
5914 If this file has the value 1, then unprivileged processes may use
5915 .BR userfaultfd (2).
5916 If this file has the value 0, then only processes that have the
5917 .B CAP_SYS_PTRACE
5918 capability may employ
5919 .BR userfaultfd (2).
5920 The default value in this file is 1.
5922 .IR /proc/sysrq\-trigger " (since Linux 2.4.21)"
5923 Writing a character to this file triggers the same SysRq function as
5924 typing ALT-SysRq-<character> (see the description of
5925 .IR /proc/sys/kernel/sysrq ).
5926 This file is normally writable only by
5927 .IR root .
5928 For further details see the Linux kernel source file
5929 .I Documentation/admin\-guide/sysrq.rst
5930 .\" commit 9d85025b0418163fae079c9ba8f8445212de8568
5932 .I Documentation/sysrq.txt
5933 before Linux 4.10).
5935 .I /proc/sysvipc
5936 Subdirectory containing the pseudo-files
5937 .IR msg ", " sem " and " shm "."
5938 These files list the System V Interprocess Communication (IPC) objects
5939 (respectively: message queues, semaphores, and shared memory)
5940 that currently exist on the system,
5941 providing similar information to that available via
5942 .BR ipcs (1).
5943 These files have headers and are formatted (one IPC object per line)
5944 for easy understanding.
5945 .BR sysvipc (7)
5946 provides further background on the information shown by these files.
5948 .IR /proc/thread\-self " (since Linux 3.17)"
5949 .\" commit 0097875bd41528922fb3bb5f348c53f17e00e2fd
5950 This directory refers to the thread accessing the
5951 .I /proc
5952 filesystem,
5953 and is identical to the
5954 .I /proc/self/task/[tid]
5955 directory named by the process thread ID
5956 .RI ( [tid] )
5957 of the same thread.
5959 .IR /proc/timer_list " (since Linux 2.6.21)"
5960 .\" commit 289f480af87e45f7a6de6ba9b4c061c2e259fe98
5961 This read-only file exposes a list of all currently pending
5962 (high-resolution) timers,
5963 all clock-event sources, and their parameters in a human-readable form.
5965 .IR /proc/timer_stats " (from  Linux 2.6.21 until Linux 4.10)"
5966 .\" commit 82f67cd9fca8c8762c15ba7ed0d5747588c1e221
5967 .\"     Date:   Fri Feb 16 01:28:13 2007 -0800
5968 .\" Text largely derived from Documentation/timers/timer_stats.txt
5969 .\" removed in commit dfb4357da6ddbdf57d583ba64361c9d792b0e0b1
5970 .\"     Date:   Wed Feb 8 11:26:59 2017 -0800
5971 This is a debugging facility to make timer (ab)use in a Linux
5972 system visible to kernel and user-space developers.
5973 It can be used by kernel and user-space developers to verify that
5974 their code does not make undue use of timers.
5975 The goal is to avoid unnecessary wakeups,
5976 thereby optimizing power consumption.
5978 If enabled in the kernel
5979 .RB ( CONFIG_TIMER_STATS ),
5980 but not used,
5981 it has almost zero run-time overhead and a relatively small
5982 data-structure overhead.
5983 Even if collection is enabled at run time, overhead is low:
5984 all the locking is per-CPU and lookup is hashed.
5987 .I /proc/timer_stats
5988 file is used both to control sampling facility and to read out the
5989 sampled information.
5992 .I timer_stats
5993 functionality is inactive on bootup.
5994 A sampling period can be started using the following command:
5996 .in +4n
5998 # echo 1 > /proc/timer_stats
6002 The following command stops a sampling period:
6004 .in +4n
6006 # echo 0 > /proc/timer_stats
6010 The statistics can be retrieved by:
6012 .in +4n
6014 $ cat /proc/timer_stats
6018 While sampling is enabled, each readout from
6019 .I /proc/timer_stats
6020 will see
6021 newly updated statistics.
6022 Once sampling is disabled, the sampled information
6023 is kept until a new sample period is started.
6024 This allows multiple readouts.
6026 Sample output from
6027 .IR /proc/timer_stats :
6029 .in +4n
6031 .RB $ " cat /proc/timer_stats"
6032 Timer Stats Version: v0.3
6033 Sample period: 1.764 s
6034 Collection: active
6035   255,     0 swapper/3        hrtimer_start_range_ns (tick_sched_timer)
6036    71,     0 swapper/1        hrtimer_start_range_ns (tick_sched_timer)
6037    58,     0 swapper/0        hrtimer_start_range_ns (tick_sched_timer)
6038     4,  1694 gnome\-shell      mod_delayed_work_on (delayed_work_timer_fn)
6039    17,     7 rcu_sched        rcu_gp_kthread (process_timeout)
6040 \&...
6041     1,  4911 kworker/u16:0    mod_delayed_work_on (delayed_work_timer_fn)
6042    1D,  2522 kworker/0:0      queue_delayed_work_on (delayed_work_timer_fn)
6043 1029 total events, 583.333 events/sec
6047 The output columns are:
6049 .IP * 3
6050 a count of the number of events,
6051 optionally (since Linux 2.6.23) followed by the letter \(aqD\(aq
6052 .\" commit c5c061b8f9726bc2c25e19dec227933a13d1e6b7 deferrable timers
6053 if this is a deferrable timer;
6054 .IP *
6055 the PID of the process that initialized the timer;
6056 .IP *
6057 the name of the process that initialized the timer;
6058 .IP *
6059 the function where the timer was initialized; and
6060 .IP *
6061 (in parentheses)
6062 the callback function that is associated with the timer.
6065 During the Linux 4.11 development cycle,
6066 this file  was removed because of security concerns,
6067 as it exposes information across namespaces.
6068 Furthermore, it is possible to obtain
6069 the same information via in-kernel tracing facilities such as ftrace.
6071 .I /proc/tty
6072 Subdirectory containing the pseudo-files and subdirectories for
6073 tty drivers and line disciplines.
6075 .I /proc/uptime
6076 This file contains two numbers (values in seconds): the uptime of the
6077 system (including time spent in suspend) and the amount of time spent
6078 in the idle process.
6080 .I /proc/version
6081 This string identifies the kernel version that is currently running.
6082 It includes the contents of
6083 .IR /proc/sys/kernel/ostype ,
6084 .IR /proc/sys/kernel/osrelease ,
6086 .IR /proc/sys/kernel/version .
6087 For example:
6089 .in +4n
6091 Linux version 1.0.9 (quinlan@phaze) #1 Sat May 14 01:51:54 EDT 1994
6094 .\" FIXME 2.6.13 seems to have /proc/vmcore implemented; document this
6095 .\"     See Documentation/kdump/kdump.txt
6096 .\"     commit 666bfddbe8b8fd4fd44617d6c55193d5ac7edb29
6097 .\"     Needs CONFIG_VMCORE
6100 .IR /proc/vmstat " (since Linux 2.6.0)"
6101 This file displays various virtual memory statistics.
6102 Each line of this file contains a single name-value pair,
6103 delimited by white space.
6104 Some lines are present only if the kernel was configured with
6105 suitable options.
6106 (In some cases, the options required for particular files have changed
6107 across kernel versions, so they are not listed here.
6108 Details can be found by consulting the kernel source code.)
6109 The following fields may be present:
6110 .\" FIXME We need explanations for each of the following fields...
6113 .IR nr_free_pages " (since Linux 2.6.31)"
6114 .\" commit d23ad42324cc4378132e51f2fc5c9ba6cbe75182
6116 .IR nr_alloc_batch " (since Linux 3.12)"
6117 .\" commit 81c0a2bb515fd4daae8cab64352877480792b515
6119 .IR nr_inactive_anon " (since Linux 2.6.28)"
6120 .\" commit 4f98a2fee8acdb4ac84545df98cccecfd130f8db
6122 .IR nr_active_anon " (since Linux 2.6.28)"
6123 .\" commit 4f98a2fee8acdb4ac84545df98cccecfd130f8db
6125 .IR nr_inactive_file " (since Linux 2.6.28)"
6126 .\" commit 4f98a2fee8acdb4ac84545df98cccecfd130f8db
6128 .IR nr_active_file " (since Linux 2.6.28)"
6129 .\" commit 4f98a2fee8acdb4ac84545df98cccecfd130f8db
6131 .IR nr_unevictable " (since Linux 2.6.28)"
6132 .\" commit 7b854121eb3e5ba0241882ff939e2c485228c9c5
6134 .IR nr_mlock " (since Linux 2.6.28)"
6135 .\" commit 5344b7e648980cc2ca613ec03a56a8222ff48820
6137 .IR nr_anon_pages " (since Linux 2.6.18)"
6138 .\" commit f3dbd34460ff54962d3e3244b6bcb7f5295356e6
6140 .IR nr_mapped " (since Linux 2.6.0)"
6142 .IR nr_file_pages " (since Linux 2.6.18)"
6143 .\" commit 347ce434d57da80fd5809c0c836f206a50999c26
6145 .IR nr_dirty " (since Linux 2.6.0)"
6147 .IR nr_writeback " (since Linux 2.6.0)"
6149 .IR nr_slab_reclaimable " (since Linux 2.6.19)"
6150 .\" commit 972d1a7b140569084439a81265a0f15b74e924e0
6151 .\" Linux 2.6.0 had nr_slab
6153 .IR nr_slab_unreclaimable " (since Linux 2.6.19)"
6154 .\" commit 972d1a7b140569084439a81265a0f15b74e924e0
6156 .IR nr_page_table_pages " (since Linux 2.6.0)"
6158 .IR nr_kernel_stack " (since Linux 2.6.32)"
6159 .\" commit c6a7f5728a1db45d30df55a01adc130b4ab0327c
6160 Amount of memory allocated to kernel stacks.
6162 .IR nr_unstable " (since Linux 2.6.0)"
6164 .IR nr_bounce " (since Linux 2.6.12)"
6165 .\" commit edfbe2b0038723e5699ab22695ccd62b5542a5c1
6167 .IR nr_vmscan_write " (since Linux 2.6.19)"
6168 .\" commit e129b5c23c2b471d47f1c5d2b8b193fc2034af43
6170 .IR nr_vmscan_immediate_reclaim " (since Linux 3.2)"
6171 .\" commit 49ea7eb65e7c5060807fb9312b1ad4c3eab82e2c
6173 .IR nr_writeback_temp " (since Linux 2.6.26)"
6174 .\" commit fc3ba692a4d19019387c5acaea63131f9eab05dd
6176 .IR nr_isolated_anon " (since Linux 2.6.32)"
6177 .\" commit a731286de62294b63d8ceb3c5914ac52cc17e690
6179 .IR nr_isolated_file " (since Linux 2.6.32)"
6180 .\" commit a731286de62294b63d8ceb3c5914ac52cc17e690
6182 .IR nr_shmem " (since Linux 2.6.32)"
6183 .\" commit 4b02108ac1b3354a22b0d83c684797692efdc395
6184 Pages used by shmem and
6185 .BR tmpfs (5).
6187 .IR nr_dirtied " (since Linux 2.6.37)"
6188 .\" commit ea941f0e2a8c02ae876cd73deb4e1557248f258c
6190 .IR nr_written " (since Linux 2.6.37)"
6191 .\" commit ea941f0e2a8c02ae876cd73deb4e1557248f258c
6193 .IR nr_pages_scanned " (since Linux 3.17)"
6194 .\" commit 0d5d823ab4e608ec7b52ac4410de4cb74bbe0edd
6196 .IR numa_hit " (since Linux 2.6.18)"
6197 .\" commit ca889e6c45e0b112cb2ca9d35afc66297519b5d5
6198 .\" Present only if the kernel was configured with
6199 .\" .BR CONFIG_NUMA .
6201 .IR numa_miss " (since Linux 2.6.18)"
6202 .\" commit ca889e6c45e0b112cb2ca9d35afc66297519b5d5
6203 .\" Present only if the kernel was configured with
6204 .\" .BR CONFIG_NUMA .
6206 .IR numa_foreign " (since Linux 2.6.18)"
6207 .\" commit ca889e6c45e0b112cb2ca9d35afc66297519b5d5
6208 .\" Present only if the kernel was configured with
6209 .\" .BR CONFIG_NUMA .
6211 .IR numa_interleave " (since Linux 2.6.18)"
6212 .\" commit ca889e6c45e0b112cb2ca9d35afc66297519b5d5
6213 .\" Present only if the kernel was configured with
6214 .\" .BR CONFIG_NUMA .
6216 .IR numa_local " (since Linux 2.6.18)"
6217 .\" commit ca889e6c45e0b112cb2ca9d35afc66297519b5d5
6218 .\" Present only if the kernel was configured with
6219 .\" .BR CONFIG_NUMA .
6221 .IR numa_other " (since Linux 2.6.18)"
6222 .\" commit ca889e6c45e0b112cb2ca9d35afc66297519b5d5
6223 .\" Present only if the kernel was configured with
6224 .\" .BR CONFIG_NUMA .
6226 .IR workingset_refault " (since Linux 3.15)"
6227 .\" commit a528910e12ec7ee203095eb1711468a66b9b60b0
6228 .\" Present only if the kernel was configured with
6229 .\" .BR CONFIG_VM_EVENT_COUNTERS .
6231 .IR workingset_activate " (since Linux 3.15)"
6232 .\" commit a528910e12ec7ee203095eb1711468a66b9b60b0
6233 .\" Present only if the kernel was configured with
6234 .\" .BR CONFIG_VM_EVENT_COUNTERS .
6236 .IR workingset_nodereclaim " (since Linux 3.15)"
6237 .\" commit 449dd6984d0e47643c04c807f609dd56d48d5bcc
6238 .\" Present only if the kernel was configured with
6239 .\" .BR CONFIG_VM_EVENT_COUNTERS .
6241 .IR nr_anon_transparent_hugepages " (since Linux 2.6.38)"
6242 .\" Present only if the kernel was configured with
6243 .\" .BR CONFIG_VM_EVENT_COUNTERS .
6245 .IR nr_free_cma " (since Linux 3.7)"
6246 .\" commit d1ce749a0db12202b711d1aba1d29e823034648d
6247 Number of free CMA (Contiguous Memory Allocator) pages.
6248 .\" Present only if the kernel was configured with
6249 .\" .BR CONFIG_VM_EVENT_COUNTERS .
6251 .IR nr_dirty_threshold " (since Linux 2.6.37)"
6252 .\" commit 79da826aee6a10902ef411bc65864bd02102fa83
6253 .\" Present only if the kernel was configured with
6254 .\" .BR CONFIG_VM_EVENT_COUNTERS .
6256 .IR nr_dirty_background_threshold " (since Linux 2.6.37)"
6257 .\" commit 79da826aee6a10902ef411bc65864bd02102fa83
6258 .\" Present only if the kernel was configured with
6259 .\" .BR CONFIG_VM_EVENT_COUNTERS .
6261 .IR pgpgin " (since Linux 2.6.0)"
6262 .\" Present only if the kernel was configured with
6263 .\" .BR CONFIG_VM_EVENT_COUNTERS .
6265 .IR pgpgout " (since Linux 2.6.0)"
6266 .\" Present only if the kernel was configured with
6267 .\" .BR CONFIG_VM_EVENT_COUNTERS .
6269 .IR pswpin " (since Linux 2.6.0)"
6270 .\" Present only if the kernel was configured with
6271 .\" .BR CONFIG_VM_EVENT_COUNTERS .
6273 .IR pswpout " (since Linux 2.6.0)"
6274 .\" Present only if the kernel was configured with
6275 .\" .BR CONFIG_VM_EVENT_COUNTERS .
6277 .IR pgalloc_dma " (since Linux 2.6.5)"
6278 .\" Linux 2.6.0 had pgalloc
6279 .\" Present only if the kernel was configured with
6280 .\" .BR CONFIG_VM_EVENT_COUNTERS .
6282 .IR pgalloc_dma32 " (since Linux 2.6.16)"
6283 .\" commit 9328b8faae922e52073785ed6c1eaa8565648a0e
6284 .\" Present only if the kernel was configured with
6285 .\" .BR CONFIG_VM_EVENT_COUNTERS .
6287 .IR pgalloc_normal " (since Linux 2.6.5)"
6288 .\" Present only if the kernel was configured with
6289 .\" .BR CONFIG_VM_EVENT_COUNTERS .
6291 .IR pgalloc_high " (since Linux 2.6.5)"
6292 .\" Present only if the kernel was configured with
6293 .\" .BR CONFIG_VM_EVENT_COUNTERS
6294 .\" and
6295 .\" .BR CONFIG_HIGHMEM .
6297 .IR pgalloc_movable " (since Linux 2.6.23)"
6298 .\" commit 2a1e274acf0b1c192face19a4be7c12d4503eaaf
6299 .\" Present only if the kernel was configured with
6300 .\" .BR CONFIG_VM_EVENT_COUNTERS .
6302 .IR pgfree " (since Linux 2.6.0)"
6303 .\" Present only if the kernel was configured with
6304 .\" .BR CONFIG_VM_EVENT_COUNTERS .
6306 .IR pgactivate " (since Linux 2.6.0)"
6307 .\" Present only if the kernel was configured with
6308 .\" .BR CONFIG_VM_EVENT_COUNTERS .
6310 .IR pgdeactivate " (since Linux 2.6.0)"
6311 .\" Present only if the kernel was configured with
6312 .\" .BR CONFIG_VM_EVENT_COUNTERS .
6314 .IR pgfault " (since Linux 2.6.0)"
6315 .\" Present only if the kernel was configured with
6316 .\" .BR CONFIG_VM_EVENT_COUNTERS .
6318 .IR pgmajfault " (since Linux 2.6.0)"
6319 .\" Present only if the kernel was configured with
6320 .\" .BR CONFIG_VM_EVENT_COUNTERS .
6322 .IR pgrefill_dma " (since Linux 2.6.5)"
6323 .\" Linux 2.6.0 had pgrefill
6324 .\" Present only if the kernel was configured with
6325 .\" .BR CONFIG_VM_EVENT_COUNTERS .
6327 .IR pgrefill_dma32 " (since Linux 2.6.16)"
6328 .\" commit 9328b8faae922e52073785ed6c1eaa8565648a0e
6329 .\" Present only if the kernel was configured with
6330 .\" .BR CONFIG_VM_EVENT_COUNTERS .
6332 .IR pgrefill_normal " (since Linux 2.6.5)"
6333 .\" Present only if the kernel was configured with
6334 .\" .BR CONFIG_VM_EVENT_COUNTERS .
6336 .IR pgrefill_high " (since Linux 2.6.5)"
6337 .\" Present only if the kernel was configured with
6338 .\" .BR CONFIG_VM_EVENT_COUNTERS
6339 .\" and
6340 .\" .BR CONFIG_HIGHMEM .
6342 .IR pgrefill_movable " (since Linux 2.6.23)"
6343 .\" commit 2a1e274acf0b1c192face19a4be7c12d4503eaaf
6344 .\" Present only if the kernel was configured with
6345 .\" .BR CONFIG_VM_EVENT_COUNTERS .
6346 .\" Formerly there were
6347 .\"     pgsteal_high
6348 .\"     pgsteal_normal
6349 .\"     pgsteal_dma32
6350 .\"     pgsteal_dma
6351 .\" These were split out into pgsteal_kswapd* and pgsteal_direct*
6352 .\" in commit 904249aa68010c8e223263c922fcbb840a3f42e4
6354 .IR pgsteal_kswapd_dma " (since Linux 3.4)"
6355 .\" commit 904249aa68010c8e223263c922fcbb840a3f42e4
6356 .\" Linux 2.6.0 had pgsteal
6357 .\" Present only if the kernel was configured with
6358 .\" .\" .BR CONFIG_VM_EVENT_COUNTERS .
6360 .IR pgsteal_kswapd_dma32 " (since Linux 3.4)"
6361 .\" commit 904249aa68010c8e223263c922fcbb840a3f42e4
6362 .\" commit 9328b8faae922e52073785ed6c1eaa8565648a0e
6363 .\" Present only if the kernel was configured with
6364 .\" .BR CONFIG_VM_EVENT_COUNTERS .
6366 .IR pgsteal_kswapd_normal " (since Linux 3.4)"
6367 .\" commit 904249aa68010c8e223263c922fcbb840a3f42e4
6368 .\" Present only if the kernel was configured with
6369 .\" .BR CONFIG_VM_EVENT_COUNTERS .
6371 .IR pgsteal_kswapd_high " (since Linux 3.4)"
6372 .\" commit 904249aa68010c8e223263c922fcbb840a3f42e4
6373 .\" Present only if the kernel was configured with
6374 .\" .BR CONFIG_VM_EVENT_COUNTERS
6375 .\" and
6376 .\" .BR CONFIG_HIGHMEM .
6378 .IR pgsteal_kswapd_movable " (since Linux 3.4)"
6379 .\" commit 904249aa68010c8e223263c922fcbb840a3f42e4
6380 .\" Present only if the kernel was configured with
6381 .\" .BR CONFIG_VM_EVENT_COUNTERS .
6383 .IR pgsteal_direct_dma
6384 .\" Present only if the kernel was configured with
6385 .\" .BR CONFIG_VM_EVENT_COUNTERS .
6387 .IR pgsteal_direct_dma32 " (since Linux 3.4)"
6388 .\" commit 904249aa68010c8e223263c922fcbb840a3f42e4
6389 .\" Present only if the kernel was configured with
6390 .\" .BR CONFIG_VM_EVENT_COUNTERS .
6392 .IR pgsteal_direct_normal " (since Linux 3.4)"
6393 .\" commit 904249aa68010c8e223263c922fcbb840a3f42e4
6394 .\" Present only if the kernel was configured with
6395 .\" .BR CONFIG_VM_EVENT_COUNTERS .
6397 .IR pgsteal_direct_high " (since Linux 3.4)"
6398 .\" commit 904249aa68010c8e223263c922fcbb840a3f42e4
6399 .\" Present only if the kernel was configured with
6400 .\" .BR CONFIG_VM_EVENT_COUNTERS
6401 .\" and
6402 .\" .BR CONFIG_HIGHMEM .
6404 .IR pgsteal_direct_movable " (since Linux 2.6.23)"
6405 .\" commit 2a1e274acf0b1c192face19a4be7c12d4503eaaf
6406 .\" Present only if the kernel was configured with
6407 .\" .BR CONFIG_VM_EVENT_COUNTERS .
6409 .IR pgscan_kswapd_dma
6410 .\" Linux 2.6.0 had pgscan
6411 .\" Present only if the kernel was configured with
6412 .\" .BR CONFIG_VM_EVENT_COUNTERS .
6414 .IR pgscan_kswapd_dma32 " (since Linux 2.6.16)"
6415 .\" commit 9328b8faae922e52073785ed6c1eaa8565648a0e
6416 .\" Present only if the kernel was configured with
6417 .\" .BR CONFIG_VM_EVENT_COUNTERS .
6419 .IR pgscan_kswapd_normal " (since Linux 2.6.5)"
6420 .\" Present only if the kernel was configured with
6421 .\" .BR CONFIG_VM_EVENT_COUNTERS .
6423 .IR pgscan_kswapd_high
6424 .\" Present only if the kernel was configured with
6425 .\" .BR CONFIG_VM_EVENT_COUNTERS
6426 .\" and
6427 .\" .BR CONFIG_HIGHMEM .
6429 .IR pgscan_kswapd_movable " (since Linux 2.6.23)"
6430 .\" commit 2a1e274acf0b1c192face19a4be7c12d4503eaaf
6431 .\" Present only if the kernel was configured with
6432 .\" .BR CONFIG_VM_EVENT_COUNTERS .
6434 .IR pgscan_direct_dma
6435 .\" Present only if the kernel was configured with
6436 .\" .BR CONFIG_VM_EVENT_COUNTERS .
6438 .IR pgscan_direct_dma32 " (since Linux 2.6.16)"
6439 .\" commit 9328b8faae922e52073785ed6c1eaa8565648a0e
6440 .\" Present only if the kernel was configured with
6441 .\" .BR CONFIG_VM_EVENT_COUNTERS .
6443 .IR pgscan_direct_normal
6444 .\" Present only if the kernel was configured with
6445 .\" .BR CONFIG_VM_EVENT_COUNTERS .
6447 .IR pgscan_direct_high
6448 .\" Present only if the kernel was configured with
6449 .\" .BR CONFIG_VM_EVENT_COUNTERS
6450 .\" and
6451 .\" .BR CONFIG_HIGHMEM .
6453 .IR pgscan_direct_movable " (since Linux 2.6.23)"
6454 .\" commit 2a1e274acf0b1c192face19a4be7c12d4503eaaf
6455 .\" Present only if the kernel was configured with
6456 .\" .BR CONFIG_VM_EVENT_COUNTERS .
6458 .IR pgscan_direct_throttle " (since Linux 3.6)"
6459 .\" commit 68243e76ee343d63c6cf76978588a885951e2818
6460 .\" Present only if the kernel was configured with
6461 .\" .BR CONFIG_VM_EVENT_COUNTERS .
6463 .IR zone_reclaim_failed " (since linux 2.6.31)"
6464 .\" commit 24cf72518c79cdcda486ed26074ff8151291cf65
6465 .\" Present only if the kernel was configured with
6466 .\" .BR CONFIG_VM_EVENT_COUNTERS
6467 .\" and
6468 .\" .BR CONFIG_NUMA .
6470 .IR pginodesteal " (since linux 2.6.0)"
6471 .\" Present only if the kernel was configured with
6472 .\" .BR CONFIG_VM_EVENT_COUNTERS .
6474 .IR slabs_scanned " (since linux 2.6.5)"
6475 .\" Present only if the kernel was configured with
6476 .\" .BR CONFIG_VM_EVENT_COUNTERS .
6478 .IR kswapd_inodesteal " (since linux 2.6.0)"
6479 .\" Present only if the kernel was configured with
6480 .\" .BR CONFIG_VM_EVENT_COUNTERS .
6482 .IR kswapd_low_wmark_hit_quickly " (since 2.6.33)"
6483 .\" commit bb3ab596832b920c703d1aea1ce76d69c0f71fb7
6484 .\" Present only if the kernel was configured with
6485 .\" .BR CONFIG_VM_EVENT_COUNTERS .
6487 .IR kswapd_high_wmark_hit_quickly " (since 2.6.33)"
6488 .\" commit bb3ab596832b920c703d1aea1ce76d69c0f71fb7
6489 .\" Present only if the kernel was configured with
6490 .\" .BR CONFIG_VM_EVENT_COUNTERS .
6492 .IR pageoutrun " (since Linux 2.6.0)"
6493 .\" Present only if the kernel was configured with
6494 .\" .BR CONFIG_VM_EVENT_COUNTERS .
6496 .IR allocstall " (since Linux 2.6.0)"
6497 .\" Present only if the kernel was configured with
6498 .\" .BR CONFIG_VM_EVENT_COUNTERS .
6500 .IR pgrotated " (since Linux 2.6.0)"
6501 .\" Present only if the kernel was configured with
6502 .\" .BR CONFIG_VM_EVENT_COUNTERS .
6504 .IR drop_pagecache " (since Linux 3.15)"
6505 .\" commit 5509a5d27b971a90b940e148ca9ca53312e4fa7a
6506 .\" Present only if the kernel was configured with
6507 .\" .BR CONFIG_VM_EVENT_COUNTERS .
6509 .IR drop_slab " (since Linux 3.15)"
6510 .\" commit 5509a5d27b971a90b940e148ca9ca53312e4fa7a
6511 .\" Present only if the kernel was configured with
6512 .\" .BR CONFIG_VM_EVENT_COUNTERS .
6514 .IR numa_pte_updates " (since Linux 3.8)"
6515 .\" commit 03c5a6e16322c997bf8f264851bfa3f532ad515f
6516 .\" Present only if the kernel was configured with
6517 .\" .BR CONFIG_VM_EVENT_COUNTERS
6518 .\" and
6519 .\" .BR CONFIG_NUMA_BALANCING .
6521 .IR numa_huge_pte_updates " (since Linux 3.13)"
6522 .\" commit 72403b4a0fbdf433c1fe0127e49864658f6f6468
6523 .\" Present only if the kernel was configured with
6524 .\" .BR CONFIG_VM_EVENT_COUNTERS
6525 .\" and
6526 .\" .BR CONFIG_NUMA_BALANCING .
6528 .IR numa_hint_faults " (since Linux 3.8)"
6529 .\" commit 03c5a6e16322c997bf8f264851bfa3f532ad515f
6530 .\" Present only if the kernel was configured with
6531 .\" .BR CONFIG_VM_EVENT_COUNTERS
6532 .\" and
6533 .\" .BR CONFIG_NUMA_BALANCING .
6535 .IR numa_hint_faults_local " (since Linux 3.8)"
6536 .\" commit 03c5a6e16322c997bf8f264851bfa3f532ad515f
6537 .\" Present only if the kernel was configured with
6538 .\" .BR CONFIG_VM_EVENT_COUNTERS
6539 .\" and
6540 .\" .BR CONFIG_NUMA_BALANCING .
6542 .IR numa_pages_migrated " (since Linux 3.8)"
6543 .\" commit 03c5a6e16322c997bf8f264851bfa3f532ad515f
6544 .\" Present only if the kernel was configured with
6545 .\" .BR CONFIG_VM_EVENT_COUNTERS
6546 .\" and
6547 .\" .BR CONFIG_NUMA_BALANCING
6548 .\" and
6549 .\" .BR CONFIG_NUMA_BALANCING .
6551 .IR pgmigrate_success " (since Linux 3.8)"
6552 .\" commit 5647bc293ab15f66a7b1cda850c5e9d162a6c7c2
6553 .\" Present only if the kernel was configured with
6554 .\" .BR CONFIG_VM_EVENT_COUNTERS
6555 .\" and
6556 .\" .BR CONFIG_MIGRATION .
6558 .IR pgmigrate_fail " (since Linux 3.8)"
6559 .\" commit 5647bc293ab15f66a7b1cda850c5e9d162a6c7c2
6560 .\" Present only if the kernel was configured with
6561 .\" .BR CONFIG_VM_EVENT_COUNTERS
6562 .\" and
6563 .\" .BR CONFIG_MIGRATION .
6565 .IR compact_migrate_scanned " (since Linux 3.8)"
6566 .\" commit 397487db696cae0b026a474a5cd66f4e372995e6
6567 .\" Linux 3.8 dropped compact_blocks_moved, compact_pages_moved, and
6568 .\"           compact_pagemigrate_failed
6569 .\" Present only if the kernel was configured with
6570 .\" .BR CONFIG_VM_EVENT_COUNTERS
6571 .\" and
6572 .\" .BR CONFIG_COMPACTION .
6574 .IR compact_free_scanned " (since Linux 3.8)"
6575 .\" commit 397487db696cae0b026a474a5cd66f4e372995e6
6576 .\" Present only if the kernel was configured with
6577 .\" .BR CONFIG_VM_EVENT_COUNTERS
6578 .\" and
6579 .\" .BR CONFIG_COMPACTION .
6581 .IR compact_isolated " (since Linux 3.8)"
6582 .\" commit 397487db696cae0b026a474a5cd66f4e372995e6
6583 .\" Present only if the kernel was configured with
6584 .\" .BR CONFIG_VM_EVENT_COUNTERS
6585 .\" and
6586 .\" .BR CONFIG_COMPACTION .
6588 .IR compact_stall " (since Linux 2.6.35)"
6589 .\" commit 56de7263fcf3eb10c8dcdf8d59a9cec831795f3f
6590 See the kernel source file
6591 .IR Documentation/admin\-guide/mm/transhuge.rst .
6592 .\" Present only if the kernel was configured with
6593 .\" .BR CONFIG_VM_EVENT_COUNTERS
6594 .\" and
6595 .\" .BR CONFIG_COMPACTION .
6597 .IR compact_fail " (since Linux 2.6.35)"
6598 .\" commit 56de7263fcf3eb10c8dcdf8d59a9cec831795f3f
6599 See the kernel source file
6600 .IR Documentation/admin\-guide/mm/transhuge.rst .
6601 .\" Present only if the kernel was configured with
6602 .\" .BR CONFIG_VM_EVENT_COUNTERS
6603 .\" and
6604 .\" .BR CONFIG_COMPACTION .
6606 .IR compact_success " (since Linux 2.6.35)"
6607 .\" commit 56de7263fcf3eb10c8dcdf8d59a9cec831795f3f
6608 See the kernel source file
6609 .IR Documentation/admin\-guide/mm/transhuge.rst .
6610 .\" Present only if the kernel was configured with
6611 .\" .BR CONFIG_VM_EVENT_COUNTERS
6612 .\" and
6613 .\" .BR CONFIG_COMPACTION .
6615 .IR htlb_buddy_alloc_success " (since Linux 2.6.26)"
6616 .\" commit 3b1163006332302117b1b2acf226d4014ff46525
6617 .\" Present only if the kernel was configured with
6618 .\" .BR CONFIG_VM_EVENT_COUNTERS
6619 .\" and
6620 .\" .BR CONFIG_HUGETLB_PAGE .
6622 .IR htlb_buddy_alloc_fail " (since Linux 2.6.26)"
6623 .\" commit 3b1163006332302117b1b2acf226d4014ff46525
6624 .\" Present only if the kernel was configured with
6625 .\" .BR CONFIG_VM_EVENT_COUNTERS
6626 .\" and
6627 .\" .BR CONFIG_HUGETLB_PAGE .
6629 .IR unevictable_pgs_culled " (since Linux 2.6.28)"
6630 .\" commit bbfd28eee9fbd73e780b19beb3dc562befbb94fa
6631 .\" Present only if the kernel was configured with
6632 .\" .BR CONFIG_VM_EVENT_COUNTERS .
6634 .IR unevictable_pgs_scanned " (since Linux 2.6.28)"
6635 .\" commit bbfd28eee9fbd73e780b19beb3dc562befbb94fa
6636 .\" Present only if the kernel was configured with
6637 .\" .BR CONFIG_VM_EVENT_COUNTERS .
6639 .IR unevictable_pgs_rescued " (since Linux 2.6.28)"
6640 .\" commit bbfd28eee9fbd73e780b19beb3dc562befbb94fa
6641 .\" Present only if the kernel was configured with
6642 .\" .BR CONFIG_VM_EVENT_COUNTERS .
6644 .IR unevictable_pgs_mlocked " (since Linux 2.6.28)"
6645 .\" commit 5344b7e648980cc2ca613ec03a56a8222ff48820
6646 .\" Present only if the kernel was configured with
6647 .\" .BR CONFIG_VM_EVENT_COUNTERS .
6649 .IR unevictable_pgs_munlocked " (since Linux 2.6.28)"
6650 .\" commit 5344b7e648980cc2ca613ec03a56a8222ff48820
6651 .\" Present only if the kernel was configured with
6652 .\" .BR CONFIG_VM_EVENT_COUNTERS .
6654 .IR unevictable_pgs_cleared " (since Linux 2.6.28)"
6655 .\" commit 5344b7e648980cc2ca613ec03a56a8222ff48820
6656 .\" Present only if the kernel was configured with
6657 .\" .BR CONFIG_VM_EVENT_COUNTERS .
6659 .IR unevictable_pgs_stranded " (since Linux 2.6.28)"
6660 .\" commit 5344b7e648980cc2ca613ec03a56a8222ff48820
6661 .\" Present only if the kernel was configured with
6662 .\" .BR CONFIG_VM_EVENT_COUNTERS .
6663 .\" Linux 3.7 removed unevictable_pgs_mlockfreed
6665 .IR thp_fault_alloc " (since Linux 2.6.39)"
6666 .\" commit 81ab4201fb7d91d6b0cd9ad5b4b16776e4bed145
6667 See the kernel source file
6668 .IR Documentation/admin\-guide/mm/transhuge.rst .
6669 .\" Present only if the kernel was configured with
6670 .\" .BR CONFIG_VM_EVENT_COUNTERS
6671 .\" and
6672 .\" .BR CONFIG_TRANSPARENT_HUGEPAGE .
6674 .IR thp_fault_fallback " (since Linux 2.6.39)"
6675 .\" commit 81ab4201fb7d91d6b0cd9ad5b4b16776e4bed145
6676 See the kernel source file
6677 .IR Documentation/admin\-guide/mm/transhuge.rst .
6678 .\" Present only if the kernel was configured with
6679 .\" .BR CONFIG_VM_EVENT_COUNTERS
6680 .\" and
6681 .\" .BR CONFIG_TRANSPARENT_HUGEPAGE .
6683 .IR thp_collapse_alloc " (since Linux 2.6.39)"
6684 .\" commit 81ab4201fb7d91d6b0cd9ad5b4b16776e4bed145
6685 See the kernel source file
6686 .IR Documentation/admin\-guide/mm/transhuge.rst .
6687 .\" Present only if the kernel was configured with
6688 .\" .BR CONFIG_VM_EVENT_COUNTERS
6689 .\" and
6690 .\" .BR CONFIG_TRANSPARENT_HUGEPAGE .
6692 .IR thp_collapse_alloc_failed " (since Linux 2.6.39)"
6693 .\" commit 81ab4201fb7d91d6b0cd9ad5b4b16776e4bed145
6694 See the kernel source file
6695 .IR Documentation/admin\-guide/mm/transhuge.rst .
6696 .\" Present only if the kernel was configured with
6697 .\" .BR CONFIG_VM_EVENT_COUNTERS
6698 .\" and
6699 .\" .BR CONFIG_TRANSPARENT_HUGEPAGE .
6701 .IR thp_split " (since Linux 2.6.39)"
6702 .\" commit 81ab4201fb7d91d6b0cd9ad5b4b16776e4bed145
6703 See the kernel source file
6704 .IR Documentation/admin\-guide/mm/transhuge.rst .
6705 .\" Present only if the kernel was configured with
6706 .\" .BR CONFIG_VM_EVENT_COUNTERS
6707 .\" and
6708 .\" .BR CONFIG_TRANSPARENT_HUGEPAGE .
6710 .IR thp_zero_page_alloc " (since Linux 3.8)"
6711 .\" commit d8a8e1f0da3d29d7268b3300c96a059d63901b76
6712 See the kernel source file
6713 .IR Documentation/admin\-guide/mm/transhuge.rst .
6714 .\" Present only if the kernel was configured with
6715 .\" .BR CONFIG_VM_EVENT_COUNTERS
6716 .\" and
6717 .\" .BR CONFIG_TRANSPARENT_HUGEPAGE .
6719 .IR thp_zero_page_alloc_failed " (since Linux 3.8)"
6720 .\" commit d8a8e1f0da3d29d7268b3300c96a059d63901b76
6721 See the kernel source file
6722 .IR Documentation/admin\-guide/mm/transhuge.rst .
6723 .\" Present only if the kernel was configured with
6724 .\" .BR CONFIG_VM_EVENT_COUNTERS
6725 .\" and
6726 .\" .BR CONFIG_TRANSPARENT_HUGEPAGE .
6728 .IR balloon_inflate " (since Linux 3.18)"
6729 .\" commit 09316c09dde33aae14f34489d9e3d243ec0d5938
6730 .\" Present only if the kernel was configured with
6731 .\" .BR CONFIG_VM_EVENT_COUNTERS
6732 .\" and
6733 .\" .BR CONFIG_MEMORY_BALLOON .
6735 .IR balloon_deflate " (since Linux 3.18)"
6736 .\" commit 09316c09dde33aae14f34489d9e3d243ec0d5938
6737 .\" Present only if the kernel was configured with
6738 .\" .BR CONFIG_VM_EVENT_COUNTERS
6739 .\" and
6740 .\" .BR CONFIG_MEMORY_BALLOON .
6742 .IR balloon_migrate " (since Linux 3.18)"
6743 .\" commit 09316c09dde33aae14f34489d9e3d243ec0d5938
6744 .\" Present only if the kernel was configured with
6745 .\" .BR CONFIG_VM_EVENT_COUNTERS ,
6746 .\" .BR CONFIG_MEMORY_BALLOON ,
6747 .\" and
6748 .\" .BR CONFIG_BALLOON_COMPACTION .
6750 .IR nr_tlb_remote_flush " (since Linux 3.12)"
6751 .\" commit 9824cf9753ecbe8f5b47aa9b2f218207defea211
6752 .\" Present only if the kernel was configured with
6753 .\" .BR CONFIG_DEBUG_TLBFLUSH
6754 .\" and
6755 .\" .BR CONFIG_SMP .
6757 .IR nr_tlb_remote_flush_received " (since Linux 3.12)"
6758 .\" commit 9824cf9753ecbe8f5b47aa9b2f218207defea211
6759 .\" Present only if the kernel was configured with
6760 .\" .BR CONFIG_DEBUG_TLBFLUSH
6761 .\" and
6762 .\" .BR CONFIG_SMP .
6764 .IR nr_tlb_local_flush_all " (since Linux 3.12)"
6765 .\" commit 9824cf9753ecbe8f5b47aa9b2f218207defea211
6766 .\" Present only if the kernel was configured with
6767 .\" .BR CONFIG_DEBUG_TLBFLUSH .
6769 .IR nr_tlb_local_flush_one " (since Linux 3.12)"
6770 .\" commit 9824cf9753ecbe8f5b47aa9b2f218207defea211
6771 .\" Present only if the kernel was configured with
6772 .\" .BR CONFIG_DEBUG_TLBFLUSH .
6774 .IR vmacache_find_calls " (since Linux 3.16)"
6775 .\" commit 4f115147ff802267d0aa41e361c5aa5bd933d896
6776 .\" Present only if the kernel was configured with
6777 .\" .BR CONFIG_DEBUG_VM_VMACACHE .
6779 .IR vmacache_find_hits " (since Linux 3.16)"
6780 .\" commit 4f115147ff802267d0aa41e361c5aa5bd933d896
6781 .\" Present only if the kernel was configured with
6782 .\" .BR CONFIG_DEBUG_VM_VMACACHE .
6784 .IR vmacache_full_flushes " (since Linux 3.19)"
6785 .\" commit f5f302e21257ebb0c074bbafc37606c26d28cc3d
6786 .\" Present only if the kernel was configured with
6787 .\" .BR CONFIG_DEBUG_VM_VMACACHE .
6790 .IR /proc/zoneinfo " (since Linux 2.6.13)"
6791 This file displays information about memory zones.
6792 This is useful for analyzing virtual memory behavior.
6793 .\" FIXME more should be said about /proc/zoneinfo
6794 .SH NOTES
6795 Many files contain strings (e.g., the environment and command line)
6796 that are in the internal format,
6797 with subfields terminated by null bytes (\(aq\e0\(aq).
6798 When inspecting such files, you may find that the results are more readable
6799 if you use a command of the following form to display them:
6801 .in +4n
6803 .RB "$" " cat \fIfile\fP | tr \(aq\e000\(aq \(aq\en\(aq"
6807 This manual page is incomplete, possibly inaccurate, and is the kind
6808 of thing that needs to be updated very often.
6809 .\" .SH ACKNOWLEDGEMENTS
6810 .\" The material on /proc/sys/fs and /proc/sys/kernel is closely based on
6811 .\" kernel source documentation files written by Rik van Riel.
6812 .SH SEE ALSO
6813 .BR cat (1),
6814 .BR dmesg (1),
6815 .BR find (1),
6816 .BR free (1),
6817 .BR htop (1),
6818 .BR init (1),
6819 .BR ps (1),
6820 .BR pstree (1),
6821 .BR tr (1),
6822 .BR uptime (1),
6823 .BR chroot (2),
6824 .BR mmap (2),
6825 .BR readlink (2),
6826 .BR syslog (2),
6827 .BR slabinfo (5),
6828 .BR sysfs (5),
6829 .BR hier (7),
6830 .BR namespaces (7),
6831 .BR time (7),
6832 .BR arp (8),
6833 .BR hdparm (8),
6834 .BR ifconfig (8),
6835 .BR lsmod (8),
6836 .BR lspci (8),
6837 .BR mount (8),
6838 .BR netstat (8),
6839 .BR procinfo (8),
6840 .BR route (8),
6841 .BR sysctl (8)
6843 The Linux kernel source files:
6844 .IR Documentation/filesystems/proc.txt ,
6845 .IR Documentation/sysctl/fs.txt ,
6846 .IR Documentation/sysctl/kernel.txt ,
6847 .IR Documentation/sysctl/net.txt ,
6849 .IR Documentation/sysctl/vm.txt .