aboutsummaryrefslogtreecommitdiffstats
path: root/kernel/perf_event.c
diff options
context:
space:
mode:
authorStephane Eranian <eranian@google.com>2010-02-08 10:06:01 -0500
committerIngo Molnar <mingo@elte.hu>2010-02-26 04:56:53 -0500
commitd76a0812ac4139ceb54daab3cc70e1bd8bd9d43a (patch)
tree81413e2271b310a698bec191a8f0ded5cdcfa2de /kernel/perf_event.c
parent3a0304e90aa5a2c0c308a05d28f7d109a48d8539 (diff)
perf_events: Add new start/stop PMU callbacks
In certain situations, the kernel may need to stop and start the same event rapidly. The current PMU callbacks do not distinguish between stop and release (i.e., stop + free the resource). Thus, a counter may be released, then it will be immediately re-acquired. Event scheduling will again take place with no guarantee to assign the same counter. On some processors, this may event yield to failure to assign the event back due to competion between cores. This patch is adding a new pair of callback to stop and restart a counter without actually release the underlying counter resource. On stop, the counter is stopped, its values saved and that's it. On start, the value is reloaded and counter is restarted (on x86, actual restart is delayed until perf_enable()). Signed-off-by: Stephane Eranian <eranian@google.com> [ added fallback to ->enable/->disable for all other PMUs fixed x86_pmu_start() to call x86_pmu.enable() merged __x86_pmu_disable into x86_pmu_stop() ] Signed-off-by: Peter Zijlstra <a.p.zijlstra@chello.nl> LKML-Reference: <4b703875.0a04d00a.7896.ffffb824@mx.google.com> Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'kernel/perf_event.c')
-rw-r--r--kernel/perf_event.c20
1 files changed, 18 insertions, 2 deletions
diff --git a/kernel/perf_event.c b/kernel/perf_event.c
index 5a69abb05ac3..74c60021cdbc 100644
--- a/kernel/perf_event.c
+++ b/kernel/perf_event.c
@@ -1493,6 +1493,22 @@ do { \
1493 return div64_u64(dividend, divisor); 1493 return div64_u64(dividend, divisor);
1494} 1494}
1495 1495
1496static void perf_event_stop(struct perf_event *event)
1497{
1498 if (!event->pmu->stop)
1499 return event->pmu->disable(event);
1500
1501 return event->pmu->stop(event);
1502}
1503
1504static int perf_event_start(struct perf_event *event)
1505{
1506 if (!event->pmu->start)
1507 return event->pmu->enable(event);
1508
1509 return event->pmu->start(event);
1510}
1511
1496static void perf_adjust_period(struct perf_event *event, u64 nsec, u64 count) 1512static void perf_adjust_period(struct perf_event *event, u64 nsec, u64 count)
1497{ 1513{
1498 struct hw_perf_event *hwc = &event->hw; 1514 struct hw_perf_event *hwc = &event->hw;
@@ -1513,9 +1529,9 @@ static void perf_adjust_period(struct perf_event *event, u64 nsec, u64 count)
1513 1529
1514 if (atomic64_read(&hwc->period_left) > 8*sample_period) { 1530 if (atomic64_read(&hwc->period_left) > 8*sample_period) {
1515 perf_disable(); 1531 perf_disable();
1516 event->pmu->disable(event); 1532 perf_event_stop(event);
1517 atomic64_set(&hwc->period_left, 0); 1533 atomic64_set(&hwc->period_left, 0);
1518 event->pmu->enable(event); 1534 perf_event_start(event);
1519 perf_enable(); 1535 perf_enable();
1520 } 1536 }
1521} 1537}