Hi Arnaldo,

Could you please apply this fix?

Thanks,
Kan

On 5/7/2019 9:16 AM, [email protected] wrote:
From: Kan Liang <[email protected]>

Perf cannot parse UPI events.

     #perf stat -e UPI_DATA_BANDWIDTH_TX
     event syntax error: 'UPI_DATA_BANDWIDTH_TX'
                      \___ parser error
     Run 'perf list' for a list of valid events

The JSON lists call the box UPI LL, while perf calls it upi.
Add conversion support to json to convert the unit properly.

Signed-off-by: Kan Liang <[email protected]>
---
  tools/perf/pmu-events/jevents.c | 1 +
  1 file changed, 1 insertion(+)

diff --git a/tools/perf/pmu-events/jevents.c b/tools/perf/pmu-events/jevents.c
index 68c92bb..daaea50 100644
--- a/tools/perf/pmu-events/jevents.c
+++ b/tools/perf/pmu-events/jevents.c
@@ -235,6 +235,7 @@ static struct map {
        { "iMPH-U", "uncore_arb" },
        { "CPU-M-CF", "cpum_cf" },
        { "CPU-M-SF", "cpum_sf" },
+       { "UPI LL", "uncore_upi" },
        {}
  };

Reply via email to