]> Git Repo - linux.git/commitdiff
perf mem: Print "LFB/MAB" for PERF_MEM_LVLNUM_LFB
authorRavi Bangoria <[email protected]>
Thu, 6 Oct 2022 15:39:45 +0000 (21:09 +0530)
committerArnaldo Carvalho de Melo <[email protected]>
Thu, 6 Oct 2022 19:32:05 +0000 (16:32 -0300)
A hw component to track outstanding L1 Data Cache misses is called LFB
(Line Fill Buffer) on Intel and Arm. However similar component exists on
other arch with different names, for ex, it's called MAB (Miss Address
Buffer) on AMD. Use 'LFB/MAB' instead of just 'LFB'.

Signed-off-by: Ravi Bangoria <[email protected]>
Cc: Alexander Shishkin <[email protected]>
Cc: Ali Saidi <[email protected]>
Cc: Ananth Narayan <[email protected]>
Cc: Andi Kleen <[email protected]>
Cc: Borislav Petkov <[email protected]>
Cc: Dave Hansen <[email protected]>
Cc: H. Peter Anvin <[email protected]>
Cc: Ian Rogers <[email protected]>
Cc: Ingo Molnar <[email protected]>
Cc: Jiri Olsa <[email protected]>
Cc: Joe Mario <[email protected]>
Cc: Kan Liang <[email protected]>
Cc: Kim Phillips <[email protected]>
Cc: Leo Yan <[email protected]>
Cc: Mark Rutland <[email protected]>
Cc: Namhyung Kim <[email protected]>
Cc: Peter Zijlstra <[email protected]>
Cc: Sandipan Das <[email protected]>
Cc: Santosh Shukla <[email protected]>
Cc: Stephane Eranian <[email protected]>
Cc: Thomas Gleixner <[email protected]>
Cc: [email protected]
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Arnaldo Carvalho de Melo <[email protected]>
tools/perf/util/mem-events.c

index 6c7feecd2e049d29c13e413d35b72e9195273da5..b3a91093069a57154437173897141e32f6e173d2 100644 (file)
@@ -282,7 +282,7 @@ static const char * const mem_lvl[] = {
        "HIT",
        "MISS",
        "L1",
-       "LFB",
+       "LFB/MAB",
        "L2",
        "L3",
        "Local RAM",
@@ -298,7 +298,7 @@ static const char * const mem_lvlnum[] = {
        [PERF_MEM_LVLNUM_CXL] = "CXL",
        [PERF_MEM_LVLNUM_IO] = "I/O",
        [PERF_MEM_LVLNUM_ANY_CACHE] = "Any cache",
-       [PERF_MEM_LVLNUM_LFB] = "LFB",
+       [PERF_MEM_LVLNUM_LFB] = "LFB/MAB",
        [PERF_MEM_LVLNUM_RAM] = "RAM",
        [PERF_MEM_LVLNUM_PMEM] = "PMEM",
        [PERF_MEM_LVLNUM_NA] = "N/A",
This page took 0.062822 seconds and 4 git commands to generate.