projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
fc006cf
)
perf/x86-ibs: Extend hw period that triggers overflow
author
Robert Richter
<robert.richter@amd.com>
Mon, 2 Apr 2012 18:19:15 +0000
(20:19 +0200)
committer
Ingo Molnar
<mingo@kernel.org>
Wed, 9 May 2012 13:23:15 +0000
(15:23 +0200)
If the last hw period is too short we might hit the irq handler which
biases the results. Thus try to have a max last period that triggers
the sw overflow.
Signed-off-by: Robert Richter <robert.richter@amd.com>
Signed-off-by: Peter Zijlstra <a.p.zijlstra@chello.nl>
Link:
http://lkml.kernel.org/r/1333390758-10893-10-git-send-email-robert.richter@amd.com
Signed-off-by: Ingo Molnar <mingo@kernel.org>
arch/x86/kernel/cpu/perf_event_amd_ibs.c
patch
|
blob
|
history
diff --git
a/arch/x86/kernel/cpu/perf_event_amd_ibs.c
b/arch/x86/kernel/cpu/perf_event_amd_ibs.c
index 3e32908292a7e9d0ab05d56bf22ceb873122df6d..cb51a3e558703e7c910332c23a438d0d34514bfd 100644
(file)
--- a/
arch/x86/kernel/cpu/perf_event_amd_ibs.c
+++ b/
arch/x86/kernel/cpu/perf_event_amd_ibs.c
@@
-85,8
+85,19
@@
perf_event_set_period(struct hw_perf_event *hwc, u64 min, u64 max, u64 *hw_perio
overflow = 1;
}
- if (left > max)
- left = max;
+ /*
+ * If the hw period that triggers the sw overflow is too short
+ * we might hit the irq handler. This biases the results.
+ * Thus we shorten the next-to-last period and set the last
+ * period to the max period.
+ */
+ if (left > max) {
+ left -= max;
+ if (left > max)
+ left = max;
+ else if (left < min)
+ left = min;
+ }
*hw_period = (u64)left;