]> Git Repo - linux.git/commit
ARM: 6835/1: perf: ensure overflows aren't missed due to IRQ latency
authorWill Deacon <[email protected]>
Fri, 25 Mar 2011 16:12:37 +0000 (17:12 +0100)
committerRussell King <[email protected]>
Sat, 26 Mar 2011 10:06:09 +0000 (10:06 +0000)
commita737823d37666255e3e74ce84bc9611a038e0888
tree0424691dc1af593e08877cb1ee2b2e59334f532f
parent574b69cbb633037a9c305d2993aeb680f4a8badd
ARM: 6835/1: perf: ensure overflows aren't missed due to IRQ latency

If a counter overflows during a perf stat profiling run it may overtake
the last known value of the counter:

    0        prev     new                0xffffffff
    |----------|-------|----------------------|

In this case, the number of events that have occurred is
(0xffffffff - prev) + new. Unfortunately, the event update code will
not realise an overflow has occurred and will instead report the event
delta as (new - prev) which may be considerably smaller than the real
count.

This patch adds an extra argument to armpmu_event_update which indicates
whether or not an overflow has occurred. If an overflow has occurred
then we use the maximum period of the counter to calculate the elapsed
events.

Acked-by: Jamie Iles <[email protected]>
Reported-by: Ashwin Chaugule <[email protected]>
Signed-off-by: Will Deacon <[email protected]>
Signed-off-by: Russell King <[email protected]>
arch/arm/kernel/perf_event.c
arch/arm/kernel/perf_event_v6.c
arch/arm/kernel/perf_event_v7.c
arch/arm/kernel/perf_event_xscale.c
This page took 0.058321 seconds and 4 git commands to generate.