Skip to content

Commit

Permalink
perf report: Introduce special handling for pipe input
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Tom Zanussi authored and Ingo Molnar committed Apr 14, 2010
1 parent 529870e commit 46656ac
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion tools/perf/builtin-report.c
Original file line number Diff line number Diff line change
Expand Up @@ -269,13 +269,22 @@ 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;
struct perf_session *session;
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;
Expand Down Expand Up @@ -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;
Expand Down

0 comments on commit 46656ac

Please sign in to comment.