From: Will Deacon Date: Wed, 17 Oct 2012 11:01:34 +0000 (+0100) Subject: ARM: 7556/1: perf: fix updated event period in response to PERF_EVENT_IOC_PERIOD X-Git-Tag: v3.7-rc5~21^2~8 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=3581fe0ef37ce12ac7a4f74831168352ae848edc;p=profile%2Fivi%2Fkernel-adaptation-intel-automotive.git ARM: 7556/1: perf: fix updated event period in response to PERF_EVENT_IOC_PERIOD The PERF_EVENT_IOC_PERIOD ioctl command can be used to change the sample period of a running perf_event. Consequently, when calculating the next event period, the new period will only be considered after the previous one has overflowed. This patch changes the calculation of the remaining event ticks so that they are offset if the period has changed. Cc: Peter Zijlstra Reported-by: Andreas Sandberg Signed-off-by: Will Deacon Signed-off-by: Russell King --- diff --git a/arch/arm/kernel/perf_event.c b/arch/arm/kernel/perf_event.c index 93971b1..53c0304 100644 --- a/arch/arm/kernel/perf_event.c +++ b/arch/arm/kernel/perf_event.c @@ -96,6 +96,10 @@ armpmu_event_set_period(struct perf_event *event, s64 period = hwc->sample_period; int ret = 0; + /* The period may have been changed by PERF_EVENT_IOC_PERIOD */ + if (unlikely(period != hwc->last_period)) + left = period - (hwc->last_period - left); + if (unlikely(left <= -period)) { left = period; local64_set(&hwc->period_left, left);