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.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/tools/perf/builtin-record.c b/tools/perf/builtin-record.c
index 0f5771f615d..a177a591b52 100644
--- a/tools/perf/builtin-record.c
+++ b/tools/perf/builtin-record.c
@@ -37,6 +37,7 @@ static pid_t target_pid = -1;
37static int inherit = 1; 37static int inherit = 1;
38static int force = 0; 38static int force = 0;
39static int append_file = 0; 39static int append_file = 0;
40static int call_graph = 0;
40static int verbose = 0; 41static int verbose = 0;
41 42
42static long samples; 43static long samples;
@@ -351,11 +352,16 @@ static void create_counter(int counter, int cpu, pid_t pid)
351 int track = 1; 352 int track = 1;
352 353
353 attr->sample_type = PERF_SAMPLE_IP | PERF_SAMPLE_TID; 354 attr->sample_type = PERF_SAMPLE_IP | PERF_SAMPLE_TID;
355
354 if (freq) { 356 if (freq) {
355 attr->sample_type |= PERF_SAMPLE_PERIOD; 357 attr->sample_type |= PERF_SAMPLE_PERIOD;
356 attr->freq = 1; 358 attr->freq = 1;
357 attr->sample_freq = freq; 359 attr->sample_freq = freq;
358 } 360 }
361
362 if (call_graph)
363 attr->sample_type |= PERF_SAMPLE_CALLCHAIN;
364
359 attr->mmap = track; 365 attr->mmap = track;
360 attr->comm = track; 366 attr->comm = track;
361 attr->inherit = (cpu < 0) && inherit; 367 attr->inherit = (cpu < 0) && inherit;
@@ -555,6 +561,8 @@ static const struct option options[] = {
555 "profile at this frequency"), 561 "profile at this frequency"),
556 OPT_INTEGER('m', "mmap-pages", &mmap_pages, 562 OPT_INTEGER('m', "mmap-pages", &mmap_pages,
557 "number of mmap data pages"), 563 "number of mmap data pages"),
564 OPT_BOOLEAN('g', "call-graph", &call_graph,
565 "do call-graph (stack chain/backtrace) recording"),
558 OPT_BOOLEAN('v', "verbose", &verbose, 566 OPT_BOOLEAN('v', "verbose", &verbose,
559 "be more verbose (show counter open errors, etc)"), 567 "be more verbose (show counter open errors, etc)"),
560 OPT_END() 568 OPT_END()