[tip:perf/live] perf report: Introduce special handling for pipe input

Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]
From: tip-bot for Tom Zanussi
Date: Wednesday, April 14, 2010 - 3:04 am

Commit-ID:  46656ac7fb3252f8a3db29b18638e0e8067849ba
Gitweb:     http://git.kernel.org/tip/46656ac7fb3252f8a3db29b18638e0e8067849ba
Author:     Tom Zanussi <tzanussi@gmail.com>
AuthorDate: Thu, 1 Apr 2010 23:59:17 -0500
Committer:  Ingo Molnar <mingo@elte.hu>
CommitDate: Wed, 14 Apr 2010 11:56:06 +0200

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>
---
 tools/perf/builtin-report.c |   12 +++++++++++-
 1 files changed, 11 insertions(+), 1 deletions(-)

diff --git a/tools/perf/builtin-report.c b/tools/perf/builtin-report.c
index daee082..00b358f 100644
--- a/tools/perf/builtin-report.c
+++ b/tools/perf/builtin-report.c
@@ -269,6 +269,13 @@ static struct perf_event_ops event_ops = {
 	.read	= process_read_event,
 };
 
+extern volatile int session_done;
+
+static void sig_handler(int sig __attribute__((__unused__)))
+{
+	session_done = 1;
+}
+
 static int __cmd_report(void)
 {
 	int ret = -EINVAL;
@@ -276,6 +283,8 @@ static int __cmd_report(void)
 	struct rb_node *next;
 	const char *help = "For a higher level overview, try: perf report --sort comm,dso";
 
+	signal(SIGINT, sig_handler);
+
 	session = perf_session__new(input_name, O_RDONLY, force);
 	if (session == NULL)
 		return -ENOMEM;
@@ -465,7 +474,8 @@ int cmd_report(int argc, const char **argv, const char *prefix __used)
 {
 	argc = parse_options(argc, argv, options, report_usage, 0);
 
-	setup_browser();
+	if (strcmp(input_name, "-") != 0)
+		setup_browser();
 
 	if (symbol__init() < 0)
 		return -1;
--
Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]

Messages in current thread:
[RFC v2][PATCH 0/7] perf: 'live mode', Tom Zanussi, (Thu Apr 1, 9:59 pm)
Re: [RFC v2][PATCH 08/11] perf: convert perf header build_ ..., Arnaldo Carvalho de Melo, (Sat Apr 3, 6:54 am)
[tip:perf/live] perf: Add pipe-specific header read/write ..., tip-bot for Tom Zanussi, (Wed Apr 14, 3:03 am)
[tip:perf/live] perf record: Introduce special handling fo ..., tip-bot for Tom Zanussi, (Wed Apr 14, 3:03 am)
[tip:perf/live] perf report: Introduce special handling fo ..., tip-bot for Tom Zanussi, (Wed Apr 14, 3:04 am)
[tip:perf/live] perf trace: Introduce special handling for ..., tip-bot for Tom Zanussi, (Wed Apr 14, 3:04 am)
[tip:perf/live] perf: Convert perf header attrs into attr ..., tip-bot for Tom Zanussi, (Wed Apr 14, 3:04 am)
[tip:perf/live] perf: Convert perf event types into event ..., tip-bot for Tom Zanussi, (Wed Apr 14, 3:05 am)
[tip:perf/live] perf: Convert perf tracing data into a tra ..., tip-bot for Tom Zanussi, (Wed Apr 14, 3:05 am)
[tip:perf/live] perf: Convert perf header build_ids into b ..., tip-bot for Tom Zanussi, (Wed Apr 14, 3:05 am)
[tip:perf/live] perf trace/scripting: Add rwtop and sctop ..., tip-bot for Tom Zanussi, (Wed Apr 14, 3:05 am)
[tip:perf/live] perf trace/scripting: Enable scripting she ..., tip-bot for Tom Zanussi, (Wed Apr 14, 3:06 am)
[tip:perf/live] perf trace: Invoke live mode automatically ..., tip-bot for Tom Zanussi, (Wed Apr 14, 3:06 am)