diff options
author | Tony Lindgren <tony@atomide.com> | 2015-07-06 08:33:17 -0400 |
---|---|---|
committer | Tony Lindgren <tony@atomide.com> | 2015-07-06 08:33:17 -0400 |
commit | ae745302c0a3e2b5b768690f631fc14db44467e7 (patch) | |
tree | 1db4d210a7419286b447dc09fa7400a561d55f42 /Documentation/sysctl/kernel.txt | |
parent | e3abe2556b2a689b28926cd1581f0b97e9d2afa4 (diff) | |
parent | 22a5dc10e3f8fb8370748ea19dc4e3e1620d8296 (diff) |
Merge branch 'fixes-rc1' into omap-for-v4.2/fixes
Diffstat (limited to 'Documentation/sysctl/kernel.txt')
-rw-r--r-- | Documentation/sysctl/kernel.txt | 25 |
1 files changed, 23 insertions, 2 deletions
diff --git a/Documentation/sysctl/kernel.txt b/Documentation/sysctl/kernel.txt index c831001c45f1..6fccb69c03e7 100644 --- a/Documentation/sysctl/kernel.txt +++ b/Documentation/sysctl/kernel.txt | |||
@@ -197,8 +197,8 @@ core_pattern is used to specify a core dumpfile pattern name. | |||
197 | %P global pid (init PID namespace) | 197 | %P global pid (init PID namespace) |
198 | %i tid | 198 | %i tid |
199 | %I global tid (init PID namespace) | 199 | %I global tid (init PID namespace) |
200 | %u uid | 200 | %u uid (in initial user namespace) |
201 | %g gid | 201 | %g gid (in initial user namespace) |
202 | %d dump mode, matches PR_SET_DUMPABLE and | 202 | %d dump mode, matches PR_SET_DUMPABLE and |
203 | /proc/sys/fs/suid_dumpable | 203 | /proc/sys/fs/suid_dumpable |
204 | %s signal number | 204 | %s signal number |
@@ -923,6 +923,27 @@ and nmi_watchdog. | |||
923 | 923 | ||
924 | ============================================================== | 924 | ============================================================== |
925 | 925 | ||
926 | watchdog_cpumask: | ||
927 | |||
928 | This value can be used to control on which cpus the watchdog may run. | ||
929 | The default cpumask is all possible cores, but if NO_HZ_FULL is | ||
930 | enabled in the kernel config, and cores are specified with the | ||
931 | nohz_full= boot argument, those cores are excluded by default. | ||
932 | Offline cores can be included in this mask, and if the core is later | ||
933 | brought online, the watchdog will be started based on the mask value. | ||
934 | |||
935 | Typically this value would only be touched in the nohz_full case | ||
936 | to re-enable cores that by default were not running the watchdog, | ||
937 | if a kernel lockup was suspected on those cores. | ||
938 | |||
939 | The argument value is the standard cpulist format for cpumasks, | ||
940 | so for example to enable the watchdog on cores 0, 2, 3, and 4 you | ||
941 | might say: | ||
942 | |||
943 | echo 0,2-4 > /proc/sys/kernel/watchdog_cpumask | ||
944 | |||
945 | ============================================================== | ||
946 | |||
926 | watchdog_thresh: | 947 | watchdog_thresh: |
927 | 948 | ||
928 | This value can be used to control the frequency of hrtimer and NMI | 949 | This value can be used to control the frequency of hrtimer and NMI |