Loading...
Note: File does not exist in v4.17.
1/* SPDX-License-Identifier: GPL-2.0 */
2
3#include <string.h>
4#include "evlist.h"
5#include "env.h"
6#include "sample-raw.h"
7
8/*
9 * Check platform the perf data file was created on and perform platform
10 * specific interpretation.
11 */
12void perf_evlist__init_trace_event_sample_raw(struct evlist *evlist)
13{
14 const char *arch_pf = perf_env__arch(evlist->env);
15
16 if (arch_pf && !strcmp("s390", arch_pf))
17 evlist->trace_event_sample_raw = perf_evlist__s390_sample_raw;
18}