Linux 5.1.15
[linux/fpc-iii.git] / tools / perf / util / sample-raw.c
blobc21e1311fb0f19a4b7d9c9557e3e70ce881c1455
1 /* SPDX-License-Identifier: GPL-2.0 */
3 #include <string.h>
4 #include "evlist.h"
5 #include "env.h"
6 #include "sample-raw.h"
8 /*
9 * Check platform the perf data file was created on and perform platform
10 * specific interpretation.
12 void perf_evlist__init_trace_event_sample_raw(struct perf_evlist *evlist)
14 const char *arch_pf = perf_env__arch(evlist->env);
16 if (arch_pf && !strcmp("s390", arch_pf))
17 evlist->trace_event_sample_raw = perf_evlist__s390_sample_raw;