|
@@ -869,6 +869,13 @@ static int write_branch_stack(int fd __maybe_unused,
|
|
|
return 0;
|
|
|
}
|
|
|
|
|
|
+static int write_auxtrace(int fd __maybe_unused,
|
|
|
+ struct perf_header *h __maybe_unused,
|
|
|
+ struct perf_evlist *evlist __maybe_unused)
|
|
|
+{
|
|
|
+ return 0;
|
|
|
+}
|
|
|
+
|
|
|
static void print_hostname(struct perf_header *ph, int fd __maybe_unused,
|
|
|
FILE *fp)
|
|
|
{
|
|
@@ -1151,6 +1158,12 @@ static void print_branch_stack(struct perf_header *ph __maybe_unused,
|
|
|
fprintf(fp, "# contains samples with branch stack\n");
|
|
|
}
|
|
|
|
|
|
+static void print_auxtrace(struct perf_header *ph __maybe_unused,
|
|
|
+ int fd __maybe_unused, FILE *fp)
|
|
|
+{
|
|
|
+ fprintf(fp, "# contains AUX area data (e.g. instruction trace)\n");
|
|
|
+}
|
|
|
+
|
|
|
static void print_pmu_mappings(struct perf_header *ph, int fd __maybe_unused,
|
|
|
FILE *fp)
|
|
|
{
|
|
@@ -1861,6 +1874,7 @@ static const struct feature_ops feat_ops[HEADER_LAST_FEATURE] = {
|
|
|
FEAT_OPA(HEADER_BRANCH_STACK, branch_stack),
|
|
|
FEAT_OPP(HEADER_PMU_MAPPINGS, pmu_mappings),
|
|
|
FEAT_OPP(HEADER_GROUP_DESC, group_desc),
|
|
|
+ FEAT_OPA(HEADER_AUXTRACE, auxtrace),
|
|
|
};
|
|
|
|
|
|
struct header_print_data {
|