mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-11-25 06:40:10 +00:00
Revert "powerpc/perf: Use pmc_overflow() to detect rolled back events"
This reverts commit 813312110b.
This revert was requested by the author of the patch as it seems
to cause system hangs with some low frequency events
This commit is contained in:
parent
1867353325
commit
72523d8082
1 changed files with 1 additions and 1 deletions
|
|
@ -1463,7 +1463,7 @@ static void perf_event_interrupt(struct pt_regs *regs)
|
||||||
if (!event->hw.idx || is_limited_pmc(event->hw.idx))
|
if (!event->hw.idx || is_limited_pmc(event->hw.idx))
|
||||||
continue;
|
continue;
|
||||||
val = read_pmc(event->hw.idx);
|
val = read_pmc(event->hw.idx);
|
||||||
if (pmc_overflow(val)) {
|
if ((int)val < 0) {
|
||||||
/* event has overflowed */
|
/* event has overflowed */
|
||||||
found = 1;
|
found = 1;
|
||||||
record_and_restart(event, val, regs);
|
record_and_restart(event, val, regs);
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue