Skip to content

Commit 19684e9

Browse files
stkidacmel
authored andcommitted
perf: arm-spe: Fix check error when synthesizing events
In arm_spe_read_record(), when we are processing an events packet, 'decoder->packet.index' is the length of payload, which has been transformed in payloadlen(). So correct the check of 'idx'. Signed-off-by: Wei Li <[email protected]> Reviewed-by: Leo Yan <[email protected]> Cc: Alexander Shishkin <[email protected]> Cc: Hanjun Guo <[email protected]> Cc: James Clark <[email protected]> Cc: Jiri Olsa <[email protected]> Cc: Mark Rutland <[email protected]> Cc: Mathieu Poirier <[email protected]> Cc: Namhyung Kim <[email protected]> Cc: Peter Zijlstra <[email protected]> Link: http://lore.kernel.org/lkml/[email protected] Signed-off-by: Arnaldo Carvalho de Melo <[email protected]>
1 parent 783abbd commit 19684e9

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tools/perf/util/arm-spe-decoder/arm-spe-decoder.c

+3-3
Original file line numberDiff line numberDiff line change
@@ -182,15 +182,15 @@ static int arm_spe_read_record(struct arm_spe_decoder *decoder)
182182
if (payload & BIT(EV_TLB_ACCESS))
183183
decoder->record.type |= ARM_SPE_TLB_ACCESS;
184184

185-
if ((idx == 1 || idx == 2 || idx == 3) &&
185+
if ((idx == 2 || idx == 4 || idx == 8) &&
186186
(payload & BIT(EV_LLC_MISS)))
187187
decoder->record.type |= ARM_SPE_LLC_MISS;
188188

189-
if ((idx == 1 || idx == 2 || idx == 3) &&
189+
if ((idx == 2 || idx == 4 || idx == 8) &&
190190
(payload & BIT(EV_LLC_ACCESS)))
191191
decoder->record.type |= ARM_SPE_LLC_ACCESS;
192192

193-
if ((idx == 1 || idx == 2 || idx == 3) &&
193+
if ((idx == 2 || idx == 4 || idx == 8) &&
194194
(payload & BIT(EV_REMOTE_ACCESS)))
195195
decoder->record.type |= ARM_SPE_REMOTE_ACCESS;
196196

0 commit comments

Comments
 (0)