From: Masami Hiramatsu (Google) <mhiramat@kernel.org>
To: Steven Rostedt <rostedt@goodmis.org>
Cc: LKML <linux-kernel@vger.kernel.org>,
Linux Trace Kernel <linux-trace-kernel@vger.kernel.org>,
Masami Hiramatsu <mhiramat@kernel.org>,
Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
Subject: Re: [PATCH] tracing: Remove second parameter to __assign_rel_str()
Date: Mon, 26 Feb 2024 09:34:14 +0900 [thread overview]
Message-ID: <20240226093414.0ff0276080d61be9d4b68a73@kernel.org> (raw)
In-Reply-To: <20240223162519.2beb8112@gandalf.local.home>
On Fri, 23 Feb 2024 16:25:19 -0500
Steven Rostedt <rostedt@goodmis.org> wrote:
> From: "Steven Rostedt (Google)" <rostedt@goodmis.org>
>
> The second parameter of __assign_rel_str() is no longer used. It can be removed.
>
> Note, the only real users of rel_string is user events. This code is just
> in the sample code for testing purposes.
>
> This makes __assign_rel_str() different than __assign_str() but that's
> fine. __assign_str() is used over 700 places and has a larger impact. That
> change will come later.
Looks good to me.
Reviewed-by: Masami Hiramatsu (Google) <mhiramat@kernel.org>
Thanks,
>
> Signed-off-by: Steven Rostedt (Google) <rostedt@goodmis.org>
> ---
> include/trace/stages/stage6_event_callback.h | 2 +-
> samples/trace_events/trace-events-sample.h | 2 +-
> 2 files changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/include/trace/stages/stage6_event_callback.h b/include/trace/stages/stage6_event_callback.h
> index 935608971899..a0c15f67eabe 100644
> --- a/include/trace/stages/stage6_event_callback.h
> +++ b/include/trace/stages/stage6_event_callback.h
> @@ -91,7 +91,7 @@
> #define __rel_string_len(item, src, len) __rel_dynamic_array(char, item, -1)
>
> #undef __assign_rel_str
> -#define __assign_rel_str(dst, src) \
> +#define __assign_rel_str(dst) \
> do { \
> char *__str__ = __get_rel_str(dst); \
> int __len__ = __get_rel_dynamic_array_len(dst) - 1; \
> diff --git a/samples/trace_events/trace-events-sample.h b/samples/trace_events/trace-events-sample.h
> index 2dfaf7fc7bfa..500981eca74d 100644
> --- a/samples/trace_events/trace-events-sample.h
> +++ b/samples/trace_events/trace-events-sample.h
> @@ -574,7 +574,7 @@ TRACE_EVENT(foo_rel_loc,
> ),
>
> TP_fast_assign(
> - __assign_rel_str(foo, foo);
> + __assign_rel_str(foo);
> __entry->bar = bar;
> __assign_rel_bitmask(bitmask, mask,
> BITS_PER_BYTE * sizeof(unsigned long));
> --
> 2.43.0
>
--
Masami Hiramatsu (Google) <mhiramat@kernel.org>
prev parent reply other threads:[~2024-02-26 0:34 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-02-23 21:25 [PATCH] tracing: Remove second parameter to __assign_rel_str() Steven Rostedt
2024-02-26 0:34 ` Masami Hiramatsu [this message]
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=20240226093414.0ff0276080d61be9d4b68a73@kernel.org \
--to=mhiramat@kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-trace-kernel@vger.kernel.org \
--cc=mathieu.desnoyers@efficios.com \
--cc=rostedt@goodmis.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