diff options
author | Peter Zijlstra <a.p.zijlstra@chello.nl> | 2009-03-13 07:21:28 -0400 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2009-04-06 03:29:29 -0400 |
commit | 595258aaeac4cc6e187b98b1bf29bb176febe763 (patch) | |
tree | 8c385524820320312d0c3aae32f9f9b41eec9f4a | |
parent | f541ae326fa120fa5c57433e4d9a133df212ce41 (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.c | 2 |
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 | /* |