Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v5.18 12 lines 311 B view raw
1// SPDX-License-Identifier: GPL-2.0 2#include "map_symbol.h" 3#include "mem-events.h" 4 5/* PowerPC does not support 'ldlat' parameter. */ 6char *perf_mem_events__name(int i, char *pmu_name __maybe_unused) 7{ 8 if (i == PERF_MEM_EVENTS__LOAD) 9 return (char *) "cpu/mem-loads/"; 10 11 return (char *) "cpu/mem-stores/"; 12}