diff options
Diffstat (limited to 'tools/perf/util/scripting-engines/trace-event-perl.c')
-rw-r--r-- | tools/perf/util/scripting-engines/trace-event-perl.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/tools/perf/util/scripting-engines/trace-event-perl.c b/tools/perf/util/scripting-engines/trace-event-perl.c index e55a132f69b7..014ecd6f67c4 100644 --- a/tools/perf/util/scripting-engines/trace-event-perl.c +++ b/tools/perf/util/scripting-engines/trace-event-perl.c | |||
@@ -350,8 +350,10 @@ static void perl_process_tracepoint(struct perf_sample *sample, | |||
350 | if (evsel->attr.type != PERF_TYPE_TRACEPOINT) | 350 | if (evsel->attr.type != PERF_TYPE_TRACEPOINT) |
351 | return; | 351 | return; |
352 | 352 | ||
353 | if (!event) | 353 | if (!event) { |
354 | die("ug! no event found for type %" PRIu64, (u64)evsel->attr.config); | 354 | pr_debug("ug! no event found for type %" PRIu64, (u64)evsel->attr.config); |
355 | return; | ||
356 | } | ||
355 | 357 | ||
356 | pid = raw_field_value(event, "common_pid", data); | 358 | pid = raw_field_value(event, "common_pid", data); |
357 | 359 | ||