aboutsummaryrefslogtreecommitdiffstats
path: root/Documentation/filesystems/proc.txt
diff options
context:
space:
mode:
Diffstat (limited to 'Documentation/filesystems/proc.txt')
-rw-r--r--Documentation/filesystems/proc.txt36
1 files changed, 33 insertions, 3 deletions
diff --git a/Documentation/filesystems/proc.txt b/Documentation/filesystems/proc.txt
index bcceb99b81dd..71df353e367c 100644
--- a/Documentation/filesystems/proc.txt
+++ b/Documentation/filesystems/proc.txt
@@ -44,6 +44,7 @@ Table of Contents
44 2.14 /proc/<pid>/io - Display the IO accounting fields 44 2.14 /proc/<pid>/io - Display the IO accounting fields
45 2.15 /proc/<pid>/coredump_filter - Core dump filtering settings 45 2.15 /proc/<pid>/coredump_filter - Core dump filtering settings
46 2.16 /proc/<pid>/mountinfo - Information about mounts 46 2.16 /proc/<pid>/mountinfo - Information about mounts
47 2.17 /proc/sys/fs/epoll - Configuration options for the epoll interface
47 48
48------------------------------------------------------------------------------ 49------------------------------------------------------------------------------
49Preface 50Preface
@@ -1338,10 +1339,13 @@ nmi_watchdog
1338 1339
1339Enables/Disables the NMI watchdog on x86 systems. When the value is non-zero 1340Enables/Disables the NMI watchdog on x86 systems. When the value is non-zero
1340the NMI watchdog is enabled and will continuously test all online cpus to 1341the NMI watchdog is enabled and will continuously test all online cpus to
1341determine whether or not they are still functioning properly. 1342determine whether or not they are still functioning properly. Currently,
1343passing "nmi_watchdog=" parameter at boot time is required for this function
1344to work.
1342 1345
1343Because the NMI watchdog shares registers with oprofile, by disabling the NMI 1346If LAPIC NMI watchdog method is in use (nmi_watchdog=2 kernel parameter), the
1344watchdog, oprofile may have more registers to utilize. 1347NMI watchdog shares registers with oprofile. By disabling the NMI watchdog,
1348oprofile may have more registers to utilize.
1345 1349
1346msgmni 1350msgmni
1347------ 1351------
@@ -2483,4 +2487,30 @@ For more information on mount propagation see:
2483 2487
2484 Documentation/filesystems/sharedsubtree.txt 2488 Documentation/filesystems/sharedsubtree.txt
2485 2489
24902.17 /proc/sys/fs/epoll - Configuration options for the epoll interface
2491--------------------------------------------------------
2492
2493This directory contains configuration options for the epoll(7) interface.
2494
2495max_user_instances
2496------------------
2497
2498This is the maximum number of epoll file descriptors that a single user can
2499have open at a given time. The default value is 128, and should be enough
2500for normal users.
2501
2502max_user_watches
2503----------------
2504
2505Every epoll file descriptor can store a number of files to be monitored
2506for event readiness. Each one of these monitored files constitutes a "watch".
2507This configuration option sets the maximum number of "watches" that are
2508allowed for each user.
2509Each "watch" costs roughly 90 bytes on a 32bit kernel, and roughly 160 bytes
2510on a 64bit one.
2511The current default value for max_user_watches is the 1/32 of the available
2512low memory, divided for the "watch" cost in bytes.
2513
2514
2486------------------------------------------------------------------------------ 2515------------------------------------------------------------------------------
2516