aboutsummaryrefslogtreecommitdiffstats
path: root/kernel/perf_counter.c
diff options
context:
space:
mode:
authorPeter Zijlstra <a.p.zijlstra@chello.nl>2009-03-13 11:43:47 -0400
committerIngo Molnar <mingo@elte.hu>2009-04-06 03:29:46 -0400
commit039fc91e064b81c2820ff16c304be5aba35fd126 (patch)
tree2167c0dfeac53bb52dfb078f23de4896249b4118 /kernel/perf_counter.c
parent592903cdcbf606a838056bae6d03fc557806c914 (diff)
perf_counter: fix hrtimer sampling
Impact: fix deadlock with perfstat Fix for the perfstat fubar.. We cannot unconditionally call hrtimer_cancel() without ever having done hrtimer_init() on the thing. Signed-off-by: Peter Zijlstra <a.p.zijlstra@chello.nl> Orig-LKML-Reference: <1236959027.22447.149.camel@twins> Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'kernel/perf_counter.c')
-rw-r--r--kernel/perf_counter.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/kernel/perf_counter.c b/kernel/perf_counter.c
index 8d6ecfa64c0..d6cc22271ef 100644
--- a/kernel/perf_counter.c
+++ b/kernel/perf_counter.c
@@ -1571,9 +1571,9 @@ static int cpu_clock_perf_counter_enable(struct perf_counter *counter)
1571 int cpu = raw_smp_processor_id(); 1571 int cpu = raw_smp_processor_id();
1572 1572
1573 atomic64_set(&hwc->prev_count, cpu_clock(cpu)); 1573 atomic64_set(&hwc->prev_count, cpu_clock(cpu));
1574 hrtimer_init(&hwc->hrtimer, CLOCK_MONOTONIC, HRTIMER_MODE_REL);
1575 hwc->hrtimer.function = perf_swcounter_hrtimer;
1574 if (hwc->irq_period) { 1576 if (hwc->irq_period) {
1575 hrtimer_init(&hwc->hrtimer, CLOCK_MONOTONIC, HRTIMER_MODE_REL);
1576 hwc->hrtimer.function = perf_swcounter_hrtimer;
1577 __hrtimer_start_range_ns(&hwc->hrtimer, 1577 __hrtimer_start_range_ns(&hwc->hrtimer,
1578 ns_to_ktime(hwc->irq_period), 0, 1578 ns_to_ktime(hwc->irq_period), 0,
1579 HRTIMER_MODE_REL, 0); 1579 HRTIMER_MODE_REL, 0);
@@ -1635,9 +1635,9 @@ static int task_clock_perf_counter_enable(struct perf_counter *counter)
1635 struct hw_perf_counter *hwc = &counter->hw; 1635 struct hw_perf_counter *hwc = &counter->hw;
1636 1636
1637 atomic64_set(&hwc->prev_count, task_clock_perf_counter_val(counter, 0)); 1637 atomic64_set(&hwc->prev_count, task_clock_perf_counter_val(counter, 0));
1638 hrtimer_init(&hwc->hrtimer, CLOCK_MONOTONIC, HRTIMER_MODE_REL);
1639 hwc->hrtimer.function = perf_swcounter_hrtimer;
1638 if (hwc->irq_period) { 1640 if (hwc->irq_period) {
1639 hrtimer_init(&hwc->hrtimer, CLOCK_MONOTONIC, HRTIMER_MODE_REL);
1640 hwc->hrtimer.function = perf_swcounter_hrtimer;
1641 __hrtimer_start_range_ns(&hwc->hrtimer, 1641 __hrtimer_start_range_ns(&hwc->hrtimer,
1642 ns_to_ktime(hwc->irq_period), 0, 1642 ns_to_ktime(hwc->irq_period), 0,
1643 HRTIMER_MODE_REL, 0); 1643 HRTIMER_MODE_REL, 0);