Merge tag 'block-5.11-2021-01-10' of git://git.kernel.dk/linux-block
[linux/fpc-iii.git] / tools / perf / util / sample-raw.c
blobcde5cd3ce49bf8c90e4ec720cf13d3a95586ac37
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 evlist__init_trace_event_sample_raw(struct 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 = evlist__s390_sample_raw;