aboutsummaryrefslogtreecommitdiffstats
path: root/Documentation
diff options
context:
space:
mode:
Diffstat (limited to 'Documentation')
-rw-r--r--Documentation/kernel-parameters.txt6
-rw-r--r--Documentation/trace/ftrace.txt6
2 files changed, 9 insertions, 3 deletions
diff --git a/Documentation/kernel-parameters.txt b/Documentation/kernel-parameters.txt
index e4cbca58536c..ab67b33300fb 100644
--- a/Documentation/kernel-parameters.txt
+++ b/Documentation/kernel-parameters.txt
@@ -789,8 +789,12 @@ and is between 256 and 4096 characters. It is defined in the file
789 as early as possible in order to facilitate early 789 as early as possible in order to facilitate early
790 boot debugging. 790 boot debugging.
791 791
792 ftrace_dump_on_oops 792 ftrace_dump_on_oops[=orig_cpu]
793 [FTRACE] will dump the trace buffers on oops. 793 [FTRACE] will dump the trace buffers on oops.
794 If no parameter is passed, ftrace will dump
795 buffers of all CPUs, but if you pass orig_cpu, it will
796 dump only the buffer of the CPU that triggered the
797 oops.
794 798
795 ftrace_filter=[function-list] 799 ftrace_filter=[function-list]
796 [FTRACE] Limit the functions traced by the function 800 [FTRACE] Limit the functions traced by the function
diff --git a/Documentation/trace/ftrace.txt b/Documentation/trace/ftrace.txt
index 03485bfbd797..52011815c905 100644
--- a/Documentation/trace/ftrace.txt
+++ b/Documentation/trace/ftrace.txt
@@ -1337,12 +1337,14 @@ ftrace_dump_on_oops must be set. To set ftrace_dump_on_oops, one
1337can either use the sysctl function or set it via the proc system 1337can either use the sysctl function or set it via the proc system
1338interface. 1338interface.
1339 1339
1340 sysctl kernel.ftrace_dump_on_oops=1 1340 sysctl kernel.ftrace_dump_on_oops=n
1341 1341
1342or 1342or
1343 1343
1344 echo 1 > /proc/sys/kernel/ftrace_dump_on_oops 1344 echo n > /proc/sys/kernel/ftrace_dump_on_oops
1345 1345
1346If n = 1, ftrace will dump buffers of all CPUs, if n = 2 ftrace will
1347only dump the buffer of the CPU that triggered the oops.
1346 1348
1347Here's an example of such a dump after a null pointer 1349Here's an example of such a dump after a null pointer
1348dereference in a kernel module: 1350dereference in a kernel module: