diff options
author | Adrian Hunter <adrian.hunter@intel.com> | 2015-04-09 11:53:41 -0400 |
---|---|---|
committer | Arnaldo Carvalho de Melo <acme@redhat.com> | 2015-04-29 09:37:49 -0400 |
commit | 4025ea4024c271cc0d993b8641249dce33a63fcc (patch) | |
tree | 6e7ef1d0f6125bec0f3b7442dcf50d7205f57bfe /tools/perf/util/header.c | |
parent | d4ae42139289cbe38d5b84fa1558161d330d6e54 (diff) |
perf header: Add AUX area tracing feature
Add a feature to indicate that a perf.data file contains AUX area data.
Signed-off-by: Adrian Hunter <adrian.hunter@intel.com>
Acked-by: Jiri Olsa <jolsa@kernel.org>
Cc: David Ahern <dsahern@gmail.com>
Cc: Frederic Weisbecker <fweisbec@gmail.com>
Cc: Namhyung Kim <namhyung@gmail.com>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Stephane Eranian <eranian@google.com>
Link: http://lkml.kernel.org/r/1428594864-29309-2-git-send-email-adrian.hunter@intel.com
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools/perf/util/header.c')
-rw-r--r-- | tools/perf/util/header.c | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/tools/perf/util/header.c b/tools/perf/util/header.c index 918fd8ae2d80..589c28028379 100644 --- a/tools/perf/util/header.c +++ b/tools/perf/util/header.c | |||
@@ -869,6 +869,13 @@ static int write_branch_stack(int fd __maybe_unused, | |||
869 | return 0; | 869 | return 0; |
870 | } | 870 | } |
871 | 871 | ||
872 | static int write_auxtrace(int fd __maybe_unused, | ||
873 | struct perf_header *h __maybe_unused, | ||
874 | struct perf_evlist *evlist __maybe_unused) | ||
875 | { | ||
876 | return 0; | ||
877 | } | ||
878 | |||
872 | static void print_hostname(struct perf_header *ph, int fd __maybe_unused, | 879 | static void print_hostname(struct perf_header *ph, int fd __maybe_unused, |
873 | FILE *fp) | 880 | FILE *fp) |
874 | { | 881 | { |
@@ -1151,6 +1158,12 @@ static void print_branch_stack(struct perf_header *ph __maybe_unused, | |||
1151 | fprintf(fp, "# contains samples with branch stack\n"); | 1158 | fprintf(fp, "# contains samples with branch stack\n"); |
1152 | } | 1159 | } |
1153 | 1160 | ||
1161 | static void print_auxtrace(struct perf_header *ph __maybe_unused, | ||
1162 | int fd __maybe_unused, FILE *fp) | ||
1163 | { | ||
1164 | fprintf(fp, "# contains AUX area data (e.g. instruction trace)\n"); | ||
1165 | } | ||
1166 | |||
1154 | static void print_pmu_mappings(struct perf_header *ph, int fd __maybe_unused, | 1167 | static void print_pmu_mappings(struct perf_header *ph, int fd __maybe_unused, |
1155 | FILE *fp) | 1168 | FILE *fp) |
1156 | { | 1169 | { |
@@ -1861,6 +1874,7 @@ static const struct feature_ops feat_ops[HEADER_LAST_FEATURE] = { | |||
1861 | FEAT_OPA(HEADER_BRANCH_STACK, branch_stack), | 1874 | FEAT_OPA(HEADER_BRANCH_STACK, branch_stack), |
1862 | FEAT_OPP(HEADER_PMU_MAPPINGS, pmu_mappings), | 1875 | FEAT_OPP(HEADER_PMU_MAPPINGS, pmu_mappings), |
1863 | FEAT_OPP(HEADER_GROUP_DESC, group_desc), | 1876 | FEAT_OPP(HEADER_GROUP_DESC, group_desc), |
1877 | FEAT_OPA(HEADER_AUXTRACE, auxtrace), | ||
1864 | }; | 1878 | }; |
1865 | 1879 | ||
1866 | struct header_print_data { | 1880 | struct header_print_data { |