From: Tom Zanussi <tzanussi@gmail.com>
To: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Cc: Robert Richter <robert.richter@amd.com>,
Ingo Molnar <mingo@elte.hu>,
Peter Zijlstra <peterz@infradead.org>,
Stephane Eranian <eranian@google.com>,
Frederic Weisbecker <fweisbec@gmail.com>,
LKML <linux-kernel@vger.kernel.org>
Subject: Re: [PATCH 06/10] perf report: Setup browser if stdout is a pipe
Date: Tue, 06 Dec 2011 09:04:44 -0600 [thread overview]
Message-ID: <1323183884.2059.49.camel@elnicho> (raw)
In-Reply-To: <20111206132910.GG7059@infradead.org>
On Tue, 2011-12-06 at 11:29 -0200, Arnaldo Carvalho de Melo wrote:
> Em Tue, Dec 06, 2011 at 11:32:36AM +0100, Robert Richter escreveu:
> > The decision to setup the browser should be made if stdout is pipe,
> > not stdin.
>
> I can't remember what made that logic be like that... Here it is:
>
> commit 46656ac7fb3252f8a3db29b18638e0e8067849ba
> Author: Tom Zanussi <tzanussi@gmail.com>
> Date: Thu Apr 1 23:59:17 2010 -0500
>
> perf report: Introduce special handling for pipe input
>
> Adds special treatment for stdin - if the user specifies '-i -'
> to perf report, the intent is that the event stream be written
> to stdin rather than from a disk file.
>
> The actual handling of the '-' filename is done by the session;
> this just adds a signal handler to stop reporting, and turns off
> interference by the pager.
>
> Signed-off-by: Tom Zanussi <tzanussi@gmail.com>
> Acked-by: Thomas Gleixner <tglx@linutronix.de>
> Cc: fweisbec@gmail.com
> Cc: rostedt@goodmis.org
> Cc: k-keiichi@bx.jp.nec.com
> Cc: acme@ghostprotocols.net
> LKML-Reference: <1270184365-8281-4-git-send-email-tzanussi@gmail.com>
> Signed-off-by: Ingo Molnar <mingo@elte.hu>
>
>
> I can't understand the comment either, as I think it should've read "the
> intent is that the event stream be _read from stdin_ rather than from a
> disk file."
>
> And I don't know what would be the pager interference there.
>
> Tom, could you elaborate on this?
>
Hi Arnaldo,
Yeah, I think your comment is correct - the commit has a typo and should
read 'the intent is that the event stream be read from stdin'.
Basically, it's from the standpoint of a pipeline such as 'perf record |
perf report+scripting engine' where the output of perf record is
continuously fed into a scripting engine. The script in then end takes
complete control of the output and doesn't want to be interfered with by
a pager. IIRC that caused a problem with the 'top'-type scripts.
Anyway, from the standpoint of 'perf report' in a 'live' pipeline, I
think the current code is correct - if the input is coming from a pipe,
the assumption is that it's being passed to a script which will take
care of all the output details, so turn the pager off...
Tom
> Thanks,
>
> - Arnaldo
>
>
> > Signed-off-by: Robert Richter <robert.richter@amd.com>
> > ---
> > tools/perf/builtin-report.c | 9 ++++++---
> > 1 files changed, 6 insertions(+), 3 deletions(-)
> >
> > diff --git a/tools/perf/builtin-report.c b/tools/perf/builtin-report.c
> > index 4d7c834..88ca2d4 100644
> > --- a/tools/perf/builtin-report.c
> > +++ b/tools/perf/builtin-report.c
> > @@ -504,6 +504,8 @@ static const struct option options[] = {
> >
> > int cmd_report(int argc, const char **argv, const char *prefix __used)
> > {
> > + struct stat st;
> > +
> > argc = parse_options(argc, argv, options, report_usage, 0);
> >
> > if (use_stdio)
> > @@ -514,10 +516,11 @@ int cmd_report(int argc, const char **argv, const char *prefix __used)
> > if (inverted_callchain)
> > callchain_param.order = ORDER_CALLER;
> >
> > - if (strcmp(input_name, "-") != 0)
> > - setup_browser(true);
> > - else
> > + if (!fstat(STDOUT_FILENO, &st) && S_ISFIFO(st.st_mode))
> > use_browser = 0;
> > + else
> > + setup_browser(true);
> > +
> > /*
> > * Only in the newt browser we are doing integrated annotation,
> > * so don't allocate extra space that won't be used in the stdio
> > --
> > 1.7.7
> >
next prev parent reply other threads:[~2011-12-06 15:04 UTC|newest]
Thread overview: 26+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-12-06 10:32 [PATCH 00/10] perf tools: cleanups, fixes, updates Robert Richter
2011-12-06 10:32 ` [PATCH 01/10] perf script: Fix mem leaks and NULL pointer checks around strdup()s Robert Richter
2011-12-06 10:32 ` [PATCH 02/10] perf script: Implement option for system-wide profiling Robert Richter
2011-12-06 10:32 ` [PATCH 03/10] perf tools: Continue processing header on unknown features Robert Richter
2011-12-06 13:29 ` Arnaldo Carvalho de Melo
2011-12-06 10:32 ` [PATCH 04/10] perf tools: Fix out-of-bound access to struct perf_session Robert Richter
2011-12-06 13:20 ` Arnaldo Carvalho de Melo
2011-12-06 10:32 ` [PATCH 05/10] perf tool: Moving code in some files Robert Richter
2011-12-06 10:32 ` [PATCH 06/10] perf report: Setup browser if stdout is a pipe Robert Richter
2011-12-06 13:29 ` Arnaldo Carvalho de Melo
2011-12-06 15:04 ` Tom Zanussi [this message]
2011-12-06 17:15 ` Robert Richter
2011-12-06 10:32 ` [PATCH 07/10] perf report: Accept fifos as input file Robert Richter
2011-12-06 13:22 ` Arnaldo Carvalho de Melo
2011-12-06 10:32 ` [PATCH 08/10] perf tool: Unify handling of features when writing feature section Robert Richter
2011-12-06 13:36 ` Arnaldo Carvalho de Melo
2011-12-06 16:33 ` Robert Richter
2011-12-07 14:14 ` Arnaldo Carvalho de Melo
2011-12-07 14:35 ` Robert Richter
2011-12-06 10:32 ` [PATCH 09/10] perf tools: Improve macros for struct feature_ops Robert Richter
2011-12-06 13:23 ` Arnaldo Carvalho de Melo
2011-12-06 10:32 ` [PATCH 10/10] perf tools: Use for_each_set_bit() to iterate over feature flags Robert Richter
2011-12-06 13:40 ` Arnaldo Carvalho de Melo
2011-12-07 8:30 ` Robert Richter
2011-12-06 11:04 ` [PATCH 00/10] perf tools: cleanups, fixes, updates Robert Richter
2011-12-06 13:16 ` Arnaldo Carvalho de Melo
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=1323183884.2059.49.camel@elnicho \
--to=tzanussi@gmail.com \
--cc=acme@ghostprotocols.net \
--cc=eranian@google.com \
--cc=fweisbec@gmail.com \
--cc=linux-kernel@vger.kernel.org \
--cc=mingo@elte.hu \
--cc=peterz@infradead.org \
--cc=robert.richter@amd.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