aboutsummaryrefslogtreecommitdiffstats
path: root/tools/perf/builtin-report.c
diff options
context:
space:
mode:
authorArnaldo Carvalho de Melo <acme@redhat.com>2009-12-13 16:50:28 -0500
committerIngo Molnar <mingo@elte.hu>2009-12-14 10:57:16 -0500
commitb3165f414416a717f72a376720564012af5a2e01 (patch)
treeb066e4ae00b7d4bdb7386f4054e6e3ace0b976c3 /tools/perf/builtin-report.c
parentec913369733923dbfd6bdff5953a918107059701 (diff)
perf session: Move the global threads list to perf_session
So that we can process two perf.data files. We still need to add a O_MMAP mode for perf_session so that we can do all the mmap stuff in it. Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com> Cc: Frédéric Weisbecker <fweisbec@gmail.com> Cc: Mike Galbraith <efault@gmx.de> Cc: Peter Zijlstra <a.p.zijlstra@chello.nl> Cc: Paul Mackerras <paulus@samba.org> LKML-Reference: <1260741029-4430-5-git-send-email-acme@infradead.org> Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'tools/perf/builtin-report.c')
-rw-r--r--tools/perf/builtin-report.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/tools/perf/builtin-report.c b/tools/perf/builtin-report.c
index 26b947860948..efa8147b8991 100644
--- a/tools/perf/builtin-report.c
+++ b/tools/perf/builtin-report.c
@@ -600,7 +600,7 @@ static int validate_chain(struct ip_callchain *chain, event_t *event)
600 return 0; 600 return 0;
601} 601}
602 602
603static int process_sample_event(event_t *event, struct perf_session *session __used) 603static int process_sample_event(event_t *event, struct perf_session *session)
604{ 604{
605 struct sample_data data; 605 struct sample_data data;
606 int cpumode; 606 int cpumode;
@@ -636,7 +636,7 @@ static int process_sample_event(event_t *event, struct perf_session *session __u
636 } 636 }
637 } 637 }
638 638
639 thread = threads__findnew(data.pid); 639 thread = perf_session__findnew(session, data.pid);
640 if (thread == NULL) { 640 if (thread == NULL) {
641 pr_debug("problem processing %d event, skipping it.\n", 641 pr_debug("problem processing %d event, skipping it.\n",
642 event->header.type); 642 event->header.type);
@@ -679,9 +679,9 @@ static int process_sample_event(event_t *event, struct perf_session *session __u
679 return 0; 679 return 0;
680} 680}
681 681
682static int process_comm_event(event_t *event, struct perf_session *session __used) 682static int process_comm_event(event_t *event, struct perf_session *session)
683{ 683{
684 struct thread *thread = threads__findnew(event->comm.pid); 684 struct thread *thread = perf_session__findnew(session, event->comm.pid);
685 685
686 dump_printf(": %s:%d\n", event->comm.comm, event->comm.pid); 686 dump_printf(": %s:%d\n", event->comm.comm, event->comm.pid);
687 687
@@ -780,7 +780,7 @@ static int __cmd_report(void)
780 } 780 }
781 781
782 if (verbose > 3) 782 if (verbose > 3)
783 threads__fprintf(stdout); 783 perf_session__fprintf(session, stdout);
784 784
785 if (verbose > 2) 785 if (verbose > 2)
786 dsos__fprintf(stdout); 786 dsos__fprintf(stdout);