File tree 1 file changed +3
-3
lines changed
tools/perf/util/arm-spe-decoder
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -182,15 +182,15 @@ static int arm_spe_read_record(struct arm_spe_decoder *decoder)
182
182
if (payload & BIT (EV_TLB_ACCESS ))
183
183
decoder -> record .type |= ARM_SPE_TLB_ACCESS ;
184
184
185
- if ((idx == 1 || idx == 2 || idx == 3 ) &&
185
+ if ((idx == 2 || idx == 4 || idx == 8 ) &&
186
186
(payload & BIT (EV_LLC_MISS )))
187
187
decoder -> record .type |= ARM_SPE_LLC_MISS ;
188
188
189
- if ((idx == 1 || idx == 2 || idx == 3 ) &&
189
+ if ((idx == 2 || idx == 4 || idx == 8 ) &&
190
190
(payload & BIT (EV_LLC_ACCESS )))
191
191
decoder -> record .type |= ARM_SPE_LLC_ACCESS ;
192
192
193
- if ((idx == 1 || idx == 2 || idx == 3 ) &&
193
+ if ((idx == 2 || idx == 4 || idx == 8 ) &&
194
194
(payload & BIT (EV_REMOTE_ACCESS )))
195
195
decoder -> record .type |= ARM_SPE_REMOTE_ACCESS ;
196
196
You can’t perform that action at this time.
0 commit comments