linux-perf-users.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Changbin Du <changbin.du@gmail.com>
To: Namhyung Kim <namhyung@kernel.org>
Cc: Changbin Du <changbin.du@gmail.com>,
	Arnaldo Carvalho de Melo <acme@kernel.org>,
	Peter Zijlstra <peterz@infradead.org>,
	Ingo Molnar <mingo@redhat.com>, Jiri Olsa <jolsa@redhat.com>,
	linux-perf-users <linux-perf-users@vger.kernel.org>,
	linux-kernel <linux-kernel@vger.kernel.org>
Subject: Re: [PATCH] perf/ftrace: system_wide collection is not effective by default
Date: Thu, 27 Jan 2022 21:19:29 +0800	[thread overview]
Message-ID: <20220127131929.ydxtkpbguk7fyho5@mail.google.com> (raw)
In-Reply-To: <CAM9d7cipbsg46=UNY8-h-e9RAsqeJRcL=mi_RXbtQwQUbwPehQ@mail.gmail.com>

On Wed, Jan 26, 2022 at 03:47:48PM -0800, Namhyung Kim wrote:
> Hello,
> 
> On Wed, Jan 26, 2022 at 7:19 AM Changbin Du <changbin.du@gmail.com> wrote:
> >
> > The ftrace.target.system_wide must be set before invoking
> > evlist__create_maps(), otherwise it has no effect.
> 
> Oh, right.  Thanks for pointing that out.
> 
> >
> > Fixes: 53be50282269 ("perf ftrace: Add 'latency' subcommand")
> > Signed-off-by: Changbin Du <changbin.du@gmail.com>
> > ---
> >  tools/perf/builtin-ftrace.c | 45 ++++++++++++++++++++-----------------
> >  1 file changed, 24 insertions(+), 21 deletions(-)
> >
> > diff --git a/tools/perf/builtin-ftrace.c b/tools/perf/builtin-ftrace.c
> > index dec24dc0e767..26bff29ad277 100644
> > --- a/tools/perf/builtin-ftrace.c
> > +++ b/tools/perf/builtin-ftrace.c
> > @@ -1115,6 +1115,7 @@ enum perf_ftrace_subcommand {
> >  int cmd_ftrace(int argc, const char **argv)
> >  {
> >         int ret;
> > +       int (*cmd_func)(struct perf_ftrace *) = NULL;
> >         struct perf_ftrace ftrace = {
> >                 .tracer = DEFAULT_TRACER,
> >                 .target = { .uid = UINT_MAX, },
> > @@ -1221,6 +1222,28 @@ int cmd_ftrace(int argc, const char **argv)
> >                 goto out_delete_filters;
> >         }
> >
> > +       switch (subcmd) {
> > +       case PERF_FTRACE_TRACE:
> > +               if (!argc && target__none(&ftrace.target))
> > +                       ftrace.target.system_wide = true;
> 
> We can move only this part after parse_options().
>
I prefer that all parsing works get be done first. :)

> > +               cmd_func = __cmd_ftrace;
> > +               break;
> > +       case PERF_FTRACE_LATENCY:
> > +               if (list_empty(&ftrace.filters)) {
> > +                       pr_err("Should provide a function to measure\n");
> > +                       parse_options_usage(ftrace_usage, options, "T", 1);
> > +                       ret = -EINVAL;
> > +                       goto out_delete_evlist;
> 
> Otherwise, it should go to the out_delete_filters.
> 
yes, will fix it.

> > +               }
> > +               cmd_func = __cmd_latency;
> > +               break;
> > +       case PERF_FTRACE_NONE:
> > +       default:
> > +               pr_err("Invalid subcommand\n");
> > +               ret = -EINVAL;
> > +               goto out_delete_evlist;
> 
> Ditto.
> 
okay.

> Thanks,
> Namhyung
> 
> 
> > +       }
> > +
> >         ret = target__validate(&ftrace.target);
> >         if (ret) {
> >                 char errbuf[512];
> > @@ -1248,27 +1271,7 @@ int cmd_ftrace(int argc, const char **argv)
> >                         goto out_delete_evlist;
> >         }
> >
> > -       switch (subcmd) {
> > -       case PERF_FTRACE_TRACE:
> > -               if (!argc && target__none(&ftrace.target))
> > -                       ftrace.target.system_wide = true;
> > -               ret = __cmd_ftrace(&ftrace);
> > -               break;
> > -       case PERF_FTRACE_LATENCY:
> > -               if (list_empty(&ftrace.filters)) {
> > -                       pr_err("Should provide a function to measure\n");
> > -                       parse_options_usage(ftrace_usage, options, "T", 1);
> > -                       ret = -EINVAL;
> > -                       goto out_delete_evlist;
> > -               }
> > -               ret = __cmd_latency(&ftrace);
> > -               break;
> > -       case PERF_FTRACE_NONE:
> > -       default:
> > -               pr_err("Invalid subcommand\n");
> > -               ret = -EINVAL;
> > -               break;
> > -       }
> > +       ret = cmd_func(&ftrace);
> >
> >  out_delete_evlist:
> >         evlist__delete(ftrace.evlist);
> > --
> > 2.32.0
> >

-- 
Cheers,
Changbin Du

      reply	other threads:[~2022-01-27 13:19 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-01-26 15:19 [PATCH] perf/ftrace: system_wide collection is not effective by default Changbin Du
2022-01-26 23:47 ` Namhyung Kim
2022-01-27 13:19   ` Changbin Du [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=20220127131929.ydxtkpbguk7fyho5@mail.google.com \
    --to=changbin.du@gmail.com \
    --cc=acme@kernel.org \
    --cc=jolsa@redhat.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-perf-users@vger.kernel.org \
    --cc=mingo@redhat.com \
    --cc=namhyung@kernel.org \
    --cc=peterz@infradead.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;
as well as URLs for NNTP newsgroup(s).