Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1318936
| From | Namhyung Kim <namhyung@kernel.org> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | Re: [PATCH 4/4] perf hists browser: Check script context menu |
| Date | 2016-01-27 14:20 +0100 |
| Message-ID | <qVyaS-3Zx-1@gated-at.bofh.it> (permalink) |
| References | <qU6A1-3jF-1@gated-at.bofh.it> <qU6A3-3jF-11@gated-at.bofh.it> <qVgH0-88L-25@gated-at.bofh.it> <qVgH0-88L-23@gated-at.bofh.it> |
| Organization | linux.* mail to news gateway |
Hi Arnaldo,
On Tue, Jan 26, 2016 at 03:36:53PM -0300, Arnaldo Carvalho de Melo wrote:
> Em Tue, Jan 26, 2016 at 03:35:43PM -0300, Arnaldo Carvalho de Melo escreveu:
> > Em Sat, Jan 23, 2016 at 10:31:42PM +0900, Namhyung Kim escreveu:
> > > The script and data-switch context menu are only meaningful when it
> > > deals with a data file. So add a check so that it cannot be shown when
> > > perf-top is run.
> > >
> > > Signed-off-by: Namhyung Kim <namhyung@kernel.org>
> > > ---
> > > tools/perf/ui/browsers/hists.c | 12 +++++++-----
> > > 1 file changed, 7 insertions(+), 5 deletions(-)
> > >
> > > diff --git a/tools/perf/ui/browsers/hists.c b/tools/perf/ui/browsers/hists.c
> > > index 05e94feba3cb..0affffeed89c 100644
> > > --- a/tools/perf/ui/browsers/hists.c
> > > +++ b/tools/perf/ui/browsers/hists.c
> > > @@ -2309,7 +2309,7 @@ skip_annotation:
> > > socked_id);
> > > }
> > > /* perf script support */
> >
> > I instead used:
> >
> > if (is_report_browser(hbt)
>
> Oops, that should be:
>
> if (!is_report_browser(hbt)
>
> > goto skip_scripting;
Oh, it looks better! :)
> >
> > > - if (browser->he_selection) {
> >
> >
> > > + if (is_report_browser(hbt) && browser->he_selection) {
> > > if (sort__has_thread) {
> > > nr_options += add_script_opt(browser,
> > > &actions[nr_options],
> > > @@ -2332,10 +2332,12 @@ skip_annotation:
> > > NULL, browser->selection->sym);
> > > }
> > > }
> > > - nr_options += add_script_opt(browser, &actions[nr_options],
> > > - &options[nr_options], NULL, NULL);
> > > - nr_options += add_switch_opt(browser, &actions[nr_options],
> > > - &options[nr_options]);
> > > + if (is_report_browser(hbt)) {
> > > + nr_options += add_script_opt(browser, &actions[nr_options],
> > > + &options[nr_options], NULL, NULL);
> > > + nr_options += add_switch_opt(browser, &actions[nr_options],
> > > + &options[nr_options]);
> > > + }
> >
> > skip_scripting:
> >
> > > nr_options += add_exit_opt(browser, &actions[nr_options],
> > > &options[nr_options]);
> > >
> >
> > Also the other patches in this series were already done in my tree,
> > carved out from your initial patch but instead checking things at
> > add_foo_opt() in most cases,
Looks good!
Thanks for your work,
Namhyung
Back to linux.kernel | Previous | Next — Previous in thread | Next in thread | Find similar | Unroll thread
[PATCH 1/4] perf hists browser: Check DSO related context menu Namhyung Kim <namhyung@kernel.org> - 2016-01-23 14:40 +0100
[PATCH 4/4] perf hists browser: Check script context menu Namhyung Kim <namhyung@kernel.org> - 2016-01-23 14:40 +0100
Re: [PATCH 4/4] perf hists browser: Check script context menu Arnaldo Carvalho de Melo <acme@kernel.org> - 2016-01-26 19:40 +0100
Re: [PATCH 4/4] perf hists browser: Check script context menu Namhyung Kim <namhyung@kernel.org> - 2016-01-27 14:20 +0100
Re: [PATCH 4/4] perf hists browser: Check script context menu Arnaldo Carvalho de Melo <acme@kernel.org> - 2016-01-26 19:40 +0100
[PATCH 3/4] perf hists browser: Relax context menu check for symbol sort key Namhyung Kim <namhyung@kernel.org> - 2016-01-23 14:40 +0100
[PATCH 2/4] perf hists browser: Check socket context menu Namhyung Kim <namhyung@kernel.org> - 2016-01-23 14:40 +0100
csiph-web