aboutsummaryrefslogtreecommitdiffstats
path: root/tools/perf/builtin-report.c
diff options
context:
space:
mode:
Diffstat (limited to 'tools/perf/builtin-report.c')
-rw-r--r--tools/perf/builtin-report.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/perf/builtin-report.c b/tools/perf/builtin-report.c
index 015c79745966..a4f8cc209151 100644
--- a/tools/perf/builtin-report.c
+++ b/tools/perf/builtin-report.c
@@ -629,14 +629,14 @@ process_sample_event(event_t *event, unsigned long offset, unsigned long head)
629 } 629 }
630 } 630 }
631 631
632 dump_printf(" ... thread: %s:%d\n", thread->comm, thread->pid);
633
634 if (thread == NULL) { 632 if (thread == NULL) {
635 eprintf("problem processing %d event, skipping it.\n", 633 eprintf("problem processing %d event, skipping it.\n",
636 event->header.type); 634 event->header.type);
637 return -1; 635 return -1;
638 } 636 }
639 637
638 dump_printf(" ... thread: %s:%d\n", thread->comm, thread->pid);
639
640 if (comm_list && !strlist__has_entry(comm_list, thread->comm)) 640 if (comm_list && !strlist__has_entry(comm_list, thread->comm))
641 return 0; 641 return 0;
642 642