1 /* SPDX-License-Identifier: GPL-2.0 */ 1 2 3 #include <string.h> 4 #include <linux/string.h> 5 #include "evlist.h" 6 #include "env.h" 7 #include "header.h" 8 #include "sample-raw.h" 9 10 /* 11 * Check platform the perf data file was creat 12 * specific interpretation. 13 */ 14 void evlist__init_trace_event_sample_raw(struc 15 { 16 const char *arch_pf = perf_env__arch(e 17 const char *cpuid = perf_env__cpuid(ev 18 19 if (arch_pf && !strcmp("s390", arch_pf 20 evlist->trace_event_sample_raw 21 else if (arch_pf && !strcmp("x86", arc 22 cpuid && strstarts(cpuid, "Au 23 evlist__has_amd_ibs(evlist)) 24 evlist->trace_event_sample_raw 25 } 26 } 27
Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.