perf tools: Add an option to multiplex counters in a single channel
[deliverable/linux.git] / tools / perf / builtin-record.c
index 99a12fe86e9fe4010f49439a4c154ac7ac5f6de5..79f99dba5be0ce493d37c48a0fb765aca6b355b3 100644 (file)
@@ -48,6 +48,7 @@ static int                    call_graph                      = 0;
 static int                     inherit_stat                    = 0;
 static int                     no_samples                      = 0;
 static int                     sample_address                  = 0;
+static int                     multiplex                       = 0;
 
 static long                    samples;
 static struct timeval          last_read;
@@ -485,6 +486,9 @@ try_again:
                exit(-1);
        }
 
+       if (multiplex && fd[nr_cpu][counter] != group_fd)
+               ioctl(fd[nr_cpu][counter], PERF_COUNTER_IOC_SET_OUTPUT, group_fd);
+
        ioctl(fd[nr_cpu][counter], PERF_COUNTER_IOC_ENABLE);
 }
 
@@ -681,6 +685,8 @@ static const struct option options[] = {
                    "Sample addresses"),
        OPT_BOOLEAN('n', "no-samples", &no_samples,
                    "don't sample"),
+       OPT_BOOLEAN('M', "multiplex", &multiplex,
+                   "multiplex counter output in a single channel"),
        OPT_END()
 };
 
This page took 0.041183 seconds and 5 git commands to generate.