Re: [PATCH] perf: xgene: Fix IOB SLOW PMU parser error

2018-06-07 Thread Will Deacon
On Wed, Jun 06, 2018 at 02:06:54PM -0700, Hoan Tran wrote: > This patch fixes the below parser error of the IOB SLOW PMU. > > # perf stat -a -e iob-slow0/cycle-count/ sleep 1 > evenf syntax error: 'iob-slow0/cycle-count/' > \___ parser error > > It

[PATCH] perf: xgene: Fix IOB SLOW PMU parser error

2018-06-06 Thread Hoan Tran
This patch fixes the below parser error of the IOB SLOW PMU. # perf stat -a -e iob-slow0/cycle-count/ sleep 1 evenf syntax error: 'iob-slow0/cycle-count/' \___ parser error It replaces the "-" character by "_" character inside the PMU name. Signed