mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-05-24 10:39:52 +00:00
12 lines
256 B
C
12 lines
256 B
C
![]() |
// SPDX-License-Identifier: GPL-2.0
|
||
|
#include "mem-events.h"
|
||
|
|
||
|
/* PowerPC does not support 'ldlat' parameter. */
|
||
|
char *perf_mem_events__name(int i)
|
||
|
{
|
||
|
if (i == PERF_MEM_EVENTS__LOAD)
|
||
|
return (char *) "cpu/mem-loads/";
|
||
|
|
||
|
return (char *) "cpu/mem-stores/";
|
||
|
}
|