linux-trace-devel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Steven Rostedt <rostedt@goodmis.org>
To: "Tzvetomir Stoyanov (VMware)" <tz.stoyanov@gmail.com>
Cc: linux-trace-devel@vger.kernel.org
Subject: Re: [PATCH v2 2/2] trace-cmd: Clear error log on reset subcommand
Date: Mon, 24 Feb 2020 15:44:11 -0500	[thread overview]
Message-ID: <20200224154411.3b8e63c9@gandalf.local.home> (raw)
In-Reply-To: <20200219131410.447103-1-tz.stoyanov@gmail.com>

On Wed, 19 Feb 2020 15:14:10 +0200
"Tzvetomir Stoyanov (VMware)" <tz.stoyanov@gmail.com> wrote:

> The "trace-cmd reset" command is supposed to set the ftrace state to default.
> However, the ftrace error logs are not reseted.
> A logic is added to delete the content of "error_log" file when "trace-cmd reset" is executed.
> 
> Signed-off-by: Tzvetomir Stoyanov (VMware) <tz.stoyanov@gmail.com>
> ---
>  tracecmd/trace-record.c | 20 ++++++++++++++++++++
>  1 file changed, 20 insertions(+)
> 
> diff --git a/tracecmd/trace-record.c b/tracecmd/trace-record.c
> index b6a412e..3e0d066 100644
> --- a/tracecmd/trace-record.c
> +++ b/tracecmd/trace-record.c
> @@ -4638,6 +4638,25 @@ static void clear_triggers(void)
>  		clear_instance_triggers(instance);
>  }
>  
> +static void clear_instance_error_log(struct buffer_instance *instance)
> +{
> +	char *file;
> +
> +	file = tracefs_instance_get_file(instance->tracefs, "error_log");
> +	if (!file)
> +		return;
> +	write_file(file, " ");
> +	tracefs_put_tracing_file(file);
> +}

The error_log file is not guaranteed to exist. Please add a check for
existence via stat() (hmm, perhaps we should make a file_exists() helper
function). Otherwise I get this:

# trace-cmd reset
trace-cmd: No such file or directory
  opening to '/debug/tracing/error_log'


> +
> +static void clear_error_log(void)
> +{
> +	struct buffer_instance *instance;
> +
> +	for_all_instances(instance)
> +		clear_instance_error_log(instance);
> +}
> +
>  static void clear_all_synth_events(void)
>  {
>  	char sevent[BUFSIZ];
> @@ -5382,6 +5401,7 @@ void trace_reset(int argc, char **argv)
>  	clear_filters();
>  	clear_triggers();
>  	clear_all_synth_events();
> +	clear_error_log();
>  	/* set clock to "local" */
>  	reset_clock();
>  	reset_event_pid();


      reply	other threads:[~2020-02-24 20:44 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-02-19 13:14 [PATCH v2 2/2] trace-cmd: Clear error log on reset subcommand Tzvetomir Stoyanov (VMware)
2020-02-24 20:44 ` Steven Rostedt [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=20200224154411.3b8e63c9@gandalf.local.home \
    --to=rostedt@goodmis.org \
    --cc=linux-trace-devel@vger.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).