aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPeter Zijlstra <a.p.zijlstra@chello.nl>2009-03-13 07:21:28 -0400
committerIngo Molnar <mingo@elte.hu>2009-04-06 03:29:29 -0400
commit595258aaeac4cc6e187b98b1bf29bb176febe763 (patch)
tree8c385524820320312d0c3aae32f9f9b41eec9f4a
parentf541ae326fa120fa5c57433e4d9a133df212ce41 (diff)
perf_counter: x86: fix 32-bit irq_period assumption
No need to assume the irq_period is 32bit. Signed-off-by: Peter Zijlstra <a.p.zijlstra@chello.nl> Signed-off-by: Ingo Molnar <mingo@elte.hu>
-rw-r--r--arch/x86/kernel/cpu/perf_counter.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/kernel/cpu/perf_counter.c b/arch/x86/kernel/cpu/perf_counter.c
index 155bc3c239b6..1cedc3468ce5 100644
--- a/arch/x86/kernel/cpu/perf_counter.c
+++ b/arch/x86/kernel/cpu/perf_counter.c
@@ -449,7 +449,7 @@ __hw_perf_counter_set_period(struct perf_counter *counter,
449 struct hw_perf_counter *hwc, int idx) 449 struct hw_perf_counter *hwc, int idx)
450{ 450{
451 s64 left = atomic64_read(&hwc->period_left); 451 s64 left = atomic64_read(&hwc->period_left);
452 s32 period = hwc->irq_period; 452 s64 period = hwc->irq_period;
453 int err; 453 int err;
454 454
455 /* 455 /*