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 v6.8-rc6 12 lines 305 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. */ 6const char *perf_mem_events__name(int i, const char *pmu_name __maybe_unused) 7{ 8 if (i == PERF_MEM_EVENTS__LOAD) 9 return "cpu/mem-loads/"; 10 11 return "cpu/mem-stores/"; 12}