From: Huang Yiwei <quic_hyiwei@quicinc.com>
To: Steven Rostedt <rostedt@goodmis.org>
Cc: <mhiramat@kernel.org>, <mark.rutland@arm.com>,
<mcgrof@kernel.org>, <keescook@chromium.org>,
<j.granados@samsung.com>, <mathieu.desnoyers@efficios.com>,
<corbet@lwn.net>, <linux-kernel@vger.kernel.org>,
<linux-trace-kernel@vger.kernel.org>,
<linux-fsdevel@vger.kernel.org>, <linux-doc@vger.kernel.org>,
<quic_bjorande@quicinc.com>, <quic_tsoni@quicinc.com>,
<quic_satyap@quicinc.com>, <quic_aiquny@quicinc.com>,
<kernel@quicinc.com>, Ross Zwisler <zwisler@google.com>,
Joel Fernandes <joel@joelfernandes.org>
Subject: Re: [PATCH v5] tracing: Support to dump instance traces by ftrace_dump_on_oops
Date: Thu, 29 Feb 2024 17:11:49 +0800 [thread overview]
Message-ID: <dbcd66cd-4d59-4246-88ab-db32abbd8e00@quicinc.com> (raw)
In-Reply-To: <20240226204757.1a968a10@gandalf.local.home>
On 2/27/2024 9:47 AM, Steven Rostedt wrote:
> On Thu, 8 Feb 2024 21:18:14 +0800
> Huang Yiwei <quic_hyiwei@quicinc.com> wrote:
>
>> Currently ftrace only dumps the global trace buffer on an OOPs. For
>> debugging a production usecase, instance trace will be helpful to
>> check specific problems since global trace buffer may be used for
>> other purposes.
>>
>> This patch extend the ftrace_dump_on_oops parameter to dump a specific
>> or multiple trace instances:
>>
>> - ftrace_dump_on_oops=0: as before -- don't dump
>> - ftrace_dump_on_oops[=1]: as before -- dump the global trace buffer
>> on all CPUs
>> - ftrace_dump_on_oops=2 or =orig_cpu: as before -- dump the global
>> trace buffer on CPU that triggered the oops
>> - ftrace_dump_on_oops=<instance_name>: new behavior -- dump the
>> tracing instance matching <instance_name>
>> - ftrace_dump_on_oops[=2/orig_cpu],<instance1_name>[=2/orig_cpu],
>> <instrance2_name>[=2/orig_cpu]: new behavior -- dump the global trace
>> buffer and multiple instance buffer on all CPUs, or only dump on CPU
>> that triggered the oops if =2 or =orig_cpu is given
>
> So we need to add that the syntax is:
>
> ftrace_dump_on_oops[=[<0|1|2|orig_cpu>,][<instance_name>[=<1|2|orig_cpu>][,...]]
>
Yeah, this is much more clear, will update the commit message and kernel
docs in new patchset.
>>
>> Also, the sysctl node can handle the input accordingly.
>>
>> Cc: Ross Zwisler <zwisler@google.com>
>> Signed-off-by: Joel Fernandes (Google) <joel@joelfernandes.org>
>> Signed-off-by: Huang Yiwei <quic_hyiwei@quicinc.com>
>> ---
>> .../admin-guide/kernel-parameters.txt | 26 ++-
>> Documentation/admin-guide/sysctl/kernel.rst | 30 +++-
>> include/linux/ftrace.h | 4 +-
>> include/linux/kernel.h | 1 +
>> kernel/sysctl.c | 4 +-
>> kernel/trace/trace.c | 156 +++++++++++++-----
>> kernel/trace/trace_selftest.c | 2 +-
>> 7 files changed, 168 insertions(+), 55 deletions(-)
>>
>> diff --git a/Documentation/admin-guide/kernel-parameters.txt b/Documentation/admin-guide/kernel-parameters.txt
>> index 31b3a25680d0..3d6ea8e80c2f 100644
>> --- a/Documentation/admin-guide/kernel-parameters.txt
>> +++ b/Documentation/admin-guide/kernel-parameters.txt
>> @@ -1561,12 +1561,28 @@
>> The above will cause the "foo" tracing instance to trigger
>> a snapshot at the end of boot up.
>>
>> - ftrace_dump_on_oops[=orig_cpu]
>> + ftrace_dump_on_oops[=2(orig_cpu) | =<instance>][,<instance> |
>> + ,<instance>=2(orig_cpu)]
>> [FTRACE] will dump the trace buffers on oops.
>> - If no parameter is passed, ftrace will dump
>> - buffers of all CPUs, but if you pass orig_cpu, it will
>> - dump only the buffer of the CPU that triggered the
>> - oops.
>> + If no parameter is passed, ftrace will dump global
>> + buffers of all CPUs, if you pass 2 or orig_cpu, it
>> + will dump only the buffer of the CPU that triggered
>> + the oops, or the specific instance will be dumped if
>> + its name is passed. Multiple instance dump is also
>> + supported, and instances are separated by commas. Each
>> + instance supports only dump on CPU that triggered the
>> + oops by passing 2 or orig_cpu to it.
>> +
>> + ftrace_dump_on_oops=foo=orig_cpu
>> +
>> + The above will dump only the buffer of "foo" instance
>> + on CPU that triggered the oops.
>> +
>> + ftrace_dump_on_oops,foo,bar=orig_cpu
>
> I believe the above is incorrect. It should be:
>
> ftrace_dump_on_oops=foo,bar=orig_cpu
>
> And you can add here as well:
>
> ftrace_dump_on_oops[=[<0|1|2|orig_cpu>,][<instance_name>[=<1|2|orig_cpu>][,...]]
>
>
> Thanks,
>
> --Steve
>
The explanation is below, I think it's correct?
- "ftrace_dump_on_oops," means global buffer on all CPUs
- "foo," means foo instance on all CPUs
- "bar=orig_cpu" means bar instance on CPU that triggered the oops.
I'm trying to make the example to cover more possibilities.
Regards,
Huang Yiwei
>> +
>> + The above will dump global buffer on all CPUs, the
>> + buffer of "foo" instance on all CPUs and the buffer
>> + of "bar" instance on CPU that triggered the oops.
>>
>> ftrace_filter=[function-list]
next prev parent reply other threads:[~2024-02-29 9:12 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-02-08 13:18 [PATCH v5] tracing: Support to dump instance traces by ftrace_dump_on_oops Huang Yiwei
2024-02-21 14:42 ` Steven Rostedt
2024-02-23 1:47 ` Steven Rostedt
2024-02-23 8:19 ` Huang Yiwei
2024-02-25 23:51 ` Masami Hiramatsu
2024-02-26 18:44 ` Steven Rostedt
2024-02-27 1:47 ` Steven Rostedt
2024-02-29 9:11 ` Huang Yiwei [this message]
2024-02-29 15:25 ` Steven Rostedt
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=dbcd66cd-4d59-4246-88ab-db32abbd8e00@quicinc.com \
--to=quic_hyiwei@quicinc.com \
--cc=corbet@lwn.net \
--cc=j.granados@samsung.com \
--cc=joel@joelfernandes.org \
--cc=keescook@chromium.org \
--cc=kernel@quicinc.com \
--cc=linux-doc@vger.kernel.org \
--cc=linux-fsdevel@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-trace-kernel@vger.kernel.org \
--cc=mark.rutland@arm.com \
--cc=mathieu.desnoyers@efficios.com \
--cc=mcgrof@kernel.org \
--cc=mhiramat@kernel.org \
--cc=quic_aiquny@quicinc.com \
--cc=quic_bjorande@quicinc.com \
--cc=quic_satyap@quicinc.com \
--cc=quic_tsoni@quicinc.com \
--cc=rostedt@goodmis.org \
--cc=zwisler@google.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).