diff options
author | Kan Liang <kan.liang@intel.com> | 2015-07-29 05:42:12 -0400 |
---|---|---|
committer | Arnaldo Carvalho de Melo <acme@redhat.com> | 2015-07-29 16:18:45 -0300 |
commit | c421e80b1073e2ed58842ee6ee493386ace2d9eb (patch) | |
tree | 47eaa8a3ed5684a3506f73f7bf33eb118dcabf58 /tools/perf/perf.h | |
parent | ee4c75887d12bcd6ecd897291797d969256f39ca (diff) | |
download | op-kernel-dev-c421e80b1073e2ed58842ee6ee493386ace2d9eb.zip op-kernel-dev-c421e80b1073e2ed58842ee6ee493386ace2d9eb.tar.gz |
perf tools: Introduce callgraph_set for callgraph option
Introduce callgraph_set to indicate whether the callgraph option was set
by user.
Signed-off-by: Kan Liang <kan.liang@intel.com>
Cc: Andi Kleen <ak@linux.intel.com>
Cc: Jiri Olsa <jolsa@kernel.org>
Cc: Namhyung Kim <namhyung@kernel.org>
Link: http://lkml.kernel.org/r/1438162936-59698-4-git-send-email-kan.liang@intel.com
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools/perf/perf.h')
-rw-r--r-- | tools/perf/perf.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/perf/perf.h b/tools/perf/perf.h index cf459f8..cccb4cf 100644 --- a/tools/perf/perf.h +++ b/tools/perf/perf.h @@ -52,6 +52,7 @@ struct record_opts { bool sample_weight; bool sample_time; bool sample_time_set; + bool callgraph_set; bool period; bool sample_intr_regs; bool running_time; |