From: Masami Hiramatsu <mhiramat@kernel.org>
To: Steven Rostedt <rostedt@goodmis.org>
Cc: LKML <linux-kernel@vger.kernel.org>,
Ingo Molnar <mingo@kernel.org>,
Andrew Morton <akpm@linux-foundation.org>,
Masami Hiramatsu <mhiramat@kernel.org>,
Tom Zanussi <zanussi@kernel.org>,
Tzvetomir Stoyanov <tz.stoyanov@gmail.com>,
Yordan Karadzhov <y.karadz@gmail.com>
Subject: Re: [PATCH v2] tracing: Fix event probe removal from dynamic events
Date: Tue, 12 Oct 2021 23:31:07 +0900 [thread overview]
Message-ID: <20211012233107.671725f6ec0316b3d0a9dd85@kernel.org> (raw)
In-Reply-To: <20211012081925.0e19cc4f@gandalf.local.home>
On Tue, 12 Oct 2021 08:19:25 -0400
Steven Rostedt <rostedt@goodmis.org> wrote:
> From: "Steven Rostedt (VMware)" <rostedt@goodmis.org>
>
> When an event probe is to be removed via the API to remove dynamic events,
> an -EBUSY error is returned.
>
> This is because the removal of the event probe does not expect to see the
> event system and name that the event probe is attached to, even though
> that's part of the API to create it. As the removal of probes is to use
> the same API as they are created, fix it by first testing if the first
> parameter of the event probe to be removed matches the system and event
> that the probe is attached to, and then adjust the argc and argv of the
> parameters to match the rest of the syntax.
Hmm, this seems something wrong. Via dynamic_events interface, all the
events must be parsed equaly. If you have to pass the attached "system/event"
that's something wrong. The dynamic_events interface will accept
-:[GROUP/]EVENT [optional arguments]
Or
!e:[GROUP/]EVENT [optional arguments]
What did you expect other that these syntax?
Thank you,
>
> Link: https://lkml.kernel.org/r/20211011211105.48b6a5fd@oasis.local.home
>
> Fixes: 7491e2c442781 ("tracing: Add a probe that attaches to trace events")
> Signed-off-by: Steven Rostedt (VMware) <rostedt@goodmis.org>
> ---
> Changes since v1:
> - amended the commit with the definition of "slash"
>
> kernel/trace/trace_eprobe.c | 20 ++++++++++++++++++++
> 1 file changed, 20 insertions(+)
>
> diff --git a/kernel/trace/trace_eprobe.c b/kernel/trace/trace_eprobe.c
> index 570d081929fb..2bcfa8da5cef 100644
> --- a/kernel/trace/trace_eprobe.c
> +++ b/kernel/trace/trace_eprobe.c
> @@ -119,6 +119,26 @@ static bool eprobe_dyn_event_match(const char *system, const char *event,
> int argc, const char **argv, struct dyn_event *ev)
> {
> struct trace_eprobe *ep = to_trace_eprobe(ev);
> + const char *slash;
> +
> + /* First argument is the system/event the probe is attached to */
> +
> + if (argc < 1)
> + return false;
> +
> + slash = strchr(argv[0], '/');
> + if (!slash)
> + slash = strchr(argv[0], '.');
> + if (!slash)
> + return false;
> +
> + if (strncmp(ep->event_system, argv[0], slash - argv[0]))
> + return false;
> + if (strcmp(ep->event_name, slash + 1))
> + return false;
> +
> + argc--;
> + argv++;
>
> return strcmp(trace_probe_name(&ep->tp), event) == 0 &&
> (!system || strcmp(trace_probe_group_name(&ep->tp), system) == 0) &&
> --
> 2.31.1
>
--
Masami Hiramatsu <mhiramat@kernel.org>
next prev parent reply other threads:[~2021-10-12 14:31 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-10-12 12:19 Steven Rostedt
2021-10-12 14:31 ` Masami Hiramatsu [this message]
2021-10-12 16:03 ` Steven Rostedt
2021-10-12 22:42 ` Masami Hiramatsu
2021-10-13 0:08 ` Steven Rostedt
2021-10-13 14:42 ` Masami Hiramatsu
2021-10-13 16:53 ` Steven Rostedt
2021-10-12 22:46 ` Masami Hiramatsu
2021-10-13 0:15 ` Steven Rostedt
2021-10-13 14:32 ` Masami Hiramatsu
2021-10-13 15:09 ` 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=20211012233107.671725f6ec0316b3d0a9dd85@kernel.org \
--to=mhiramat@kernel.org \
--cc=akpm@linux-foundation.org \
--cc=linux-kernel@vger.kernel.org \
--cc=mingo@kernel.org \
--cc=rostedt@goodmis.org \
--cc=tz.stoyanov@gmail.com \
--cc=y.karadz@gmail.com \
--cc=zanussi@kernel.org \
/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
all inboxes | Powered by JetHome®