From: Steven Rostedt <rostedt@goodmis.org>
To: Tzvetomir Stoyanov <tz.stoyanov@gmail.com>
Cc: mhiramat@kernel.org, dan.carpenter@linaro.org,
linux-trace-devel@vger.kernel.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH] kernel/trace: Fix cleanup logic of enable_trace_eprobe
Date: Fri, 30 Jun 2023 03:33:30 -0400 [thread overview]
Message-ID: <20230630033330.20a503fa@rorschach.local.home> (raw)
In-Reply-To: <CAPpZLN6dCMzHyUhjSN3+9Um+-mS2TJiDPObUeO8NxyqpQS3k=g@mail.gmail.com>
On Thu, 29 Jun 2023 17:31:24 +0300
Tzvetomir Stoyanov <tz.stoyanov@gmail.com> wrote:
> On Wed, Jun 28, 2023 at 3:44 PM Steven Rostedt <rostedt@goodmis.org> wrote:
> >
> > On Wed, 28 Jun 2023 15:18:11 +0300
> > "Tzvetomir Stoyanov (VMware)" <tz.stoyanov@gmail.com> wrote:
>> > > --- a/kernel/trace/trace_eprobe.c
> > > +++ b/kernel/trace/trace_eprobe.c
> > > @@ -702,8 +702,12 @@ static int enable_trace_eprobe(struct trace_event_call *call,
> > >
> > > if (ret) {
> > > /* Failed to enable one of them. Roll back all */
> > > - if (enabled)
> > > - disable_eprobe(ep, file->tr);
> > > + if (enabled) {
> >
> > If one was enabled and the second one failed, that should only happen
> > if there's a bug in the kernel (unless the failure was due to a memory
> > problem).
> >
> > I wonder if we should add:
> >
> > int cnt = 0;
> >
> > > + list_for_each_entry(pos, trace_probe_probe_list(tp), list) {
> >
> > /*
> > * It's a bug if one failed for something other than memory
> > * not being available but another eprobe succeeded.
> > */
> > WARN_ON_ONCE(cnt++ && ret != -ENOMEM);
>
> That makes sense, I can send v2 with it. What is the idea of this cnt
> counter, why not just:
> WARN_ON_ONCE(ret != -ENOMEM);
> outside of the loop? If enabled is true and ret is not ENOMEM, the bug
> is already there.
Failing for something other than ENOMEM should not cause a warning by
itself. The idea is, if one fails for something other than ENOMEM, they
all should fail with the same error. That is, they all should succeed
or they all should fail.
Actually, the above isn't right. The counter should be in the original
loop, and if one or more succeeds to enable, but another fails due to
some other error, that needs to be looked at, hence the warning.
Does that make sense?
-- Steve
> >
> >
> > > + ep = container_of(pos, struct trace_eprobe, tp);
> > > + disable_eprobe(ep, file->tr);
> > > + }
> > > + }
> > > if (file)
> > > trace_probe_remove_file(tp, file);
> > > else
> >
>
>
next prev parent reply other threads:[~2023-06-30 7:33 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-06-28 12:18 [PATCH] kernel/trace: Fix cleanup logic of enable_trace_eprobe Tzvetomir Stoyanov (VMware)
2023-06-28 12:44 ` Steven Rostedt
2023-06-29 14:31 ` Tzvetomir Stoyanov
2023-06-30 7:33 ` Steven Rostedt [this message]
2023-06-30 9:57 ` Tzvetomir Stoyanov
2023-06-30 10:45 ` Steven Rostedt
2023-06-29 1:04 ` Masami Hiramatsu
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=20230630033330.20a503fa@rorschach.local.home \
--to=rostedt@goodmis.org \
--cc=dan.carpenter@linaro.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-trace-devel@vger.kernel.org \
--cc=mhiramat@kernel.org \
--cc=tz.stoyanov@gmail.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).