aboutsummaryrefslogtreecommitdiffstats
path: root/tools/perf/builtin-record.c
diff options
context:
space:
mode:
Diffstat (limited to 'tools/perf/builtin-record.c')
-rw-r--r--tools/perf/builtin-record.c15
1 files changed, 14 insertions, 1 deletions
diff --git a/tools/perf/builtin-record.c b/tools/perf/builtin-record.c
index 4e3a374e7aa7..8b2c860c49a2 100644
--- a/tools/perf/builtin-record.c
+++ b/tools/perf/builtin-record.c
@@ -374,9 +374,11 @@ static struct perf_header_attr *get_header_attr(struct perf_event_attr *a, int n
374 374
375static void create_counter(int counter, int cpu, pid_t pid) 375static void create_counter(int counter, int cpu, pid_t pid)
376{ 376{
377 char *filter = filters[counter];
377 struct perf_event_attr *attr = attrs + counter; 378 struct perf_event_attr *attr = attrs + counter;
378 struct perf_header_attr *h_attr; 379 struct perf_header_attr *h_attr;
379 int track = !counter; /* only the first counter needs these */ 380 int track = !counter; /* only the first counter needs these */
381 int ret;
380 struct { 382 struct {
381 u64 count; 383 u64 count;
382 u64 time_enabled; 384 u64 time_enabled;
@@ -479,7 +481,6 @@ try_again:
479 multiplex_fd = fd[nr_cpu][counter]; 481 multiplex_fd = fd[nr_cpu][counter];
480 482
481 if (multiplex && fd[nr_cpu][counter] != multiplex_fd) { 483 if (multiplex && fd[nr_cpu][counter] != multiplex_fd) {
482 int ret;
483 484
484 ret = ioctl(fd[nr_cpu][counter], PERF_EVENT_IOC_SET_OUTPUT, multiplex_fd); 485 ret = ioctl(fd[nr_cpu][counter], PERF_EVENT_IOC_SET_OUTPUT, multiplex_fd);
485 assert(ret != -1); 486 assert(ret != -1);
@@ -499,6 +500,16 @@ try_again:
499 } 500 }
500 } 501 }
501 502
503 if (filter != NULL) {
504 ret = ioctl(fd[nr_cpu][counter],
505 PERF_EVENT_IOC_SET_FILTER, filter);
506 if (ret) {
507 error("failed to set filter with %d (%s)\n", errno,
508 strerror(errno));
509 exit(-1);
510 }
511 }
512
502 ioctl(fd[nr_cpu][counter], PERF_EVENT_IOC_ENABLE); 513 ioctl(fd[nr_cpu][counter], PERF_EVENT_IOC_ENABLE);
503} 514}
504 515
@@ -676,6 +687,8 @@ static const struct option options[] = {
676 OPT_CALLBACK('e', "event", NULL, "event", 687 OPT_CALLBACK('e', "event", NULL, "event",
677 "event selector. use 'perf list' to list available events", 688 "event selector. use 'perf list' to list available events",
678 parse_events), 689 parse_events),
690 OPT_CALLBACK(0, "filter", NULL, "filter",
691 "event filter", parse_filter),
679 OPT_INTEGER('p', "pid", &target_pid, 692 OPT_INTEGER('p', "pid", &target_pid,
680 "record events on existing pid"), 693 "record events on existing pid"),
681 OPT_INTEGER('r', "realtime", &realtime_prio, 694 OPT_INTEGER('r', "realtime", &realtime_prio,