blob: 4c86a636976470b29913d9c63f4c711fb5fb6cb4 [file] [log] [blame]
Thomas Gleixner0793a612008-12-04 20:12:29 +01001/*
2 * Performance counter core code
3 *
Ingo Molnar98144512009-04-29 14:52:50 +02004 * Copyright (C) 2008 Thomas Gleixner <tglx@linutronix.de>
5 * Copyright (C) 2008-2009 Red Hat, Inc., Ingo Molnar
6 * Copyright (C) 2008-2009 Red Hat, Inc., Peter Zijlstra <pzijlstr@redhat.com>
Paul Mackerrasc5dd0162009-04-30 09:48:16 +10007 * Copyright © 2009 Paul Mackerras, IBM Corp. <paulus@au1.ibm.com>
Peter Zijlstra7b732a72009-03-23 18:22:10 +01008 *
9 * For licensing details see kernel-base/COPYING
Thomas Gleixner0793a612008-12-04 20:12:29 +010010 */
11
12#include <linux/fs.h>
Peter Zijlstrab9cacc72009-03-25 12:30:22 +010013#include <linux/mm.h>
Thomas Gleixner0793a612008-12-04 20:12:29 +010014#include <linux/cpu.h>
15#include <linux/smp.h>
Ingo Molnar04289bb2008-12-11 08:38:42 +010016#include <linux/file.h>
Thomas Gleixner0793a612008-12-04 20:12:29 +010017#include <linux/poll.h>
18#include <linux/sysfs.h>
19#include <linux/ptrace.h>
20#include <linux/percpu.h>
Peter Zijlstrab9cacc72009-03-25 12:30:22 +010021#include <linux/vmstat.h>
22#include <linux/hardirq.h>
23#include <linux/rculist.h>
Thomas Gleixner0793a612008-12-04 20:12:29 +010024#include <linux/uaccess.h>
25#include <linux/syscalls.h>
26#include <linux/anon_inodes.h>
Ingo Molnaraa9c4c02008-12-17 14:10:57 +010027#include <linux/kernel_stat.h>
Thomas Gleixner0793a612008-12-04 20:12:29 +010028#include <linux/perf_counter.h>
Peter Zijlstra0a4a9392009-03-30 19:07:05 +020029#include <linux/dcache.h>
Thomas Gleixner0793a612008-12-04 20:12:29 +010030
Tim Blechmann4e193bd2009-03-14 14:29:25 +010031#include <asm/irq_regs.h>
32
Thomas Gleixner0793a612008-12-04 20:12:29 +010033/*
34 * Each CPU has a list of per CPU counters:
35 */
36DEFINE_PER_CPU(struct perf_cpu_context, perf_cpu_context);
37
Ingo Molnar088e2852008-12-14 20:21:00 +010038int perf_max_counters __read_mostly = 1;
Thomas Gleixner0793a612008-12-04 20:12:29 +010039static int perf_reserved_percpu __read_mostly;
40static int perf_overcommit __read_mostly = 1;
41
Peter Zijlstra7fc23a52009-05-08 18:52:21 +020042static atomic_t nr_counters __read_mostly;
Peter Zijlstra9ee318a2009-04-09 10:53:44 +020043static atomic_t nr_mmap_tracking __read_mostly;
44static atomic_t nr_munmap_tracking __read_mostly;
45static atomic_t nr_comm_tracking __read_mostly;
46
Peter Zijlstra1ccd1542009-04-09 10:53:45 +020047int sysctl_perf_counter_priv __read_mostly; /* do we need to be privileged */
Peter Zijlstra789f90f2009-05-15 15:19:27 +020048int sysctl_perf_counter_mlock __read_mostly = 512; /* 'free' kb per user */
Peter Zijlstra1ccd1542009-04-09 10:53:45 +020049
Thomas Gleixner0793a612008-12-04 20:12:29 +010050/*
Ingo Molnar1dce8d92009-05-04 19:23:18 +020051 * Lock for (sysadmin-configurable) counter reservations:
Thomas Gleixner0793a612008-12-04 20:12:29 +010052 */
Ingo Molnar1dce8d92009-05-04 19:23:18 +020053static DEFINE_SPINLOCK(perf_resource_lock);
Thomas Gleixner0793a612008-12-04 20:12:29 +010054
55/*
56 * Architecture provided APIs - weak aliases:
57 */
Robert Richter4aeb0b42009-04-29 12:47:03 +020058extern __weak const struct pmu *hw_perf_counter_init(struct perf_counter *counter)
Thomas Gleixner0793a612008-12-04 20:12:29 +010059{
Paul Mackerrasff6f0542009-01-09 16:19:25 +110060 return NULL;
Thomas Gleixner0793a612008-12-04 20:12:29 +010061}
62
Peter Zijlstra9e35ad32009-05-13 16:21:38 +020063void __weak hw_perf_disable(void) { barrier(); }
64void __weak hw_perf_enable(void) { barrier(); }
65
Paul Mackerras01d02872009-01-14 13:44:19 +110066void __weak hw_perf_counter_setup(int cpu) { barrier(); }
Paul Mackerras3cbed422009-01-09 16:43:42 +110067int __weak hw_perf_group_sched_in(struct perf_counter *group_leader,
68 struct perf_cpu_context *cpuctx,
69 struct perf_counter_context *ctx, int cpu)
70{
71 return 0;
72}
Thomas Gleixner0793a612008-12-04 20:12:29 +010073
Paul Mackerras4eb96fc2009-01-09 17:24:34 +110074void __weak perf_counter_print_debug(void) { }
75
Peter Zijlstra9e35ad32009-05-13 16:21:38 +020076static DEFINE_PER_CPU(int, disable_count);
77
78void __perf_disable(void)
79{
80 __get_cpu_var(disable_count)++;
81}
82
83bool __perf_enable(void)
84{
85 return !--__get_cpu_var(disable_count);
86}
87
88void perf_disable(void)
89{
90 __perf_disable();
91 hw_perf_disable();
92}
Peter Zijlstra9e35ad32009-05-13 16:21:38 +020093
94void perf_enable(void)
95{
96 if (__perf_enable())
97 hw_perf_enable();
98}
Peter Zijlstra9e35ad32009-05-13 16:21:38 +020099
Paul Mackerrasa63eaf32009-05-22 14:17:31 +1000100static void get_ctx(struct perf_counter_context *ctx)
101{
102 atomic_inc(&ctx->refcount);
103}
104
105static void put_ctx(struct perf_counter_context *ctx)
106{
Paul Mackerras564c2b22009-05-22 14:27:22 +1000107 if (atomic_dec_and_test(&ctx->refcount)) {
108 if (ctx->parent_ctx)
109 put_ctx(ctx->parent_ctx);
Paul Mackerrasa63eaf32009-05-22 14:17:31 +1000110 kfree(ctx);
Paul Mackerras564c2b22009-05-22 14:27:22 +1000111 }
Paul Mackerrasa63eaf32009-05-22 14:17:31 +1000112}
113
Peter Zijlstrafccc7142009-05-23 18:28:56 +0200114/*
115 * Add a counter from the lists for its context.
116 * Must be called with ctx->mutex and ctx->lock held.
117 */
Ingo Molnar04289bb2008-12-11 08:38:42 +0100118static void
119list_add_counter(struct perf_counter *counter, struct perf_counter_context *ctx)
120{
121 struct perf_counter *group_leader = counter->group_leader;
122
123 /*
124 * Depending on whether it is a standalone or sibling counter,
125 * add it straight to the context's counter list, or to the group
126 * leader's sibling list:
127 */
Peter Zijlstra3df5eda2009-05-08 18:52:22 +0200128 if (group_leader == counter)
Ingo Molnar04289bb2008-12-11 08:38:42 +0100129 list_add_tail(&counter->list_entry, &ctx->counter_list);
Peter Zijlstra5c148192009-03-25 12:30:23 +0100130 else {
Ingo Molnar04289bb2008-12-11 08:38:42 +0100131 list_add_tail(&counter->list_entry, &group_leader->sibling_list);
Peter Zijlstra5c148192009-03-25 12:30:23 +0100132 group_leader->nr_siblings++;
133 }
Peter Zijlstra592903c2009-03-13 12:21:36 +0100134
135 list_add_rcu(&counter->event_entry, &ctx->event_list);
Peter Zijlstra8bc20952009-05-15 20:45:59 +0200136 ctx->nr_counters++;
Paul Mackerras564c2b22009-05-22 14:27:22 +1000137 if (counter->state >= PERF_COUNTER_STATE_INACTIVE)
138 ctx->nr_enabled++;
Ingo Molnar04289bb2008-12-11 08:38:42 +0100139}
140
Paul Mackerrasa63eaf32009-05-22 14:17:31 +1000141/*
142 * Remove a counter from the lists for its context.
Peter Zijlstrafccc7142009-05-23 18:28:56 +0200143 * Must be called with ctx->mutex and ctx->lock held.
Paul Mackerrasa63eaf32009-05-22 14:17:31 +1000144 */
Ingo Molnar04289bb2008-12-11 08:38:42 +0100145static void
146list_del_counter(struct perf_counter *counter, struct perf_counter_context *ctx)
147{
148 struct perf_counter *sibling, *tmp;
149
Paul Mackerrasa63eaf32009-05-22 14:17:31 +1000150 if (list_empty(&counter->list_entry))
151 return;
Peter Zijlstra8bc20952009-05-15 20:45:59 +0200152 ctx->nr_counters--;
Paul Mackerras564c2b22009-05-22 14:27:22 +1000153 if (counter->state >= PERF_COUNTER_STATE_INACTIVE)
154 ctx->nr_enabled--;
Peter Zijlstra8bc20952009-05-15 20:45:59 +0200155
Ingo Molnar04289bb2008-12-11 08:38:42 +0100156 list_del_init(&counter->list_entry);
Peter Zijlstra592903c2009-03-13 12:21:36 +0100157 list_del_rcu(&counter->event_entry);
Ingo Molnar04289bb2008-12-11 08:38:42 +0100158
Peter Zijlstra5c148192009-03-25 12:30:23 +0100159 if (counter->group_leader != counter)
160 counter->group_leader->nr_siblings--;
161
Ingo Molnar04289bb2008-12-11 08:38:42 +0100162 /*
163 * If this was a group counter with sibling counters then
164 * upgrade the siblings to singleton counters by adding them
165 * to the context list directly:
166 */
167 list_for_each_entry_safe(sibling, tmp,
168 &counter->sibling_list, list_entry) {
169
Peter Zijlstra75564232009-03-13 12:21:29 +0100170 list_move_tail(&sibling->list_entry, &ctx->counter_list);
Ingo Molnar04289bb2008-12-11 08:38:42 +0100171 sibling->group_leader = sibling;
172 }
173}
174
Paul Mackerras3b6f9e52009-01-14 21:00:30 +1100175static void
176counter_sched_out(struct perf_counter *counter,
177 struct perf_cpu_context *cpuctx,
178 struct perf_counter_context *ctx)
179{
180 if (counter->state != PERF_COUNTER_STATE_ACTIVE)
181 return;
182
183 counter->state = PERF_COUNTER_STATE_INACTIVE;
Peter Zijlstra4af49982009-04-06 11:45:10 +0200184 counter->tstamp_stopped = ctx->time;
Robert Richter4aeb0b42009-04-29 12:47:03 +0200185 counter->pmu->disable(counter);
Paul Mackerras3b6f9e52009-01-14 21:00:30 +1100186 counter->oncpu = -1;
187
188 if (!is_software_counter(counter))
189 cpuctx->active_oncpu--;
190 ctx->nr_active--;
191 if (counter->hw_event.exclusive || !cpuctx->active_oncpu)
192 cpuctx->exclusive = 0;
193}
194
Paul Mackerrasd859e292009-01-17 18:10:22 +1100195static void
196group_sched_out(struct perf_counter *group_counter,
197 struct perf_cpu_context *cpuctx,
198 struct perf_counter_context *ctx)
199{
200 struct perf_counter *counter;
201
202 if (group_counter->state != PERF_COUNTER_STATE_ACTIVE)
203 return;
204
205 counter_sched_out(group_counter, cpuctx, ctx);
206
207 /*
208 * Schedule out siblings (if any):
209 */
210 list_for_each_entry(counter, &group_counter->sibling_list, list_entry)
211 counter_sched_out(counter, cpuctx, ctx);
212
213 if (group_counter->hw_event.exclusive)
214 cpuctx->exclusive = 0;
215}
216
Thomas Gleixner0793a612008-12-04 20:12:29 +0100217/*
Paul Mackerras564c2b22009-05-22 14:27:22 +1000218 * Mark this context as not being a clone of another.
219 * Called when counters are added to or removed from this context.
220 * We also increment our generation number so that anything that
221 * was cloned from this context before this will not match anything
222 * cloned from this context after this.
223 */
224static void unclone_ctx(struct perf_counter_context *ctx)
225{
226 ++ctx->generation;
227 if (!ctx->parent_ctx)
228 return;
229 put_ctx(ctx->parent_ctx);
230 ctx->parent_ctx = NULL;
231}
232
233/*
Thomas Gleixner0793a612008-12-04 20:12:29 +0100234 * Cross CPU call to remove a performance counter
235 *
236 * We disable the counter on the hardware level first. After that we
237 * remove it from the context list.
238 */
Ingo Molnar04289bb2008-12-11 08:38:42 +0100239static void __perf_counter_remove_from_context(void *info)
Thomas Gleixner0793a612008-12-04 20:12:29 +0100240{
241 struct perf_cpu_context *cpuctx = &__get_cpu_var(perf_cpu_context);
242 struct perf_counter *counter = info;
243 struct perf_counter_context *ctx = counter->ctx;
Ingo Molnar9b51f662008-12-12 13:49:45 +0100244 unsigned long flags;
Thomas Gleixner0793a612008-12-04 20:12:29 +0100245
246 /*
247 * If this is a task context, we need to check whether it is
248 * the current task context of this cpu. If not it has been
249 * scheduled out before the smp call arrived.
250 */
251 if (ctx->task && cpuctx->task_ctx != ctx)
252 return;
253
Peter Zijlstra849691a2009-04-06 11:45:12 +0200254 spin_lock_irqsave(&ctx->lock, flags);
Ingo Molnar34adc802009-05-20 20:13:28 +0200255 /*
256 * Protect the list operation against NMI by disabling the
257 * counters on a global level.
258 */
259 perf_disable();
Thomas Gleixner0793a612008-12-04 20:12:29 +0100260
Paul Mackerras3b6f9e52009-01-14 21:00:30 +1100261 counter_sched_out(counter, cpuctx, ctx);
262
Ingo Molnar04289bb2008-12-11 08:38:42 +0100263 list_del_counter(counter, ctx);
Thomas Gleixner0793a612008-12-04 20:12:29 +0100264
265 if (!ctx->task) {
266 /*
267 * Allow more per task counters with respect to the
268 * reservation:
269 */
270 cpuctx->max_pertask =
271 min(perf_max_counters - ctx->nr_counters,
272 perf_max_counters - perf_reserved_percpu);
273 }
274
Ingo Molnar34adc802009-05-20 20:13:28 +0200275 perf_enable();
Peter Zijlstra849691a2009-04-06 11:45:12 +0200276 spin_unlock_irqrestore(&ctx->lock, flags);
Thomas Gleixner0793a612008-12-04 20:12:29 +0100277}
278
279
280/*
281 * Remove the counter from a task's (or a CPU's) list of counters.
282 *
Peter Zijlstrafccc7142009-05-23 18:28:56 +0200283 * Must be called with ctx->mutex held.
Thomas Gleixner0793a612008-12-04 20:12:29 +0100284 *
285 * CPU counters are removed with a smp call. For task counters we only
286 * call when the task is on a CPU.
287 */
Ingo Molnar04289bb2008-12-11 08:38:42 +0100288static void perf_counter_remove_from_context(struct perf_counter *counter)
Thomas Gleixner0793a612008-12-04 20:12:29 +0100289{
290 struct perf_counter_context *ctx = counter->ctx;
291 struct task_struct *task = ctx->task;
292
Paul Mackerras564c2b22009-05-22 14:27:22 +1000293 unclone_ctx(ctx);
Thomas Gleixner0793a612008-12-04 20:12:29 +0100294 if (!task) {
295 /*
296 * Per cpu counters are removed via an smp call and
297 * the removal is always sucessful.
298 */
299 smp_call_function_single(counter->cpu,
Ingo Molnar04289bb2008-12-11 08:38:42 +0100300 __perf_counter_remove_from_context,
Thomas Gleixner0793a612008-12-04 20:12:29 +0100301 counter, 1);
302 return;
303 }
304
305retry:
Ingo Molnar04289bb2008-12-11 08:38:42 +0100306 task_oncpu_function_call(task, __perf_counter_remove_from_context,
Thomas Gleixner0793a612008-12-04 20:12:29 +0100307 counter);
308
309 spin_lock_irq(&ctx->lock);
310 /*
311 * If the context is active we need to retry the smp call.
312 */
Ingo Molnar04289bb2008-12-11 08:38:42 +0100313 if (ctx->nr_active && !list_empty(&counter->list_entry)) {
Thomas Gleixner0793a612008-12-04 20:12:29 +0100314 spin_unlock_irq(&ctx->lock);
315 goto retry;
316 }
317
318 /*
319 * The lock prevents that this context is scheduled in so we
Ingo Molnar04289bb2008-12-11 08:38:42 +0100320 * can remove the counter safely, if the call above did not
Thomas Gleixner0793a612008-12-04 20:12:29 +0100321 * succeed.
322 */
Ingo Molnar04289bb2008-12-11 08:38:42 +0100323 if (!list_empty(&counter->list_entry)) {
Ingo Molnar04289bb2008-12-11 08:38:42 +0100324 list_del_counter(counter, ctx);
Thomas Gleixner0793a612008-12-04 20:12:29 +0100325 }
326 spin_unlock_irq(&ctx->lock);
327}
328
Peter Zijlstra4af49982009-04-06 11:45:10 +0200329static inline u64 perf_clock(void)
Paul Mackerras53cfbf52009-03-25 22:46:58 +1100330{
Peter Zijlstra4af49982009-04-06 11:45:10 +0200331 return cpu_clock(smp_processor_id());
Paul Mackerras53cfbf52009-03-25 22:46:58 +1100332}
333
334/*
335 * Update the record of the current time in a context.
336 */
Peter Zijlstra4af49982009-04-06 11:45:10 +0200337static void update_context_time(struct perf_counter_context *ctx)
Paul Mackerras53cfbf52009-03-25 22:46:58 +1100338{
Peter Zijlstra4af49982009-04-06 11:45:10 +0200339 u64 now = perf_clock();
340
341 ctx->time += now - ctx->timestamp;
342 ctx->timestamp = now;
Paul Mackerras53cfbf52009-03-25 22:46:58 +1100343}
344
345/*
346 * Update the total_time_enabled and total_time_running fields for a counter.
347 */
348static void update_counter_times(struct perf_counter *counter)
349{
350 struct perf_counter_context *ctx = counter->ctx;
351 u64 run_end;
352
Peter Zijlstra4af49982009-04-06 11:45:10 +0200353 if (counter->state < PERF_COUNTER_STATE_INACTIVE)
354 return;
355
356 counter->total_time_enabled = ctx->time - counter->tstamp_enabled;
357
358 if (counter->state == PERF_COUNTER_STATE_INACTIVE)
359 run_end = counter->tstamp_stopped;
360 else
361 run_end = ctx->time;
362
363 counter->total_time_running = run_end - counter->tstamp_running;
Paul Mackerras53cfbf52009-03-25 22:46:58 +1100364}
365
366/*
367 * Update total_time_enabled and total_time_running for all counters in a group.
368 */
369static void update_group_times(struct perf_counter *leader)
370{
371 struct perf_counter *counter;
372
373 update_counter_times(leader);
374 list_for_each_entry(counter, &leader->sibling_list, list_entry)
375 update_counter_times(counter);
376}
377
378/*
Paul Mackerrasd859e292009-01-17 18:10:22 +1100379 * Cross CPU call to disable a performance counter
380 */
381static void __perf_counter_disable(void *info)
382{
383 struct perf_counter *counter = info;
384 struct perf_cpu_context *cpuctx = &__get_cpu_var(perf_cpu_context);
385 struct perf_counter_context *ctx = counter->ctx;
386 unsigned long flags;
387
388 /*
389 * If this is a per-task counter, need to check whether this
390 * counter's task is the current task on this cpu.
391 */
392 if (ctx->task && cpuctx->task_ctx != ctx)
393 return;
394
Peter Zijlstra849691a2009-04-06 11:45:12 +0200395 spin_lock_irqsave(&ctx->lock, flags);
Paul Mackerrasd859e292009-01-17 18:10:22 +1100396
397 /*
398 * If the counter is on, turn it off.
399 * If it is in error state, leave it in error state.
400 */
401 if (counter->state >= PERF_COUNTER_STATE_INACTIVE) {
Peter Zijlstra4af49982009-04-06 11:45:10 +0200402 update_context_time(ctx);
Paul Mackerras53cfbf52009-03-25 22:46:58 +1100403 update_counter_times(counter);
Paul Mackerrasd859e292009-01-17 18:10:22 +1100404 if (counter == counter->group_leader)
405 group_sched_out(counter, cpuctx, ctx);
406 else
407 counter_sched_out(counter, cpuctx, ctx);
408 counter->state = PERF_COUNTER_STATE_OFF;
Paul Mackerras564c2b22009-05-22 14:27:22 +1000409 ctx->nr_enabled--;
Paul Mackerrasd859e292009-01-17 18:10:22 +1100410 }
411
Peter Zijlstra849691a2009-04-06 11:45:12 +0200412 spin_unlock_irqrestore(&ctx->lock, flags);
Paul Mackerrasd859e292009-01-17 18:10:22 +1100413}
414
415/*
416 * Disable a counter.
417 */
418static void perf_counter_disable(struct perf_counter *counter)
419{
420 struct perf_counter_context *ctx = counter->ctx;
421 struct task_struct *task = ctx->task;
422
423 if (!task) {
424 /*
425 * Disable the counter on the cpu that it's on
426 */
427 smp_call_function_single(counter->cpu, __perf_counter_disable,
428 counter, 1);
429 return;
430 }
431
432 retry:
433 task_oncpu_function_call(task, __perf_counter_disable, counter);
434
435 spin_lock_irq(&ctx->lock);
436 /*
437 * If the counter is still active, we need to retry the cross-call.
438 */
439 if (counter->state == PERF_COUNTER_STATE_ACTIVE) {
440 spin_unlock_irq(&ctx->lock);
441 goto retry;
442 }
443
444 /*
445 * Since we have the lock this context can't be scheduled
446 * in, so we can change the state safely.
447 */
Paul Mackerras53cfbf52009-03-25 22:46:58 +1100448 if (counter->state == PERF_COUNTER_STATE_INACTIVE) {
449 update_counter_times(counter);
Paul Mackerrasd859e292009-01-17 18:10:22 +1100450 counter->state = PERF_COUNTER_STATE_OFF;
Paul Mackerras564c2b22009-05-22 14:27:22 +1000451 ctx->nr_enabled--;
Paul Mackerras53cfbf52009-03-25 22:46:58 +1100452 }
Paul Mackerrasd859e292009-01-17 18:10:22 +1100453
454 spin_unlock_irq(&ctx->lock);
455}
456
Ingo Molnar235c7fc2008-12-21 14:43:25 +0100457static int
458counter_sched_in(struct perf_counter *counter,
459 struct perf_cpu_context *cpuctx,
460 struct perf_counter_context *ctx,
461 int cpu)
462{
Paul Mackerras3b6f9e52009-01-14 21:00:30 +1100463 if (counter->state <= PERF_COUNTER_STATE_OFF)
Ingo Molnar235c7fc2008-12-21 14:43:25 +0100464 return 0;
465
466 counter->state = PERF_COUNTER_STATE_ACTIVE;
467 counter->oncpu = cpu; /* TODO: put 'cpu' into cpuctx->cpu */
468 /*
469 * The new state must be visible before we turn it on in the hardware:
470 */
471 smp_wmb();
472
Robert Richter4aeb0b42009-04-29 12:47:03 +0200473 if (counter->pmu->enable(counter)) {
Ingo Molnar235c7fc2008-12-21 14:43:25 +0100474 counter->state = PERF_COUNTER_STATE_INACTIVE;
475 counter->oncpu = -1;
476 return -EAGAIN;
477 }
478
Peter Zijlstra4af49982009-04-06 11:45:10 +0200479 counter->tstamp_running += ctx->time - counter->tstamp_stopped;
Paul Mackerras53cfbf52009-03-25 22:46:58 +1100480
Paul Mackerras3b6f9e52009-01-14 21:00:30 +1100481 if (!is_software_counter(counter))
482 cpuctx->active_oncpu++;
Ingo Molnar235c7fc2008-12-21 14:43:25 +0100483 ctx->nr_active++;
484
Paul Mackerras3b6f9e52009-01-14 21:00:30 +1100485 if (counter->hw_event.exclusive)
486 cpuctx->exclusive = 1;
487
Ingo Molnar235c7fc2008-12-21 14:43:25 +0100488 return 0;
489}
490
Paul Mackerras6751b712009-05-11 12:08:02 +1000491static int
492group_sched_in(struct perf_counter *group_counter,
493 struct perf_cpu_context *cpuctx,
494 struct perf_counter_context *ctx,
495 int cpu)
496{
497 struct perf_counter *counter, *partial_group;
498 int ret;
499
500 if (group_counter->state == PERF_COUNTER_STATE_OFF)
501 return 0;
502
503 ret = hw_perf_group_sched_in(group_counter, cpuctx, ctx, cpu);
504 if (ret)
505 return ret < 0 ? ret : 0;
506
507 group_counter->prev_state = group_counter->state;
508 if (counter_sched_in(group_counter, cpuctx, ctx, cpu))
509 return -EAGAIN;
510
511 /*
512 * Schedule in siblings as one group (if any):
513 */
514 list_for_each_entry(counter, &group_counter->sibling_list, list_entry) {
515 counter->prev_state = counter->state;
516 if (counter_sched_in(counter, cpuctx, ctx, cpu)) {
517 partial_group = counter;
518 goto group_error;
519 }
520 }
521
522 return 0;
523
524group_error:
525 /*
526 * Groups can be scheduled in as one unit only, so undo any
527 * partial group before returning:
528 */
529 list_for_each_entry(counter, &group_counter->sibling_list, list_entry) {
530 if (counter == partial_group)
531 break;
532 counter_sched_out(counter, cpuctx, ctx);
533 }
534 counter_sched_out(group_counter, cpuctx, ctx);
535
536 return -EAGAIN;
537}
538
Thomas Gleixner0793a612008-12-04 20:12:29 +0100539/*
Paul Mackerras3b6f9e52009-01-14 21:00:30 +1100540 * Return 1 for a group consisting entirely of software counters,
541 * 0 if the group contains any hardware counters.
542 */
543static int is_software_only_group(struct perf_counter *leader)
544{
545 struct perf_counter *counter;
546
547 if (!is_software_counter(leader))
548 return 0;
Peter Zijlstra5c148192009-03-25 12:30:23 +0100549
Paul Mackerras3b6f9e52009-01-14 21:00:30 +1100550 list_for_each_entry(counter, &leader->sibling_list, list_entry)
551 if (!is_software_counter(counter))
552 return 0;
Peter Zijlstra5c148192009-03-25 12:30:23 +0100553
Paul Mackerras3b6f9e52009-01-14 21:00:30 +1100554 return 1;
555}
556
557/*
558 * Work out whether we can put this counter group on the CPU now.
559 */
560static int group_can_go_on(struct perf_counter *counter,
561 struct perf_cpu_context *cpuctx,
562 int can_add_hw)
563{
564 /*
565 * Groups consisting entirely of software counters can always go on.
566 */
567 if (is_software_only_group(counter))
568 return 1;
569 /*
570 * If an exclusive group is already on, no other hardware
571 * counters can go on.
572 */
573 if (cpuctx->exclusive)
574 return 0;
575 /*
576 * If this group is exclusive and there are already
577 * counters on the CPU, it can't go on.
578 */
579 if (counter->hw_event.exclusive && cpuctx->active_oncpu)
580 return 0;
581 /*
582 * Otherwise, try to add it if all previous groups were able
583 * to go on.
584 */
585 return can_add_hw;
586}
587
Paul Mackerras53cfbf52009-03-25 22:46:58 +1100588static void add_counter_to_ctx(struct perf_counter *counter,
589 struct perf_counter_context *ctx)
590{
591 list_add_counter(counter, ctx);
Paul Mackerras53cfbf52009-03-25 22:46:58 +1100592 counter->prev_state = PERF_COUNTER_STATE_OFF;
Peter Zijlstra4af49982009-04-06 11:45:10 +0200593 counter->tstamp_enabled = ctx->time;
594 counter->tstamp_running = ctx->time;
595 counter->tstamp_stopped = ctx->time;
Paul Mackerras53cfbf52009-03-25 22:46:58 +1100596}
597
Paul Mackerras3b6f9e52009-01-14 21:00:30 +1100598/*
Ingo Molnar235c7fc2008-12-21 14:43:25 +0100599 * Cross CPU call to install and enable a performance counter
Peter Zijlstra682076a2009-05-23 18:28:57 +0200600 *
601 * Must be called with ctx->mutex held
Thomas Gleixner0793a612008-12-04 20:12:29 +0100602 */
603static void __perf_install_in_context(void *info)
604{
605 struct perf_cpu_context *cpuctx = &__get_cpu_var(perf_cpu_context);
606 struct perf_counter *counter = info;
607 struct perf_counter_context *ctx = counter->ctx;
Paul Mackerrasd859e292009-01-17 18:10:22 +1100608 struct perf_counter *leader = counter->group_leader;
Thomas Gleixner0793a612008-12-04 20:12:29 +0100609 int cpu = smp_processor_id();
Ingo Molnar9b51f662008-12-12 13:49:45 +0100610 unsigned long flags;
Paul Mackerras3b6f9e52009-01-14 21:00:30 +1100611 int err;
Thomas Gleixner0793a612008-12-04 20:12:29 +0100612
613 /*
614 * If this is a task context, we need to check whether it is
615 * the current task context of this cpu. If not it has been
616 * scheduled out before the smp call arrived.
Paul Mackerrasa63eaf32009-05-22 14:17:31 +1000617 * Or possibly this is the right context but it isn't
618 * on this cpu because it had no counters.
Thomas Gleixner0793a612008-12-04 20:12:29 +0100619 */
Paul Mackerrasa63eaf32009-05-22 14:17:31 +1000620 if (ctx->task && cpuctx->task_ctx != ctx) {
621 if (cpuctx->task_ctx || ctx->task != current)
622 return;
623 cpuctx->task_ctx = ctx;
624 }
Thomas Gleixner0793a612008-12-04 20:12:29 +0100625
Peter Zijlstra849691a2009-04-06 11:45:12 +0200626 spin_lock_irqsave(&ctx->lock, flags);
Paul Mackerrasa63eaf32009-05-22 14:17:31 +1000627 ctx->is_active = 1;
Peter Zijlstra4af49982009-04-06 11:45:10 +0200628 update_context_time(ctx);
Thomas Gleixner0793a612008-12-04 20:12:29 +0100629
630 /*
631 * Protect the list operation against NMI by disabling the
632 * counters on a global level. NOP for non NMI based counters.
633 */
Peter Zijlstra9e35ad32009-05-13 16:21:38 +0200634 perf_disable();
Thomas Gleixner0793a612008-12-04 20:12:29 +0100635
Paul Mackerras53cfbf52009-03-25 22:46:58 +1100636 add_counter_to_ctx(counter, ctx);
Thomas Gleixner0793a612008-12-04 20:12:29 +0100637
Paul Mackerras3b6f9e52009-01-14 21:00:30 +1100638 /*
Paul Mackerrasd859e292009-01-17 18:10:22 +1100639 * Don't put the counter on if it is disabled or if
640 * it is in a group and the group isn't on.
641 */
642 if (counter->state != PERF_COUNTER_STATE_INACTIVE ||
643 (leader != counter && leader->state != PERF_COUNTER_STATE_ACTIVE))
644 goto unlock;
645
646 /*
Paul Mackerras3b6f9e52009-01-14 21:00:30 +1100647 * An exclusive counter can't go on if there are already active
648 * hardware counters, and no hardware counter can go on if there
649 * is already an exclusive counter on.
650 */
Paul Mackerrasd859e292009-01-17 18:10:22 +1100651 if (!group_can_go_on(counter, cpuctx, 1))
Paul Mackerras3b6f9e52009-01-14 21:00:30 +1100652 err = -EEXIST;
653 else
654 err = counter_sched_in(counter, cpuctx, ctx, cpu);
Thomas Gleixner0793a612008-12-04 20:12:29 +0100655
Paul Mackerrasd859e292009-01-17 18:10:22 +1100656 if (err) {
657 /*
658 * This counter couldn't go on. If it is in a group
659 * then we have to pull the whole group off.
660 * If the counter group is pinned then put it in error state.
661 */
662 if (leader != counter)
663 group_sched_out(leader, cpuctx, ctx);
Paul Mackerras53cfbf52009-03-25 22:46:58 +1100664 if (leader->hw_event.pinned) {
665 update_group_times(leader);
Paul Mackerrasd859e292009-01-17 18:10:22 +1100666 leader->state = PERF_COUNTER_STATE_ERROR;
Paul Mackerras53cfbf52009-03-25 22:46:58 +1100667 }
Paul Mackerrasd859e292009-01-17 18:10:22 +1100668 }
Paul Mackerras3b6f9e52009-01-14 21:00:30 +1100669
670 if (!err && !ctx->task && cpuctx->max_pertask)
Thomas Gleixner0793a612008-12-04 20:12:29 +0100671 cpuctx->max_pertask--;
672
Paul Mackerrasd859e292009-01-17 18:10:22 +1100673 unlock:
Peter Zijlstra9e35ad32009-05-13 16:21:38 +0200674 perf_enable();
Ingo Molnar235c7fc2008-12-21 14:43:25 +0100675
Peter Zijlstra849691a2009-04-06 11:45:12 +0200676 spin_unlock_irqrestore(&ctx->lock, flags);
Thomas Gleixner0793a612008-12-04 20:12:29 +0100677}
678
679/*
680 * Attach a performance counter to a context
681 *
682 * First we add the counter to the list with the hardware enable bit
683 * in counter->hw_config cleared.
684 *
685 * If the counter is attached to a task which is on a CPU we use a smp
686 * call to enable it in the task context. The task might have been
687 * scheduled away, but we check this in the smp call again.
Paul Mackerrasd859e292009-01-17 18:10:22 +1100688 *
689 * Must be called with ctx->mutex held.
Thomas Gleixner0793a612008-12-04 20:12:29 +0100690 */
691static void
692perf_install_in_context(struct perf_counter_context *ctx,
693 struct perf_counter *counter,
694 int cpu)
695{
696 struct task_struct *task = ctx->task;
697
Thomas Gleixner0793a612008-12-04 20:12:29 +0100698 if (!task) {
699 /*
700 * Per cpu counters are installed via an smp call and
701 * the install is always sucessful.
702 */
703 smp_call_function_single(cpu, __perf_install_in_context,
704 counter, 1);
705 return;
706 }
707
Thomas Gleixner0793a612008-12-04 20:12:29 +0100708retry:
709 task_oncpu_function_call(task, __perf_install_in_context,
710 counter);
711
712 spin_lock_irq(&ctx->lock);
713 /*
Thomas Gleixner0793a612008-12-04 20:12:29 +0100714 * we need to retry the smp call.
715 */
Paul Mackerrasd859e292009-01-17 18:10:22 +1100716 if (ctx->is_active && list_empty(&counter->list_entry)) {
Thomas Gleixner0793a612008-12-04 20:12:29 +0100717 spin_unlock_irq(&ctx->lock);
718 goto retry;
719 }
720
721 /*
722 * The lock prevents that this context is scheduled in so we
723 * can add the counter safely, if it the call above did not
724 * succeed.
725 */
Paul Mackerras53cfbf52009-03-25 22:46:58 +1100726 if (list_empty(&counter->list_entry))
727 add_counter_to_ctx(counter, ctx);
Thomas Gleixner0793a612008-12-04 20:12:29 +0100728 spin_unlock_irq(&ctx->lock);
729}
730
Paul Mackerrasd859e292009-01-17 18:10:22 +1100731/*
732 * Cross CPU call to enable a performance counter
733 */
734static void __perf_counter_enable(void *info)
Ingo Molnar04289bb2008-12-11 08:38:42 +0100735{
Paul Mackerrasd859e292009-01-17 18:10:22 +1100736 struct perf_counter *counter = info;
737 struct perf_cpu_context *cpuctx = &__get_cpu_var(perf_cpu_context);
738 struct perf_counter_context *ctx = counter->ctx;
739 struct perf_counter *leader = counter->group_leader;
740 unsigned long flags;
741 int err;
Ingo Molnar04289bb2008-12-11 08:38:42 +0100742
743 /*
Paul Mackerrasd859e292009-01-17 18:10:22 +1100744 * If this is a per-task counter, need to check whether this
745 * counter's task is the current task on this cpu.
Ingo Molnar04289bb2008-12-11 08:38:42 +0100746 */
Paul Mackerrasa63eaf32009-05-22 14:17:31 +1000747 if (ctx->task && cpuctx->task_ctx != ctx) {
748 if (cpuctx->task_ctx || ctx->task != current)
749 return;
750 cpuctx->task_ctx = ctx;
751 }
Paul Mackerras3b6f9e52009-01-14 21:00:30 +1100752
Peter Zijlstra849691a2009-04-06 11:45:12 +0200753 spin_lock_irqsave(&ctx->lock, flags);
Paul Mackerrasa63eaf32009-05-22 14:17:31 +1000754 ctx->is_active = 1;
Peter Zijlstra4af49982009-04-06 11:45:10 +0200755 update_context_time(ctx);
Paul Mackerrasd859e292009-01-17 18:10:22 +1100756
Paul Mackerrasc07c99b2009-02-13 22:10:34 +1100757 counter->prev_state = counter->state;
Paul Mackerrasd859e292009-01-17 18:10:22 +1100758 if (counter->state >= PERF_COUNTER_STATE_INACTIVE)
759 goto unlock;
760 counter->state = PERF_COUNTER_STATE_INACTIVE;
Peter Zijlstra4af49982009-04-06 11:45:10 +0200761 counter->tstamp_enabled = ctx->time - counter->total_time_enabled;
Paul Mackerras564c2b22009-05-22 14:27:22 +1000762 ctx->nr_enabled++;
Paul Mackerrasd859e292009-01-17 18:10:22 +1100763
764 /*
765 * If the counter is in a group and isn't the group leader,
766 * then don't put it on unless the group is on.
767 */
768 if (leader != counter && leader->state != PERF_COUNTER_STATE_ACTIVE)
769 goto unlock;
770
Paul Mackerrase758a332009-05-12 21:59:01 +1000771 if (!group_can_go_on(counter, cpuctx, 1)) {
Paul Mackerrasd859e292009-01-17 18:10:22 +1100772 err = -EEXIST;
Paul Mackerrase758a332009-05-12 21:59:01 +1000773 } else {
Peter Zijlstra9e35ad32009-05-13 16:21:38 +0200774 perf_disable();
Paul Mackerrase758a332009-05-12 21:59:01 +1000775 if (counter == leader)
776 err = group_sched_in(counter, cpuctx, ctx,
777 smp_processor_id());
778 else
779 err = counter_sched_in(counter, cpuctx, ctx,
780 smp_processor_id());
Peter Zijlstra9e35ad32009-05-13 16:21:38 +0200781 perf_enable();
Paul Mackerrase758a332009-05-12 21:59:01 +1000782 }
Paul Mackerrasd859e292009-01-17 18:10:22 +1100783
784 if (err) {
785 /*
786 * If this counter can't go on and it's part of a
787 * group, then the whole group has to come off.
788 */
789 if (leader != counter)
790 group_sched_out(leader, cpuctx, ctx);
Paul Mackerras53cfbf52009-03-25 22:46:58 +1100791 if (leader->hw_event.pinned) {
792 update_group_times(leader);
Paul Mackerrasd859e292009-01-17 18:10:22 +1100793 leader->state = PERF_COUNTER_STATE_ERROR;
Paul Mackerras53cfbf52009-03-25 22:46:58 +1100794 }
Paul Mackerrasd859e292009-01-17 18:10:22 +1100795 }
796
797 unlock:
Peter Zijlstra849691a2009-04-06 11:45:12 +0200798 spin_unlock_irqrestore(&ctx->lock, flags);
Paul Mackerrasd859e292009-01-17 18:10:22 +1100799}
800
801/*
802 * Enable a counter.
803 */
804static void perf_counter_enable(struct perf_counter *counter)
805{
806 struct perf_counter_context *ctx = counter->ctx;
807 struct task_struct *task = ctx->task;
808
809 if (!task) {
810 /*
811 * Enable the counter on the cpu that it's on
812 */
813 smp_call_function_single(counter->cpu, __perf_counter_enable,
814 counter, 1);
815 return;
816 }
817
818 spin_lock_irq(&ctx->lock);
819 if (counter->state >= PERF_COUNTER_STATE_INACTIVE)
820 goto out;
821
822 /*
823 * If the counter is in error state, clear that first.
824 * That way, if we see the counter in error state below, we
825 * know that it has gone back into error state, as distinct
826 * from the task having been scheduled away before the
827 * cross-call arrived.
828 */
829 if (counter->state == PERF_COUNTER_STATE_ERROR)
830 counter->state = PERF_COUNTER_STATE_OFF;
831
832 retry:
833 spin_unlock_irq(&ctx->lock);
834 task_oncpu_function_call(task, __perf_counter_enable, counter);
835
836 spin_lock_irq(&ctx->lock);
837
838 /*
839 * If the context is active and the counter is still off,
840 * we need to retry the cross-call.
841 */
842 if (ctx->is_active && counter->state == PERF_COUNTER_STATE_OFF)
843 goto retry;
844
845 /*
846 * Since we have the lock this context can't be scheduled
847 * in, so we can change the state safely.
848 */
Paul Mackerras53cfbf52009-03-25 22:46:58 +1100849 if (counter->state == PERF_COUNTER_STATE_OFF) {
Paul Mackerrasd859e292009-01-17 18:10:22 +1100850 counter->state = PERF_COUNTER_STATE_INACTIVE;
Peter Zijlstra4af49982009-04-06 11:45:10 +0200851 counter->tstamp_enabled =
852 ctx->time - counter->total_time_enabled;
Paul Mackerras564c2b22009-05-22 14:27:22 +1000853 ctx->nr_enabled++;
Paul Mackerras53cfbf52009-03-25 22:46:58 +1100854 }
Paul Mackerrasd859e292009-01-17 18:10:22 +1100855 out:
856 spin_unlock_irq(&ctx->lock);
857}
858
Peter Zijlstra2023b352009-05-05 17:50:26 +0200859static int perf_counter_refresh(struct perf_counter *counter, int refresh)
Peter Zijlstra79f14642009-04-06 11:45:07 +0200860{
Peter Zijlstra2023b352009-05-05 17:50:26 +0200861 /*
862 * not supported on inherited counters
863 */
864 if (counter->hw_event.inherit)
865 return -EINVAL;
866
Peter Zijlstra79f14642009-04-06 11:45:07 +0200867 atomic_add(refresh, &counter->event_limit);
868 perf_counter_enable(counter);
Peter Zijlstra2023b352009-05-05 17:50:26 +0200869
870 return 0;
Peter Zijlstra79f14642009-04-06 11:45:07 +0200871}
872
Ingo Molnar235c7fc2008-12-21 14:43:25 +0100873void __perf_counter_sched_out(struct perf_counter_context *ctx,
874 struct perf_cpu_context *cpuctx)
875{
876 struct perf_counter *counter;
877
Ingo Molnar235c7fc2008-12-21 14:43:25 +0100878 spin_lock(&ctx->lock);
Paul Mackerrasd859e292009-01-17 18:10:22 +1100879 ctx->is_active = 0;
880 if (likely(!ctx->nr_counters))
881 goto out;
Peter Zijlstra4af49982009-04-06 11:45:10 +0200882 update_context_time(ctx);
Paul Mackerrasd859e292009-01-17 18:10:22 +1100883
Peter Zijlstra9e35ad32009-05-13 16:21:38 +0200884 perf_disable();
Ingo Molnar235c7fc2008-12-21 14:43:25 +0100885 if (ctx->nr_active) {
Peter Zijlstraafedadf2009-05-20 12:21:22 +0200886 list_for_each_entry(counter, &ctx->counter_list, list_entry) {
887 if (counter != counter->group_leader)
888 counter_sched_out(counter, cpuctx, ctx);
889 else
890 group_sched_out(counter, cpuctx, ctx);
891 }
Ingo Molnar235c7fc2008-12-21 14:43:25 +0100892 }
Peter Zijlstra9e35ad32009-05-13 16:21:38 +0200893 perf_enable();
Paul Mackerrasd859e292009-01-17 18:10:22 +1100894 out:
Ingo Molnar235c7fc2008-12-21 14:43:25 +0100895 spin_unlock(&ctx->lock);
896}
897
Thomas Gleixner0793a612008-12-04 20:12:29 +0100898/*
Paul Mackerras564c2b22009-05-22 14:27:22 +1000899 * Test whether two contexts are equivalent, i.e. whether they
900 * have both been cloned from the same version of the same context
901 * and they both have the same number of enabled counters.
902 * If the number of enabled counters is the same, then the set
903 * of enabled counters should be the same, because these are both
904 * inherited contexts, therefore we can't access individual counters
905 * in them directly with an fd; we can only enable/disable all
906 * counters via prctl, or enable/disable all counters in a family
907 * via ioctl, which will have the same effect on both contexts.
908 */
909static int context_equiv(struct perf_counter_context *ctx1,
910 struct perf_counter_context *ctx2)
911{
912 return ctx1->parent_ctx && ctx1->parent_ctx == ctx2->parent_ctx
913 && ctx1->parent_gen == ctx2->parent_gen
914 && ctx1->nr_enabled == ctx2->nr_enabled;
915}
916
917/*
Thomas Gleixner0793a612008-12-04 20:12:29 +0100918 * Called from scheduler to remove the counters of the current task,
919 * with interrupts disabled.
920 *
921 * We stop each counter and update the counter value in counter->count.
922 *
Ingo Molnar76715812008-12-17 14:20:28 +0100923 * This does not protect us against NMI, but disable()
Thomas Gleixner0793a612008-12-04 20:12:29 +0100924 * sets the disabled bit in the control field of counter _before_
925 * accessing the counter control register. If a NMI hits, then it will
926 * not restart the counter.
927 */
Paul Mackerras564c2b22009-05-22 14:27:22 +1000928void perf_counter_task_sched_out(struct task_struct *task,
929 struct task_struct *next, int cpu)
Thomas Gleixner0793a612008-12-04 20:12:29 +0100930{
931 struct perf_cpu_context *cpuctx = &per_cpu(perf_cpu_context, cpu);
Paul Mackerrasa63eaf32009-05-22 14:17:31 +1000932 struct perf_counter_context *ctx = task->perf_counter_ctxp;
Paul Mackerras564c2b22009-05-22 14:27:22 +1000933 struct perf_counter_context *next_ctx;
Peter Zijlstra4a0deca2009-03-19 20:26:12 +0100934 struct pt_regs *regs;
Thomas Gleixner0793a612008-12-04 20:12:29 +0100935
Paul Mackerrasa63eaf32009-05-22 14:17:31 +1000936 if (likely(!ctx || !cpuctx->task_ctx))
Thomas Gleixner0793a612008-12-04 20:12:29 +0100937 return;
938
Peter Zijlstrabce379b2009-04-06 11:45:13 +0200939 update_context_time(ctx);
940
Peter Zijlstra4a0deca2009-03-19 20:26:12 +0100941 regs = task_pt_regs(task);
Peter Zijlstra78f13e92009-04-08 15:01:33 +0200942 perf_swcounter_event(PERF_COUNT_CONTEXT_SWITCHES, 1, 1, regs, 0);
Paul Mackerras564c2b22009-05-22 14:27:22 +1000943
944 next_ctx = next->perf_counter_ctxp;
945 if (next_ctx && context_equiv(ctx, next_ctx)) {
946 task->perf_counter_ctxp = next_ctx;
947 next->perf_counter_ctxp = ctx;
948 ctx->task = next;
949 next_ctx->task = task;
950 return;
951 }
952
Ingo Molnar235c7fc2008-12-21 14:43:25 +0100953 __perf_counter_sched_out(ctx, cpuctx);
954
Thomas Gleixner0793a612008-12-04 20:12:29 +0100955 cpuctx->task_ctx = NULL;
956}
957
Paul Mackerrasa08b1592009-05-11 15:46:10 +1000958static void __perf_counter_task_sched_out(struct perf_counter_context *ctx)
959{
960 struct perf_cpu_context *cpuctx = &__get_cpu_var(perf_cpu_context);
961
Paul Mackerrasa63eaf32009-05-22 14:17:31 +1000962 if (!cpuctx->task_ctx)
963 return;
Paul Mackerrasa08b1592009-05-11 15:46:10 +1000964 __perf_counter_sched_out(ctx, cpuctx);
965 cpuctx->task_ctx = NULL;
966}
967
Ingo Molnar235c7fc2008-12-21 14:43:25 +0100968static void perf_counter_cpu_sched_out(struct perf_cpu_context *cpuctx)
Ingo Molnar04289bb2008-12-11 08:38:42 +0100969{
Ingo Molnar235c7fc2008-12-21 14:43:25 +0100970 __perf_counter_sched_out(&cpuctx->ctx, cpuctx);
Ingo Molnar04289bb2008-12-11 08:38:42 +0100971}
972
Ingo Molnar235c7fc2008-12-21 14:43:25 +0100973static void
974__perf_counter_sched_in(struct perf_counter_context *ctx,
975 struct perf_cpu_context *cpuctx, int cpu)
Thomas Gleixner0793a612008-12-04 20:12:29 +0100976{
Thomas Gleixner0793a612008-12-04 20:12:29 +0100977 struct perf_counter *counter;
Paul Mackerrasdd0e6ba2009-01-12 15:11:00 +1100978 int can_add_hw = 1;
Thomas Gleixner0793a612008-12-04 20:12:29 +0100979
Thomas Gleixner0793a612008-12-04 20:12:29 +0100980 spin_lock(&ctx->lock);
Paul Mackerrasd859e292009-01-17 18:10:22 +1100981 ctx->is_active = 1;
982 if (likely(!ctx->nr_counters))
983 goto out;
984
Peter Zijlstra4af49982009-04-06 11:45:10 +0200985 ctx->timestamp = perf_clock();
Paul Mackerras53cfbf52009-03-25 22:46:58 +1100986
Peter Zijlstra9e35ad32009-05-13 16:21:38 +0200987 perf_disable();
Paul Mackerras3b6f9e52009-01-14 21:00:30 +1100988
989 /*
990 * First go through the list and put on any pinned groups
991 * in order to give them the best chance of going on.
992 */
Ingo Molnar04289bb2008-12-11 08:38:42 +0100993 list_for_each_entry(counter, &ctx->counter_list, list_entry) {
Paul Mackerras3b6f9e52009-01-14 21:00:30 +1100994 if (counter->state <= PERF_COUNTER_STATE_OFF ||
995 !counter->hw_event.pinned)
996 continue;
997 if (counter->cpu != -1 && counter->cpu != cpu)
998 continue;
999
Peter Zijlstraafedadf2009-05-20 12:21:22 +02001000 if (counter != counter->group_leader)
1001 counter_sched_in(counter, cpuctx, ctx, cpu);
1002 else {
1003 if (group_can_go_on(counter, cpuctx, 1))
1004 group_sched_in(counter, cpuctx, ctx, cpu);
1005 }
Paul Mackerras3b6f9e52009-01-14 21:00:30 +11001006
1007 /*
1008 * If this pinned group hasn't been scheduled,
1009 * put it in error state.
1010 */
Paul Mackerras53cfbf52009-03-25 22:46:58 +11001011 if (counter->state == PERF_COUNTER_STATE_INACTIVE) {
1012 update_group_times(counter);
Paul Mackerras3b6f9e52009-01-14 21:00:30 +11001013 counter->state = PERF_COUNTER_STATE_ERROR;
Paul Mackerras53cfbf52009-03-25 22:46:58 +11001014 }
Paul Mackerras3b6f9e52009-01-14 21:00:30 +11001015 }
1016
1017 list_for_each_entry(counter, &ctx->counter_list, list_entry) {
1018 /*
1019 * Ignore counters in OFF or ERROR state, and
1020 * ignore pinned counters since we did them already.
1021 */
1022 if (counter->state <= PERF_COUNTER_STATE_OFF ||
1023 counter->hw_event.pinned)
1024 continue;
1025
Ingo Molnar04289bb2008-12-11 08:38:42 +01001026 /*
1027 * Listen to the 'cpu' scheduling filter constraint
1028 * of counters:
1029 */
Thomas Gleixner0793a612008-12-04 20:12:29 +01001030 if (counter->cpu != -1 && counter->cpu != cpu)
1031 continue;
1032
Peter Zijlstraafedadf2009-05-20 12:21:22 +02001033 if (counter != counter->group_leader) {
1034 if (counter_sched_in(counter, cpuctx, ctx, cpu))
Paul Mackerrasdd0e6ba2009-01-12 15:11:00 +11001035 can_add_hw = 0;
Peter Zijlstraafedadf2009-05-20 12:21:22 +02001036 } else {
1037 if (group_can_go_on(counter, cpuctx, can_add_hw)) {
1038 if (group_sched_in(counter, cpuctx, ctx, cpu))
1039 can_add_hw = 0;
1040 }
Paul Mackerras3b6f9e52009-01-14 21:00:30 +11001041 }
Thomas Gleixner0793a612008-12-04 20:12:29 +01001042 }
Peter Zijlstra9e35ad32009-05-13 16:21:38 +02001043 perf_enable();
Paul Mackerrasd859e292009-01-17 18:10:22 +11001044 out:
Thomas Gleixner0793a612008-12-04 20:12:29 +01001045 spin_unlock(&ctx->lock);
Ingo Molnar235c7fc2008-12-21 14:43:25 +01001046}
Ingo Molnar04289bb2008-12-11 08:38:42 +01001047
Ingo Molnar235c7fc2008-12-21 14:43:25 +01001048/*
1049 * Called from scheduler to add the counters of the current task
1050 * with interrupts disabled.
1051 *
1052 * We restore the counter value and then enable it.
1053 *
1054 * This does not protect us against NMI, but enable()
1055 * sets the enabled bit in the control field of counter _before_
1056 * accessing the counter control register. If a NMI hits, then it will
1057 * keep the counter running.
1058 */
1059void perf_counter_task_sched_in(struct task_struct *task, int cpu)
1060{
1061 struct perf_cpu_context *cpuctx = &per_cpu(perf_cpu_context, cpu);
Paul Mackerrasa63eaf32009-05-22 14:17:31 +10001062 struct perf_counter_context *ctx = task->perf_counter_ctxp;
Ingo Molnar235c7fc2008-12-21 14:43:25 +01001063
Paul Mackerrasa63eaf32009-05-22 14:17:31 +10001064 if (likely(!ctx))
1065 return;
Paul Mackerras564c2b22009-05-22 14:27:22 +10001066 if (cpuctx->task_ctx == ctx)
1067 return;
Ingo Molnar235c7fc2008-12-21 14:43:25 +01001068 __perf_counter_sched_in(ctx, cpuctx, cpu);
Thomas Gleixner0793a612008-12-04 20:12:29 +01001069 cpuctx->task_ctx = ctx;
1070}
1071
Ingo Molnar235c7fc2008-12-21 14:43:25 +01001072static void perf_counter_cpu_sched_in(struct perf_cpu_context *cpuctx, int cpu)
1073{
1074 struct perf_counter_context *ctx = &cpuctx->ctx;
1075
1076 __perf_counter_sched_in(ctx, cpuctx, cpu);
1077}
1078
Peter Zijlstra082ff5a2009-05-23 18:29:00 +02001079int perf_counter_task_enable(void)
Ingo Molnar1d1c7dd2008-12-11 14:59:31 +01001080{
Ingo Molnar1d1c7dd2008-12-11 14:59:31 +01001081 struct perf_counter *counter;
Ingo Molnar1d1c7dd2008-12-11 14:59:31 +01001082
Peter Zijlstra082ff5a2009-05-23 18:29:00 +02001083 mutex_lock(&current->perf_counter_mutex);
1084 list_for_each_entry(counter, &current->perf_counter_list, owner_entry)
1085 perf_counter_enable(counter);
1086 mutex_unlock(&current->perf_counter_mutex);
Ingo Molnar1d1c7dd2008-12-11 14:59:31 +01001087
1088 return 0;
1089}
1090
Peter Zijlstra082ff5a2009-05-23 18:29:00 +02001091int perf_counter_task_disable(void)
Ingo Molnar1d1c7dd2008-12-11 14:59:31 +01001092{
Ingo Molnar1d1c7dd2008-12-11 14:59:31 +01001093 struct perf_counter *counter;
Ingo Molnar1d1c7dd2008-12-11 14:59:31 +01001094
Peter Zijlstra082ff5a2009-05-23 18:29:00 +02001095 mutex_lock(&current->perf_counter_mutex);
1096 list_for_each_entry(counter, &current->perf_counter_list, owner_entry)
1097 perf_counter_disable(counter);
1098 mutex_unlock(&current->perf_counter_mutex);
Ingo Molnar1d1c7dd2008-12-11 14:59:31 +01001099
1100 return 0;
1101}
1102
Peter Zijlstra26b119b2009-05-20 12:21:20 +02001103static void perf_log_period(struct perf_counter *counter, u64 period);
1104
1105static void perf_adjust_freq(struct perf_counter_context *ctx)
Peter Zijlstra60db5e02009-05-15 15:19:28 +02001106{
1107 struct perf_counter *counter;
1108 u64 irq_period;
1109 u64 events, period;
1110 s64 delta;
1111
1112 spin_lock(&ctx->lock);
1113 list_for_each_entry(counter, &ctx->counter_list, list_entry) {
1114 if (counter->state != PERF_COUNTER_STATE_ACTIVE)
1115 continue;
1116
1117 if (!counter->hw_event.freq || !counter->hw_event.irq_freq)
1118 continue;
1119
1120 events = HZ * counter->hw.interrupts * counter->hw.irq_period;
1121 period = div64_u64(events, counter->hw_event.irq_freq);
1122
1123 delta = (s64)(1 + period - counter->hw.irq_period);
1124 delta >>= 1;
1125
1126 irq_period = counter->hw.irq_period + delta;
1127
1128 if (!irq_period)
1129 irq_period = 1;
1130
Peter Zijlstra26b119b2009-05-20 12:21:20 +02001131 perf_log_period(counter, irq_period);
1132
Peter Zijlstra60db5e02009-05-15 15:19:28 +02001133 counter->hw.irq_period = irq_period;
1134 counter->hw.interrupts = 0;
1135 }
1136 spin_unlock(&ctx->lock);
1137}
1138
Ingo Molnar235c7fc2008-12-21 14:43:25 +01001139/*
1140 * Round-robin a context's counters:
1141 */
1142static void rotate_ctx(struct perf_counter_context *ctx)
Thomas Gleixner0793a612008-12-04 20:12:29 +01001143{
Thomas Gleixner0793a612008-12-04 20:12:29 +01001144 struct perf_counter *counter;
1145
Ingo Molnar235c7fc2008-12-21 14:43:25 +01001146 if (!ctx->nr_counters)
Thomas Gleixner0793a612008-12-04 20:12:29 +01001147 return;
1148
Thomas Gleixner0793a612008-12-04 20:12:29 +01001149 spin_lock(&ctx->lock);
Thomas Gleixner0793a612008-12-04 20:12:29 +01001150 /*
Ingo Molnar04289bb2008-12-11 08:38:42 +01001151 * Rotate the first entry last (works just fine for group counters too):
Thomas Gleixner0793a612008-12-04 20:12:29 +01001152 */
Peter Zijlstra9e35ad32009-05-13 16:21:38 +02001153 perf_disable();
Ingo Molnar04289bb2008-12-11 08:38:42 +01001154 list_for_each_entry(counter, &ctx->counter_list, list_entry) {
Peter Zijlstra75564232009-03-13 12:21:29 +01001155 list_move_tail(&counter->list_entry, &ctx->counter_list);
Thomas Gleixner0793a612008-12-04 20:12:29 +01001156 break;
1157 }
Peter Zijlstra9e35ad32009-05-13 16:21:38 +02001158 perf_enable();
Thomas Gleixner0793a612008-12-04 20:12:29 +01001159
1160 spin_unlock(&ctx->lock);
Ingo Molnar235c7fc2008-12-21 14:43:25 +01001161}
Thomas Gleixner0793a612008-12-04 20:12:29 +01001162
Ingo Molnar235c7fc2008-12-21 14:43:25 +01001163void perf_counter_task_tick(struct task_struct *curr, int cpu)
1164{
Peter Zijlstra7fc23a52009-05-08 18:52:21 +02001165 struct perf_cpu_context *cpuctx;
1166 struct perf_counter_context *ctx;
1167
1168 if (!atomic_read(&nr_counters))
1169 return;
1170
1171 cpuctx = &per_cpu(perf_cpu_context, cpu);
Paul Mackerrasa63eaf32009-05-22 14:17:31 +10001172 ctx = curr->perf_counter_ctxp;
Ingo Molnar235c7fc2008-12-21 14:43:25 +01001173
Peter Zijlstra60db5e02009-05-15 15:19:28 +02001174 perf_adjust_freq(&cpuctx->ctx);
Paul Mackerrasa63eaf32009-05-22 14:17:31 +10001175 if (ctx)
1176 perf_adjust_freq(ctx);
Peter Zijlstra60db5e02009-05-15 15:19:28 +02001177
Ingo Molnarb82914c2009-05-04 18:54:32 +02001178 perf_counter_cpu_sched_out(cpuctx);
Paul Mackerrasa63eaf32009-05-22 14:17:31 +10001179 if (ctx)
1180 __perf_counter_task_sched_out(ctx);
Ingo Molnar235c7fc2008-12-21 14:43:25 +01001181
Ingo Molnarb82914c2009-05-04 18:54:32 +02001182 rotate_ctx(&cpuctx->ctx);
Paul Mackerrasa63eaf32009-05-22 14:17:31 +10001183 if (ctx)
1184 rotate_ctx(ctx);
Ingo Molnar235c7fc2008-12-21 14:43:25 +01001185
Ingo Molnarb82914c2009-05-04 18:54:32 +02001186 perf_counter_cpu_sched_in(cpuctx, cpu);
Paul Mackerrasa63eaf32009-05-22 14:17:31 +10001187 if (ctx)
1188 perf_counter_task_sched_in(curr, cpu);
Thomas Gleixner0793a612008-12-04 20:12:29 +01001189}
1190
1191/*
Thomas Gleixner0793a612008-12-04 20:12:29 +01001192 * Cross CPU call to read the hardware counter
1193 */
Ingo Molnar76715812008-12-17 14:20:28 +01001194static void __read(void *info)
Thomas Gleixner0793a612008-12-04 20:12:29 +01001195{
Ingo Molnar621a01e2008-12-11 12:46:46 +01001196 struct perf_counter *counter = info;
Paul Mackerras53cfbf52009-03-25 22:46:58 +11001197 struct perf_counter_context *ctx = counter->ctx;
Ingo Molnaraa9c4c02008-12-17 14:10:57 +01001198 unsigned long flags;
Ingo Molnar621a01e2008-12-11 12:46:46 +01001199
Peter Zijlstra849691a2009-04-06 11:45:12 +02001200 local_irq_save(flags);
Paul Mackerras53cfbf52009-03-25 22:46:58 +11001201 if (ctx->is_active)
Peter Zijlstra4af49982009-04-06 11:45:10 +02001202 update_context_time(ctx);
Robert Richter4aeb0b42009-04-29 12:47:03 +02001203 counter->pmu->read(counter);
Paul Mackerras53cfbf52009-03-25 22:46:58 +11001204 update_counter_times(counter);
Peter Zijlstra849691a2009-04-06 11:45:12 +02001205 local_irq_restore(flags);
Thomas Gleixner0793a612008-12-04 20:12:29 +01001206}
1207
Ingo Molnar04289bb2008-12-11 08:38:42 +01001208static u64 perf_counter_read(struct perf_counter *counter)
Thomas Gleixner0793a612008-12-04 20:12:29 +01001209{
1210 /*
1211 * If counter is enabled and currently active on a CPU, update the
1212 * value in the counter structure:
1213 */
Ingo Molnar6a930702008-12-11 15:17:03 +01001214 if (counter->state == PERF_COUNTER_STATE_ACTIVE) {
Thomas Gleixner0793a612008-12-04 20:12:29 +01001215 smp_call_function_single(counter->oncpu,
Ingo Molnar76715812008-12-17 14:20:28 +01001216 __read, counter, 1);
Paul Mackerras53cfbf52009-03-25 22:46:58 +11001217 } else if (counter->state == PERF_COUNTER_STATE_INACTIVE) {
1218 update_counter_times(counter);
Thomas Gleixner0793a612008-12-04 20:12:29 +01001219 }
1220
Ingo Molnaree060942008-12-13 09:00:03 +01001221 return atomic64_read(&counter->count);
Thomas Gleixner0793a612008-12-04 20:12:29 +01001222}
1223
Paul Mackerrasa63eaf32009-05-22 14:17:31 +10001224/*
1225 * Initialize the perf_counter context in a task_struct:
1226 */
1227static void
1228__perf_counter_init_context(struct perf_counter_context *ctx,
1229 struct task_struct *task)
1230{
1231 memset(ctx, 0, sizeof(*ctx));
1232 spin_lock_init(&ctx->lock);
1233 mutex_init(&ctx->mutex);
1234 INIT_LIST_HEAD(&ctx->counter_list);
1235 INIT_LIST_HEAD(&ctx->event_list);
1236 atomic_set(&ctx->refcount, 1);
1237 ctx->task = task;
1238}
1239
Thomas Gleixner0793a612008-12-04 20:12:29 +01001240static void put_context(struct perf_counter_context *ctx)
1241{
1242 if (ctx->task)
1243 put_task_struct(ctx->task);
1244}
1245
1246static struct perf_counter_context *find_get_context(pid_t pid, int cpu)
1247{
1248 struct perf_cpu_context *cpuctx;
1249 struct perf_counter_context *ctx;
Paul Mackerrasa63eaf32009-05-22 14:17:31 +10001250 struct perf_counter_context *tctx;
Thomas Gleixner0793a612008-12-04 20:12:29 +01001251 struct task_struct *task;
1252
1253 /*
1254 * If cpu is not a wildcard then this is a percpu counter:
1255 */
1256 if (cpu != -1) {
1257 /* Must be root to operate on a CPU counter: */
Peter Zijlstra1ccd1542009-04-09 10:53:45 +02001258 if (sysctl_perf_counter_priv && !capable(CAP_SYS_ADMIN))
Thomas Gleixner0793a612008-12-04 20:12:29 +01001259 return ERR_PTR(-EACCES);
1260
1261 if (cpu < 0 || cpu > num_possible_cpus())
1262 return ERR_PTR(-EINVAL);
1263
1264 /*
1265 * We could be clever and allow to attach a counter to an
1266 * offline CPU and activate it when the CPU comes up, but
1267 * that's for later.
1268 */
1269 if (!cpu_isset(cpu, cpu_online_map))
1270 return ERR_PTR(-ENODEV);
1271
1272 cpuctx = &per_cpu(perf_cpu_context, cpu);
1273 ctx = &cpuctx->ctx;
1274
Thomas Gleixner0793a612008-12-04 20:12:29 +01001275 return ctx;
1276 }
1277
1278 rcu_read_lock();
1279 if (!pid)
1280 task = current;
1281 else
1282 task = find_task_by_vpid(pid);
1283 if (task)
1284 get_task_struct(task);
1285 rcu_read_unlock();
1286
1287 if (!task)
1288 return ERR_PTR(-ESRCH);
1289
Thomas Gleixner0793a612008-12-04 20:12:29 +01001290 /* Reuse ptrace permission checks for now. */
1291 if (!ptrace_may_access(task, PTRACE_MODE_READ)) {
Paul Mackerrasa63eaf32009-05-22 14:17:31 +10001292 put_task_struct(task);
Thomas Gleixner0793a612008-12-04 20:12:29 +01001293 return ERR_PTR(-EACCES);
1294 }
1295
Paul Mackerrasa63eaf32009-05-22 14:17:31 +10001296 ctx = task->perf_counter_ctxp;
1297 if (!ctx) {
1298 ctx = kmalloc(sizeof(struct perf_counter_context), GFP_KERNEL);
1299 if (!ctx) {
1300 put_task_struct(task);
1301 return ERR_PTR(-ENOMEM);
1302 }
1303 __perf_counter_init_context(ctx, task);
1304 /*
1305 * Make sure other cpus see correct values for *ctx
1306 * once task->perf_counter_ctxp is visible to them.
1307 */
1308 smp_wmb();
1309 tctx = cmpxchg(&task->perf_counter_ctxp, NULL, ctx);
1310 if (tctx) {
1311 /*
1312 * We raced with some other task; use
1313 * the context they set.
1314 */
1315 kfree(ctx);
1316 ctx = tctx;
1317 }
1318 }
1319
Thomas Gleixner0793a612008-12-04 20:12:29 +01001320 return ctx;
1321}
1322
Peter Zijlstra592903c2009-03-13 12:21:36 +01001323static void free_counter_rcu(struct rcu_head *head)
1324{
1325 struct perf_counter *counter;
1326
1327 counter = container_of(head, struct perf_counter, rcu_head);
Paul Mackerrasa63eaf32009-05-22 14:17:31 +10001328 put_ctx(counter->ctx);
Peter Zijlstra592903c2009-03-13 12:21:36 +01001329 kfree(counter);
1330}
1331
Peter Zijlstra925d5192009-03-30 19:07:02 +02001332static void perf_pending_sync(struct perf_counter *counter);
1333
Peter Zijlstraf1600952009-03-19 20:26:16 +01001334static void free_counter(struct perf_counter *counter)
1335{
Peter Zijlstra925d5192009-03-30 19:07:02 +02001336 perf_pending_sync(counter);
1337
Peter Zijlstra7fc23a52009-05-08 18:52:21 +02001338 atomic_dec(&nr_counters);
Peter Zijlstra9ee318a2009-04-09 10:53:44 +02001339 if (counter->hw_event.mmap)
1340 atomic_dec(&nr_mmap_tracking);
1341 if (counter->hw_event.munmap)
1342 atomic_dec(&nr_munmap_tracking);
1343 if (counter->hw_event.comm)
1344 atomic_dec(&nr_comm_tracking);
1345
Peter Zijlstrae077df42009-03-19 20:26:17 +01001346 if (counter->destroy)
1347 counter->destroy(counter);
1348
Peter Zijlstraf1600952009-03-19 20:26:16 +01001349 call_rcu(&counter->rcu_head, free_counter_rcu);
1350}
1351
Thomas Gleixner0793a612008-12-04 20:12:29 +01001352/*
1353 * Called when the last reference to the file is gone.
1354 */
1355static int perf_release(struct inode *inode, struct file *file)
1356{
1357 struct perf_counter *counter = file->private_data;
1358 struct perf_counter_context *ctx = counter->ctx;
1359
1360 file->private_data = NULL;
1361
Paul Mackerrasd859e292009-01-17 18:10:22 +11001362 mutex_lock(&ctx->mutex);
Ingo Molnar04289bb2008-12-11 08:38:42 +01001363 perf_counter_remove_from_context(counter);
Paul Mackerrasd859e292009-01-17 18:10:22 +11001364 mutex_unlock(&ctx->mutex);
Thomas Gleixner0793a612008-12-04 20:12:29 +01001365
Peter Zijlstra082ff5a2009-05-23 18:29:00 +02001366 mutex_lock(&counter->owner->perf_counter_mutex);
1367 list_del_init(&counter->owner_entry);
1368 mutex_unlock(&counter->owner->perf_counter_mutex);
1369 put_task_struct(counter->owner);
1370
Peter Zijlstraf1600952009-03-19 20:26:16 +01001371 free_counter(counter);
Mike Galbraith5af75912009-02-11 10:53:37 +01001372 put_context(ctx);
Thomas Gleixner0793a612008-12-04 20:12:29 +01001373
1374 return 0;
1375}
1376
1377/*
1378 * Read the performance counter - simple non blocking version for now
1379 */
1380static ssize_t
1381perf_read_hw(struct perf_counter *counter, char __user *buf, size_t count)
1382{
Paul Mackerras53cfbf52009-03-25 22:46:58 +11001383 u64 values[3];
1384 int n;
Thomas Gleixner0793a612008-12-04 20:12:29 +01001385
Paul Mackerras3b6f9e52009-01-14 21:00:30 +11001386 /*
1387 * Return end-of-file for a read on a counter that is in
1388 * error state (i.e. because it was pinned but it couldn't be
1389 * scheduled on to the CPU at some point).
1390 */
1391 if (counter->state == PERF_COUNTER_STATE_ERROR)
1392 return 0;
1393
Peter Zijlstrafccc7142009-05-23 18:28:56 +02001394 mutex_lock(&counter->child_mutex);
Paul Mackerras53cfbf52009-03-25 22:46:58 +11001395 values[0] = perf_counter_read(counter);
1396 n = 1;
1397 if (counter->hw_event.read_format & PERF_FORMAT_TOTAL_TIME_ENABLED)
1398 values[n++] = counter->total_time_enabled +
1399 atomic64_read(&counter->child_total_time_enabled);
1400 if (counter->hw_event.read_format & PERF_FORMAT_TOTAL_TIME_RUNNING)
1401 values[n++] = counter->total_time_running +
1402 atomic64_read(&counter->child_total_time_running);
Peter Zijlstrafccc7142009-05-23 18:28:56 +02001403 mutex_unlock(&counter->child_mutex);
Thomas Gleixner0793a612008-12-04 20:12:29 +01001404
Paul Mackerras53cfbf52009-03-25 22:46:58 +11001405 if (count < n * sizeof(u64))
1406 return -EINVAL;
1407 count = n * sizeof(u64);
1408
1409 if (copy_to_user(buf, values, count))
1410 return -EFAULT;
1411
1412 return count;
Thomas Gleixner0793a612008-12-04 20:12:29 +01001413}
1414
1415static ssize_t
Thomas Gleixner0793a612008-12-04 20:12:29 +01001416perf_read(struct file *file, char __user *buf, size_t count, loff_t *ppos)
1417{
1418 struct perf_counter *counter = file->private_data;
1419
Peter Zijlstra7b732a72009-03-23 18:22:10 +01001420 return perf_read_hw(counter, buf, count);
Thomas Gleixner0793a612008-12-04 20:12:29 +01001421}
1422
1423static unsigned int perf_poll(struct file *file, poll_table *wait)
1424{
1425 struct perf_counter *counter = file->private_data;
Peter Zijlstrac7138f32009-03-24 13:18:16 +01001426 struct perf_mmap_data *data;
Peter Zijlstrac33a0bc2009-05-01 12:23:16 +02001427 unsigned int events = POLL_HUP;
Peter Zijlstrac7138f32009-03-24 13:18:16 +01001428
1429 rcu_read_lock();
1430 data = rcu_dereference(counter->data);
1431 if (data)
Peter Zijlstrac33a0bc2009-05-01 12:23:16 +02001432 events = atomic_xchg(&data->poll, 0);
Peter Zijlstrac7138f32009-03-24 13:18:16 +01001433 rcu_read_unlock();
Thomas Gleixner0793a612008-12-04 20:12:29 +01001434
1435 poll_wait(file, &counter->waitq, wait);
1436
Thomas Gleixner0793a612008-12-04 20:12:29 +01001437 return events;
1438}
1439
Peter Zijlstra6de6a7b2009-05-05 17:50:23 +02001440static void perf_counter_reset(struct perf_counter *counter)
1441{
Peter Zijlstra3df5eda2009-05-08 18:52:22 +02001442 (void)perf_counter_read(counter);
Paul Mackerras615a3f12009-05-11 15:50:21 +10001443 atomic64_set(&counter->count, 0);
Peter Zijlstra3df5eda2009-05-08 18:52:22 +02001444 perf_counter_update_userpage(counter);
1445}
1446
1447static void perf_counter_for_each_sibling(struct perf_counter *counter,
1448 void (*func)(struct perf_counter *))
1449{
1450 struct perf_counter_context *ctx = counter->ctx;
1451 struct perf_counter *sibling;
1452
Peter Zijlstra682076a2009-05-23 18:28:57 +02001453 mutex_lock(&ctx->mutex);
Peter Zijlstra3df5eda2009-05-08 18:52:22 +02001454 counter = counter->group_leader;
1455
1456 func(counter);
1457 list_for_each_entry(sibling, &counter->sibling_list, list_entry)
1458 func(sibling);
Peter Zijlstra682076a2009-05-23 18:28:57 +02001459 mutex_unlock(&ctx->mutex);
Peter Zijlstra3df5eda2009-05-08 18:52:22 +02001460}
1461
1462static void perf_counter_for_each_child(struct perf_counter *counter,
1463 void (*func)(struct perf_counter *))
1464{
1465 struct perf_counter *child;
1466
Peter Zijlstrafccc7142009-05-23 18:28:56 +02001467 mutex_lock(&counter->child_mutex);
Peter Zijlstra3df5eda2009-05-08 18:52:22 +02001468 func(counter);
1469 list_for_each_entry(child, &counter->child_list, child_list)
1470 func(child);
Peter Zijlstrafccc7142009-05-23 18:28:56 +02001471 mutex_unlock(&counter->child_mutex);
Peter Zijlstra3df5eda2009-05-08 18:52:22 +02001472}
1473
1474static void perf_counter_for_each(struct perf_counter *counter,
1475 void (*func)(struct perf_counter *))
1476{
1477 struct perf_counter *child;
1478
Peter Zijlstrafccc7142009-05-23 18:28:56 +02001479 mutex_lock(&counter->child_mutex);
Peter Zijlstra3df5eda2009-05-08 18:52:22 +02001480 perf_counter_for_each_sibling(counter, func);
1481 list_for_each_entry(child, &counter->child_list, child_list)
1482 perf_counter_for_each_sibling(child, func);
Peter Zijlstrafccc7142009-05-23 18:28:56 +02001483 mutex_unlock(&counter->child_mutex);
Peter Zijlstra6de6a7b2009-05-05 17:50:23 +02001484}
1485
Paul Mackerrasd859e292009-01-17 18:10:22 +11001486static long perf_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
1487{
1488 struct perf_counter *counter = file->private_data;
Peter Zijlstra3df5eda2009-05-08 18:52:22 +02001489 void (*func)(struct perf_counter *);
1490 u32 flags = arg;
Paul Mackerrasd859e292009-01-17 18:10:22 +11001491
1492 switch (cmd) {
1493 case PERF_COUNTER_IOC_ENABLE:
Peter Zijlstra3df5eda2009-05-08 18:52:22 +02001494 func = perf_counter_enable;
Paul Mackerrasd859e292009-01-17 18:10:22 +11001495 break;
1496 case PERF_COUNTER_IOC_DISABLE:
Peter Zijlstra3df5eda2009-05-08 18:52:22 +02001497 func = perf_counter_disable;
Peter Zijlstra79f14642009-04-06 11:45:07 +02001498 break;
Peter Zijlstra6de6a7b2009-05-05 17:50:23 +02001499 case PERF_COUNTER_IOC_RESET:
Peter Zijlstra3df5eda2009-05-08 18:52:22 +02001500 func = perf_counter_reset;
Peter Zijlstra6de6a7b2009-05-05 17:50:23 +02001501 break;
Peter Zijlstra3df5eda2009-05-08 18:52:22 +02001502
1503 case PERF_COUNTER_IOC_REFRESH:
1504 return perf_counter_refresh(counter, arg);
Paul Mackerrasd859e292009-01-17 18:10:22 +11001505 default:
Peter Zijlstra3df5eda2009-05-08 18:52:22 +02001506 return -ENOTTY;
Paul Mackerrasd859e292009-01-17 18:10:22 +11001507 }
Peter Zijlstra3df5eda2009-05-08 18:52:22 +02001508
1509 if (flags & PERF_IOC_FLAG_GROUP)
1510 perf_counter_for_each(counter, func);
1511 else
1512 perf_counter_for_each_child(counter, func);
1513
1514 return 0;
Paul Mackerrasd859e292009-01-17 18:10:22 +11001515}
1516
Peter Zijlstra38ff6672009-03-30 19:07:03 +02001517/*
1518 * Callers need to ensure there can be no nesting of this function, otherwise
1519 * the seqlock logic goes bad. We can not serialize this because the arch
1520 * code calls this from NMI context.
1521 */
1522void perf_counter_update_userpage(struct perf_counter *counter)
Paul Mackerras37d81822009-03-23 18:22:08 +01001523{
Peter Zijlstra38ff6672009-03-30 19:07:03 +02001524 struct perf_mmap_data *data;
1525 struct perf_counter_mmap_page *userpg;
1526
1527 rcu_read_lock();
1528 data = rcu_dereference(counter->data);
1529 if (!data)
1530 goto unlock;
1531
1532 userpg = data->user_page;
Paul Mackerras37d81822009-03-23 18:22:08 +01001533
Peter Zijlstra7b732a72009-03-23 18:22:10 +01001534 /*
1535 * Disable preemption so as to not let the corresponding user-space
1536 * spin too long if we get preempted.
1537 */
1538 preempt_disable();
Paul Mackerras37d81822009-03-23 18:22:08 +01001539 ++userpg->lock;
Peter Zijlstra92f22a32009-04-02 11:12:04 +02001540 barrier();
Paul Mackerras37d81822009-03-23 18:22:08 +01001541 userpg->index = counter->hw.idx;
1542 userpg->offset = atomic64_read(&counter->count);
1543 if (counter->state == PERF_COUNTER_STATE_ACTIVE)
1544 userpg->offset -= atomic64_read(&counter->hw.prev_count);
Peter Zijlstra7b732a72009-03-23 18:22:10 +01001545
Peter Zijlstra92f22a32009-04-02 11:12:04 +02001546 barrier();
Paul Mackerras37d81822009-03-23 18:22:08 +01001547 ++userpg->lock;
Peter Zijlstra7b732a72009-03-23 18:22:10 +01001548 preempt_enable();
Peter Zijlstra38ff6672009-03-30 19:07:03 +02001549unlock:
Peter Zijlstra7b732a72009-03-23 18:22:10 +01001550 rcu_read_unlock();
Paul Mackerras37d81822009-03-23 18:22:08 +01001551}
1552
1553static int perf_mmap_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
1554{
1555 struct perf_counter *counter = vma->vm_file->private_data;
Peter Zijlstra7b732a72009-03-23 18:22:10 +01001556 struct perf_mmap_data *data;
1557 int ret = VM_FAULT_SIGBUS;
Paul Mackerras37d81822009-03-23 18:22:08 +01001558
Peter Zijlstra7b732a72009-03-23 18:22:10 +01001559 rcu_read_lock();
1560 data = rcu_dereference(counter->data);
1561 if (!data)
1562 goto unlock;
Paul Mackerras37d81822009-03-23 18:22:08 +01001563
Peter Zijlstra7b732a72009-03-23 18:22:10 +01001564 if (vmf->pgoff == 0) {
1565 vmf->page = virt_to_page(data->user_page);
1566 } else {
1567 int nr = vmf->pgoff - 1;
1568
1569 if ((unsigned)nr > data->nr_pages)
1570 goto unlock;
1571
1572 vmf->page = virt_to_page(data->data_pages[nr]);
1573 }
Paul Mackerras37d81822009-03-23 18:22:08 +01001574 get_page(vmf->page);
Peter Zijlstra7b732a72009-03-23 18:22:10 +01001575 ret = 0;
1576unlock:
1577 rcu_read_unlock();
1578
1579 return ret;
1580}
1581
1582static int perf_mmap_data_alloc(struct perf_counter *counter, int nr_pages)
1583{
1584 struct perf_mmap_data *data;
1585 unsigned long size;
1586 int i;
1587
1588 WARN_ON(atomic_read(&counter->mmap_count));
1589
1590 size = sizeof(struct perf_mmap_data);
1591 size += nr_pages * sizeof(void *);
1592
1593 data = kzalloc(size, GFP_KERNEL);
1594 if (!data)
1595 goto fail;
1596
1597 data->user_page = (void *)get_zeroed_page(GFP_KERNEL);
1598 if (!data->user_page)
1599 goto fail_user_page;
1600
1601 for (i = 0; i < nr_pages; i++) {
1602 data->data_pages[i] = (void *)get_zeroed_page(GFP_KERNEL);
1603 if (!data->data_pages[i])
1604 goto fail_data_pages;
1605 }
1606
1607 data->nr_pages = nr_pages;
Peter Zijlstra22c15582009-05-05 17:50:25 +02001608 atomic_set(&data->lock, -1);
Peter Zijlstra7b732a72009-03-23 18:22:10 +01001609
1610 rcu_assign_pointer(counter->data, data);
1611
Paul Mackerras37d81822009-03-23 18:22:08 +01001612 return 0;
Peter Zijlstra7b732a72009-03-23 18:22:10 +01001613
1614fail_data_pages:
1615 for (i--; i >= 0; i--)
1616 free_page((unsigned long)data->data_pages[i]);
1617
1618 free_page((unsigned long)data->user_page);
1619
1620fail_user_page:
1621 kfree(data);
1622
1623fail:
1624 return -ENOMEM;
1625}
1626
1627static void __perf_mmap_data_free(struct rcu_head *rcu_head)
1628{
1629 struct perf_mmap_data *data = container_of(rcu_head,
1630 struct perf_mmap_data, rcu_head);
1631 int i;
1632
1633 free_page((unsigned long)data->user_page);
1634 for (i = 0; i < data->nr_pages; i++)
1635 free_page((unsigned long)data->data_pages[i]);
1636 kfree(data);
1637}
1638
1639static void perf_mmap_data_free(struct perf_counter *counter)
1640{
1641 struct perf_mmap_data *data = counter->data;
1642
1643 WARN_ON(atomic_read(&counter->mmap_count));
1644
1645 rcu_assign_pointer(counter->data, NULL);
1646 call_rcu(&data->rcu_head, __perf_mmap_data_free);
1647}
1648
1649static void perf_mmap_open(struct vm_area_struct *vma)
1650{
1651 struct perf_counter *counter = vma->vm_file->private_data;
1652
1653 atomic_inc(&counter->mmap_count);
1654}
1655
1656static void perf_mmap_close(struct vm_area_struct *vma)
1657{
1658 struct perf_counter *counter = vma->vm_file->private_data;
1659
1660 if (atomic_dec_and_mutex_lock(&counter->mmap_count,
1661 &counter->mmap_mutex)) {
Peter Zijlstra789f90f2009-05-15 15:19:27 +02001662 struct user_struct *user = current_user();
1663
1664 atomic_long_sub(counter->data->nr_pages + 1, &user->locked_vm);
Peter Zijlstrac5078f72009-05-05 17:50:24 +02001665 vma->vm_mm->locked_vm -= counter->data->nr_locked;
Peter Zijlstra7b732a72009-03-23 18:22:10 +01001666 perf_mmap_data_free(counter);
1667 mutex_unlock(&counter->mmap_mutex);
1668 }
Paul Mackerras37d81822009-03-23 18:22:08 +01001669}
1670
1671static struct vm_operations_struct perf_mmap_vmops = {
Peter Zijlstraebb3c4c2009-04-06 11:45:05 +02001672 .open = perf_mmap_open,
Peter Zijlstra7b732a72009-03-23 18:22:10 +01001673 .close = perf_mmap_close,
Paul Mackerras37d81822009-03-23 18:22:08 +01001674 .fault = perf_mmap_fault,
1675};
1676
1677static int perf_mmap(struct file *file, struct vm_area_struct *vma)
1678{
1679 struct perf_counter *counter = file->private_data;
Peter Zijlstra789f90f2009-05-15 15:19:27 +02001680 struct user_struct *user = current_user();
Peter Zijlstra7b732a72009-03-23 18:22:10 +01001681 unsigned long vma_size;
1682 unsigned long nr_pages;
Peter Zijlstra789f90f2009-05-15 15:19:27 +02001683 unsigned long user_locked, user_lock_limit;
Peter Zijlstra7b732a72009-03-23 18:22:10 +01001684 unsigned long locked, lock_limit;
Peter Zijlstra789f90f2009-05-15 15:19:27 +02001685 long user_extra, extra;
Peter Zijlstra7b732a72009-03-23 18:22:10 +01001686 int ret = 0;
Paul Mackerras37d81822009-03-23 18:22:08 +01001687
1688 if (!(vma->vm_flags & VM_SHARED) || (vma->vm_flags & VM_WRITE))
1689 return -EINVAL;
Peter Zijlstra7b732a72009-03-23 18:22:10 +01001690
1691 vma_size = vma->vm_end - vma->vm_start;
1692 nr_pages = (vma_size / PAGE_SIZE) - 1;
1693
Peter Zijlstra7730d862009-03-25 12:48:31 +01001694 /*
1695 * If we have data pages ensure they're a power-of-two number, so we
1696 * can do bitmasks instead of modulo.
1697 */
1698 if (nr_pages != 0 && !is_power_of_2(nr_pages))
Paul Mackerras37d81822009-03-23 18:22:08 +01001699 return -EINVAL;
1700
Peter Zijlstra7b732a72009-03-23 18:22:10 +01001701 if (vma_size != PAGE_SIZE * (1 + nr_pages))
Paul Mackerras37d81822009-03-23 18:22:08 +01001702 return -EINVAL;
1703
Peter Zijlstra7b732a72009-03-23 18:22:10 +01001704 if (vma->vm_pgoff != 0)
1705 return -EINVAL;
Paul Mackerras37d81822009-03-23 18:22:08 +01001706
Peter Zijlstraebb3c4c2009-04-06 11:45:05 +02001707 mutex_lock(&counter->mmap_mutex);
1708 if (atomic_inc_not_zero(&counter->mmap_count)) {
1709 if (nr_pages != counter->data->nr_pages)
1710 ret = -EINVAL;
1711 goto unlock;
1712 }
1713
Peter Zijlstra789f90f2009-05-15 15:19:27 +02001714 user_extra = nr_pages + 1;
1715 user_lock_limit = sysctl_perf_counter_mlock >> (PAGE_SHIFT - 10);
1716 user_locked = atomic_long_read(&user->locked_vm) + user_extra;
Peter Zijlstrac5078f72009-05-05 17:50:24 +02001717
Peter Zijlstra789f90f2009-05-15 15:19:27 +02001718 extra = 0;
1719 if (user_locked > user_lock_limit)
1720 extra = user_locked - user_lock_limit;
Peter Zijlstra7b732a72009-03-23 18:22:10 +01001721
1722 lock_limit = current->signal->rlim[RLIMIT_MEMLOCK].rlim_cur;
1723 lock_limit >>= PAGE_SHIFT;
Peter Zijlstra789f90f2009-05-15 15:19:27 +02001724 locked = vma->vm_mm->locked_vm + extra;
Peter Zijlstra7b732a72009-03-23 18:22:10 +01001725
Peter Zijlstraebb3c4c2009-04-06 11:45:05 +02001726 if ((locked > lock_limit) && !capable(CAP_IPC_LOCK)) {
1727 ret = -EPERM;
1728 goto unlock;
1729 }
Peter Zijlstra7b732a72009-03-23 18:22:10 +01001730
1731 WARN_ON(counter->data);
1732 ret = perf_mmap_data_alloc(counter, nr_pages);
Peter Zijlstraebb3c4c2009-04-06 11:45:05 +02001733 if (ret)
1734 goto unlock;
1735
1736 atomic_set(&counter->mmap_count, 1);
Peter Zijlstra789f90f2009-05-15 15:19:27 +02001737 atomic_long_add(user_extra, &user->locked_vm);
Peter Zijlstrac5078f72009-05-05 17:50:24 +02001738 vma->vm_mm->locked_vm += extra;
1739 counter->data->nr_locked = extra;
Peter Zijlstraebb3c4c2009-04-06 11:45:05 +02001740unlock:
Peter Zijlstra7b732a72009-03-23 18:22:10 +01001741 mutex_unlock(&counter->mmap_mutex);
Paul Mackerras37d81822009-03-23 18:22:08 +01001742
1743 vma->vm_flags &= ~VM_MAYWRITE;
1744 vma->vm_flags |= VM_RESERVED;
1745 vma->vm_ops = &perf_mmap_vmops;
Peter Zijlstra7b732a72009-03-23 18:22:10 +01001746
1747 return ret;
Paul Mackerras37d81822009-03-23 18:22:08 +01001748}
1749
Peter Zijlstra3c446b32009-04-06 11:45:01 +02001750static int perf_fasync(int fd, struct file *filp, int on)
1751{
1752 struct perf_counter *counter = filp->private_data;
1753 struct inode *inode = filp->f_path.dentry->d_inode;
1754 int retval;
1755
1756 mutex_lock(&inode->i_mutex);
1757 retval = fasync_helper(fd, filp, on, &counter->fasync);
1758 mutex_unlock(&inode->i_mutex);
1759
1760 if (retval < 0)
1761 return retval;
1762
1763 return 0;
1764}
1765
Thomas Gleixner0793a612008-12-04 20:12:29 +01001766static const struct file_operations perf_fops = {
1767 .release = perf_release,
1768 .read = perf_read,
1769 .poll = perf_poll,
Paul Mackerrasd859e292009-01-17 18:10:22 +11001770 .unlocked_ioctl = perf_ioctl,
1771 .compat_ioctl = perf_ioctl,
Paul Mackerras37d81822009-03-23 18:22:08 +01001772 .mmap = perf_mmap,
Peter Zijlstra3c446b32009-04-06 11:45:01 +02001773 .fasync = perf_fasync,
Thomas Gleixner0793a612008-12-04 20:12:29 +01001774};
1775
Peter Zijlstra15dbf272009-03-13 12:21:32 +01001776/*
Peter Zijlstra925d5192009-03-30 19:07:02 +02001777 * Perf counter wakeup
1778 *
1779 * If there's data, ensure we set the poll() state and publish everything
1780 * to user-space before waking everybody up.
1781 */
1782
1783void perf_counter_wakeup(struct perf_counter *counter)
1784{
Peter Zijlstra925d5192009-03-30 19:07:02 +02001785 wake_up_all(&counter->waitq);
Peter Zijlstra4c9e2542009-04-06 11:45:09 +02001786
1787 if (counter->pending_kill) {
1788 kill_fasync(&counter->fasync, SIGIO, counter->pending_kill);
1789 counter->pending_kill = 0;
1790 }
Peter Zijlstra925d5192009-03-30 19:07:02 +02001791}
1792
1793/*
1794 * Pending wakeups
1795 *
1796 * Handle the case where we need to wakeup up from NMI (or rq->lock) context.
1797 *
1798 * The NMI bit means we cannot possibly take locks. Therefore, maintain a
1799 * single linked list and use cmpxchg() to add entries lockless.
1800 */
1801
Peter Zijlstra79f14642009-04-06 11:45:07 +02001802static void perf_pending_counter(struct perf_pending_entry *entry)
1803{
1804 struct perf_counter *counter = container_of(entry,
1805 struct perf_counter, pending);
1806
1807 if (counter->pending_disable) {
1808 counter->pending_disable = 0;
1809 perf_counter_disable(counter);
1810 }
1811
1812 if (counter->pending_wakeup) {
1813 counter->pending_wakeup = 0;
1814 perf_counter_wakeup(counter);
1815 }
1816}
1817
Peter Zijlstra671dec52009-04-06 11:45:02 +02001818#define PENDING_TAIL ((struct perf_pending_entry *)-1UL)
Peter Zijlstra925d5192009-03-30 19:07:02 +02001819
Peter Zijlstra671dec52009-04-06 11:45:02 +02001820static DEFINE_PER_CPU(struct perf_pending_entry *, perf_pending_head) = {
Peter Zijlstra925d5192009-03-30 19:07:02 +02001821 PENDING_TAIL,
1822};
1823
Peter Zijlstra671dec52009-04-06 11:45:02 +02001824static void perf_pending_queue(struct perf_pending_entry *entry,
1825 void (*func)(struct perf_pending_entry *))
Peter Zijlstra925d5192009-03-30 19:07:02 +02001826{
Peter Zijlstra671dec52009-04-06 11:45:02 +02001827 struct perf_pending_entry **head;
Peter Zijlstra925d5192009-03-30 19:07:02 +02001828
Peter Zijlstra671dec52009-04-06 11:45:02 +02001829 if (cmpxchg(&entry->next, NULL, PENDING_TAIL) != NULL)
Peter Zijlstra925d5192009-03-30 19:07:02 +02001830 return;
1831
Peter Zijlstra671dec52009-04-06 11:45:02 +02001832 entry->func = func;
1833
1834 head = &get_cpu_var(perf_pending_head);
Peter Zijlstra925d5192009-03-30 19:07:02 +02001835
1836 do {
Peter Zijlstra671dec52009-04-06 11:45:02 +02001837 entry->next = *head;
1838 } while (cmpxchg(head, entry->next, entry) != entry->next);
Peter Zijlstra925d5192009-03-30 19:07:02 +02001839
1840 set_perf_counter_pending();
1841
Peter Zijlstra671dec52009-04-06 11:45:02 +02001842 put_cpu_var(perf_pending_head);
Peter Zijlstra925d5192009-03-30 19:07:02 +02001843}
1844
1845static int __perf_pending_run(void)
1846{
Peter Zijlstra671dec52009-04-06 11:45:02 +02001847 struct perf_pending_entry *list;
Peter Zijlstra925d5192009-03-30 19:07:02 +02001848 int nr = 0;
1849
Peter Zijlstra671dec52009-04-06 11:45:02 +02001850 list = xchg(&__get_cpu_var(perf_pending_head), PENDING_TAIL);
Peter Zijlstra925d5192009-03-30 19:07:02 +02001851 while (list != PENDING_TAIL) {
Peter Zijlstra671dec52009-04-06 11:45:02 +02001852 void (*func)(struct perf_pending_entry *);
1853 struct perf_pending_entry *entry = list;
Peter Zijlstra925d5192009-03-30 19:07:02 +02001854
1855 list = list->next;
1856
Peter Zijlstra671dec52009-04-06 11:45:02 +02001857 func = entry->func;
1858 entry->next = NULL;
Peter Zijlstra925d5192009-03-30 19:07:02 +02001859 /*
1860 * Ensure we observe the unqueue before we issue the wakeup,
1861 * so that we won't be waiting forever.
1862 * -- see perf_not_pending().
1863 */
1864 smp_wmb();
1865
Peter Zijlstra671dec52009-04-06 11:45:02 +02001866 func(entry);
Peter Zijlstra925d5192009-03-30 19:07:02 +02001867 nr++;
1868 }
1869
1870 return nr;
1871}
1872
1873static inline int perf_not_pending(struct perf_counter *counter)
1874{
1875 /*
1876 * If we flush on whatever cpu we run, there is a chance we don't
1877 * need to wait.
1878 */
1879 get_cpu();
1880 __perf_pending_run();
1881 put_cpu();
1882
1883 /*
1884 * Ensure we see the proper queue state before going to sleep
1885 * so that we do not miss the wakeup. -- see perf_pending_handle()
1886 */
1887 smp_rmb();
Peter Zijlstra671dec52009-04-06 11:45:02 +02001888 return counter->pending.next == NULL;
Peter Zijlstra925d5192009-03-30 19:07:02 +02001889}
1890
1891static void perf_pending_sync(struct perf_counter *counter)
1892{
1893 wait_event(counter->waitq, perf_not_pending(counter));
1894}
1895
1896void perf_counter_do_pending(void)
1897{
1898 __perf_pending_run();
1899}
1900
1901/*
Peter Zijlstra394ee072009-03-30 19:07:14 +02001902 * Callchain support -- arch specific
1903 */
1904
Peter Zijlstra9c03d882009-04-06 11:45:00 +02001905__weak struct perf_callchain_entry *perf_callchain(struct pt_regs *regs)
Peter Zijlstra394ee072009-03-30 19:07:14 +02001906{
1907 return NULL;
1908}
1909
1910/*
Peter Zijlstra0322cd62009-03-19 20:26:19 +01001911 * Output
1912 */
1913
Peter Zijlstrab9cacc72009-03-25 12:30:22 +01001914struct perf_output_handle {
1915 struct perf_counter *counter;
1916 struct perf_mmap_data *data;
1917 unsigned int offset;
Peter Zijlstra63e35b22009-03-25 12:30:24 +01001918 unsigned int head;
Peter Zijlstra78d613e2009-03-30 19:07:11 +02001919 int nmi;
Peter Zijlstra4c9e2542009-04-06 11:45:09 +02001920 int overflow;
Peter Zijlstrac33a0bc2009-05-01 12:23:16 +02001921 int locked;
1922 unsigned long flags;
Peter Zijlstrab9cacc72009-03-25 12:30:22 +01001923};
1924
Peter Zijlstrac33a0bc2009-05-01 12:23:16 +02001925static void perf_output_wakeup(struct perf_output_handle *handle)
Peter Zijlstra78d613e2009-03-30 19:07:11 +02001926{
Peter Zijlstrac33a0bc2009-05-01 12:23:16 +02001927 atomic_set(&handle->data->poll, POLL_IN);
1928
Peter Zijlstra671dec52009-04-06 11:45:02 +02001929 if (handle->nmi) {
Peter Zijlstra79f14642009-04-06 11:45:07 +02001930 handle->counter->pending_wakeup = 1;
Peter Zijlstra671dec52009-04-06 11:45:02 +02001931 perf_pending_queue(&handle->counter->pending,
Peter Zijlstra79f14642009-04-06 11:45:07 +02001932 perf_pending_counter);
Peter Zijlstra671dec52009-04-06 11:45:02 +02001933 } else
Peter Zijlstra78d613e2009-03-30 19:07:11 +02001934 perf_counter_wakeup(handle->counter);
1935}
1936
Peter Zijlstrac33a0bc2009-05-01 12:23:16 +02001937/*
1938 * Curious locking construct.
1939 *
1940 * We need to ensure a later event doesn't publish a head when a former
1941 * event isn't done writing. However since we need to deal with NMIs we
1942 * cannot fully serialize things.
1943 *
1944 * What we do is serialize between CPUs so we only have to deal with NMI
1945 * nesting on a single CPU.
1946 *
1947 * We only publish the head (and generate a wakeup) when the outer-most
1948 * event completes.
1949 */
1950static void perf_output_lock(struct perf_output_handle *handle)
1951{
1952 struct perf_mmap_data *data = handle->data;
1953 int cpu;
1954
1955 handle->locked = 0;
1956
1957 local_irq_save(handle->flags);
1958 cpu = smp_processor_id();
1959
1960 if (in_nmi() && atomic_read(&data->lock) == cpu)
1961 return;
1962
Peter Zijlstra22c15582009-05-05 17:50:25 +02001963 while (atomic_cmpxchg(&data->lock, -1, cpu) != -1)
Peter Zijlstrac33a0bc2009-05-01 12:23:16 +02001964 cpu_relax();
1965
1966 handle->locked = 1;
1967}
1968
1969static void perf_output_unlock(struct perf_output_handle *handle)
1970{
1971 struct perf_mmap_data *data = handle->data;
1972 int head, cpu;
1973
Peter Zijlstrac66de4a2009-05-05 17:50:22 +02001974 data->done_head = data->head;
Peter Zijlstrac33a0bc2009-05-01 12:23:16 +02001975
1976 if (!handle->locked)
1977 goto out;
1978
1979again:
1980 /*
1981 * The xchg implies a full barrier that ensures all writes are done
1982 * before we publish the new head, matched by a rmb() in userspace when
1983 * reading this position.
1984 */
Peter Zijlstrac66de4a2009-05-05 17:50:22 +02001985 while ((head = atomic_xchg(&data->done_head, 0)))
Peter Zijlstrac33a0bc2009-05-01 12:23:16 +02001986 data->user_page->data_head = head;
Peter Zijlstrac33a0bc2009-05-01 12:23:16 +02001987
1988 /*
Peter Zijlstrac66de4a2009-05-05 17:50:22 +02001989 * NMI can happen here, which means we can miss a done_head update.
Peter Zijlstrac33a0bc2009-05-01 12:23:16 +02001990 */
1991
Peter Zijlstra22c15582009-05-05 17:50:25 +02001992 cpu = atomic_xchg(&data->lock, -1);
Peter Zijlstrac33a0bc2009-05-01 12:23:16 +02001993 WARN_ON_ONCE(cpu != smp_processor_id());
1994
1995 /*
1996 * Therefore we have to validate we did not indeed do so.
1997 */
Peter Zijlstrac66de4a2009-05-05 17:50:22 +02001998 if (unlikely(atomic_read(&data->done_head))) {
Peter Zijlstrac33a0bc2009-05-01 12:23:16 +02001999 /*
2000 * Since we had it locked, we can lock it again.
2001 */
Peter Zijlstra22c15582009-05-05 17:50:25 +02002002 while (atomic_cmpxchg(&data->lock, -1, cpu) != -1)
Peter Zijlstrac33a0bc2009-05-01 12:23:16 +02002003 cpu_relax();
2004
2005 goto again;
2006 }
2007
Peter Zijlstrac66de4a2009-05-05 17:50:22 +02002008 if (atomic_xchg(&data->wakeup, 0))
Peter Zijlstrac33a0bc2009-05-01 12:23:16 +02002009 perf_output_wakeup(handle);
2010out:
2011 local_irq_restore(handle->flags);
2012}
2013
Peter Zijlstrab9cacc72009-03-25 12:30:22 +01002014static int perf_output_begin(struct perf_output_handle *handle,
Peter Zijlstra78d613e2009-03-30 19:07:11 +02002015 struct perf_counter *counter, unsigned int size,
Peter Zijlstra4c9e2542009-04-06 11:45:09 +02002016 int nmi, int overflow)
Peter Zijlstra0322cd62009-03-19 20:26:19 +01002017{
Peter Zijlstra7b732a72009-03-23 18:22:10 +01002018 struct perf_mmap_data *data;
Peter Zijlstrab9cacc72009-03-25 12:30:22 +01002019 unsigned int offset, head;
Peter Zijlstra0322cd62009-03-19 20:26:19 +01002020
Peter Zijlstra2023b352009-05-05 17:50:26 +02002021 /*
2022 * For inherited counters we send all the output towards the parent.
2023 */
2024 if (counter->parent)
2025 counter = counter->parent;
2026
Peter Zijlstra7b732a72009-03-23 18:22:10 +01002027 rcu_read_lock();
Peter Zijlstra7b732a72009-03-23 18:22:10 +01002028 data = rcu_dereference(counter->data);
2029 if (!data)
2030 goto out;
Peter Zijlstra0322cd62009-03-19 20:26:19 +01002031
Peter Zijlstrac33a0bc2009-05-01 12:23:16 +02002032 handle->data = data;
Peter Zijlstra4c9e2542009-04-06 11:45:09 +02002033 handle->counter = counter;
2034 handle->nmi = nmi;
2035 handle->overflow = overflow;
Peter Zijlstra78d613e2009-03-30 19:07:11 +02002036
Peter Zijlstra7b732a72009-03-23 18:22:10 +01002037 if (!data->nr_pages)
Peter Zijlstra78d613e2009-03-30 19:07:11 +02002038 goto fail;
Peter Zijlstra7b732a72009-03-23 18:22:10 +01002039
Peter Zijlstrac33a0bc2009-05-01 12:23:16 +02002040 perf_output_lock(handle);
2041
Peter Zijlstra7b732a72009-03-23 18:22:10 +01002042 do {
2043 offset = head = atomic_read(&data->head);
Peter Zijlstrac7138f32009-03-24 13:18:16 +01002044 head += size;
Peter Zijlstra7b732a72009-03-23 18:22:10 +01002045 } while (atomic_cmpxchg(&data->head, offset, head) != offset);
2046
Peter Zijlstrab9cacc72009-03-25 12:30:22 +01002047 handle->offset = offset;
Peter Zijlstra63e35b22009-03-25 12:30:24 +01002048 handle->head = head;
Peter Zijlstrac66de4a2009-05-05 17:50:22 +02002049
2050 if ((offset >> PAGE_SHIFT) != (head >> PAGE_SHIFT))
2051 atomic_set(&data->wakeup, 1);
Peter Zijlstra7b732a72009-03-23 18:22:10 +01002052
Peter Zijlstrab9cacc72009-03-25 12:30:22 +01002053 return 0;
Peter Zijlstra7b732a72009-03-23 18:22:10 +01002054
Peter Zijlstra78d613e2009-03-30 19:07:11 +02002055fail:
Peter Zijlstrac33a0bc2009-05-01 12:23:16 +02002056 perf_output_wakeup(handle);
Peter Zijlstra7b732a72009-03-23 18:22:10 +01002057out:
2058 rcu_read_unlock();
2059
Peter Zijlstrab9cacc72009-03-25 12:30:22 +01002060 return -ENOSPC;
2061}
2062
2063static void perf_output_copy(struct perf_output_handle *handle,
2064 void *buf, unsigned int len)
2065{
2066 unsigned int pages_mask;
2067 unsigned int offset;
2068 unsigned int size;
2069 void **pages;
2070
2071 offset = handle->offset;
2072 pages_mask = handle->data->nr_pages - 1;
2073 pages = handle->data->data_pages;
2074
2075 do {
2076 unsigned int page_offset;
2077 int nr;
2078
2079 nr = (offset >> PAGE_SHIFT) & pages_mask;
2080 page_offset = offset & (PAGE_SIZE - 1);
2081 size = min_t(unsigned int, PAGE_SIZE - page_offset, len);
2082
2083 memcpy(pages[nr] + page_offset, buf, size);
2084
2085 len -= size;
2086 buf += size;
2087 offset += size;
2088 } while (len);
2089
2090 handle->offset = offset;
Peter Zijlstra63e35b22009-03-25 12:30:24 +01002091
Peter Zijlstra53020fe2009-05-13 21:26:19 +02002092 /*
2093 * Check we didn't copy past our reservation window, taking the
2094 * possible unsigned int wrap into account.
2095 */
2096 WARN_ON_ONCE(((int)(handle->head - handle->offset)) < 0);
Peter Zijlstrab9cacc72009-03-25 12:30:22 +01002097}
2098
Peter Zijlstra5c148192009-03-25 12:30:23 +01002099#define perf_output_put(handle, x) \
2100 perf_output_copy((handle), &(x), sizeof(x))
2101
Peter Zijlstra78d613e2009-03-30 19:07:11 +02002102static void perf_output_end(struct perf_output_handle *handle)
Peter Zijlstrab9cacc72009-03-25 12:30:22 +01002103{
Peter Zijlstrac33a0bc2009-05-01 12:23:16 +02002104 struct perf_counter *counter = handle->counter;
2105 struct perf_mmap_data *data = handle->data;
2106
2107 int wakeup_events = counter->hw_event.wakeup_events;
Peter Zijlstrac4578102009-04-02 11:12:01 +02002108
Peter Zijlstra4c9e2542009-04-06 11:45:09 +02002109 if (handle->overflow && wakeup_events) {
Peter Zijlstrac33a0bc2009-05-01 12:23:16 +02002110 int events = atomic_inc_return(&data->events);
Peter Zijlstrac4578102009-04-02 11:12:01 +02002111 if (events >= wakeup_events) {
Peter Zijlstrac33a0bc2009-05-01 12:23:16 +02002112 atomic_sub(wakeup_events, &data->events);
Peter Zijlstrac66de4a2009-05-05 17:50:22 +02002113 atomic_set(&data->wakeup, 1);
Peter Zijlstrac4578102009-04-02 11:12:01 +02002114 }
Peter Zijlstrac33a0bc2009-05-01 12:23:16 +02002115 }
2116
2117 perf_output_unlock(handle);
Peter Zijlstrab9cacc72009-03-25 12:30:22 +01002118 rcu_read_unlock();
2119}
2120
Peter Zijlstraf6c7d5f2009-04-06 11:45:04 +02002121static void perf_counter_output(struct perf_counter *counter,
Peter Zijlstra78f13e92009-04-08 15:01:33 +02002122 int nmi, struct pt_regs *regs, u64 addr)
Peter Zijlstra7b732a72009-03-23 18:22:10 +01002123{
Peter Zijlstra5ed00412009-03-30 19:07:12 +02002124 int ret;
Peter Zijlstra8a057d82009-04-02 11:11:59 +02002125 u64 record_type = counter->hw_event.record_type;
Peter Zijlstra5ed00412009-03-30 19:07:12 +02002126 struct perf_output_handle handle;
2127 struct perf_event_header header;
2128 u64 ip;
Peter Zijlstra5c148192009-03-25 12:30:23 +01002129 struct {
Peter Zijlstraea5d20c2009-03-25 12:30:25 +01002130 u32 pid, tid;
Peter Zijlstra5ed00412009-03-30 19:07:12 +02002131 } tid_entry;
Peter Zijlstra8a057d82009-04-02 11:11:59 +02002132 struct {
2133 u64 event;
2134 u64 counter;
2135 } group_entry;
Peter Zijlstra394ee072009-03-30 19:07:14 +02002136 struct perf_callchain_entry *callchain = NULL;
2137 int callchain_size = 0;
Peter Zijlstra339f7c92009-04-06 11:45:06 +02002138 u64 time;
Peter Zijlstraf370e1e2009-05-08 18:52:24 +02002139 struct {
2140 u32 cpu, reserved;
2141 } cpu_entry;
Peter Zijlstra7b732a72009-03-23 18:22:10 +01002142
Peter Zijlstra6b6e5482009-04-08 15:01:27 +02002143 header.type = 0;
Peter Zijlstra5ed00412009-03-30 19:07:12 +02002144 header.size = sizeof(header);
Peter Zijlstra7b732a72009-03-23 18:22:10 +01002145
Peter Zijlstra6b6e5482009-04-08 15:01:27 +02002146 header.misc = PERF_EVENT_MISC_OVERFLOW;
Paul Mackerras9d23a902009-05-14 21:48:08 +10002147 header.misc |= perf_misc_flags(regs);
Peter Zijlstra6fab0192009-04-08 15:01:26 +02002148
Peter Zijlstra8a057d82009-04-02 11:11:59 +02002149 if (record_type & PERF_RECORD_IP) {
Paul Mackerras9d23a902009-05-14 21:48:08 +10002150 ip = perf_instruction_pointer(regs);
Peter Zijlstra6b6e5482009-04-08 15:01:27 +02002151 header.type |= PERF_RECORD_IP;
Peter Zijlstra8a057d82009-04-02 11:11:59 +02002152 header.size += sizeof(ip);
2153 }
Peter Zijlstraea5d20c2009-03-25 12:30:25 +01002154
Peter Zijlstra8a057d82009-04-02 11:11:59 +02002155 if (record_type & PERF_RECORD_TID) {
Peter Zijlstraea5d20c2009-03-25 12:30:25 +01002156 /* namespace issues */
Peter Zijlstra5ed00412009-03-30 19:07:12 +02002157 tid_entry.pid = current->group_leader->pid;
2158 tid_entry.tid = current->pid;
Peter Zijlstraea5d20c2009-03-25 12:30:25 +01002159
Peter Zijlstra6b6e5482009-04-08 15:01:27 +02002160 header.type |= PERF_RECORD_TID;
Peter Zijlstra5ed00412009-03-30 19:07:12 +02002161 header.size += sizeof(tid_entry);
2162 }
Peter Zijlstraea5d20c2009-03-25 12:30:25 +01002163
Peter Zijlstra4d855452009-04-08 15:01:32 +02002164 if (record_type & PERF_RECORD_TIME) {
2165 /*
2166 * Maybe do better on x86 and provide cpu_clock_nmi()
2167 */
2168 time = sched_clock();
2169
2170 header.type |= PERF_RECORD_TIME;
2171 header.size += sizeof(u64);
2172 }
2173
Peter Zijlstra78f13e92009-04-08 15:01:33 +02002174 if (record_type & PERF_RECORD_ADDR) {
2175 header.type |= PERF_RECORD_ADDR;
2176 header.size += sizeof(u64);
2177 }
2178
Peter Zijlstraa85f61a2009-05-08 18:52:23 +02002179 if (record_type & PERF_RECORD_CONFIG) {
2180 header.type |= PERF_RECORD_CONFIG;
2181 header.size += sizeof(u64);
2182 }
2183
Peter Zijlstraf370e1e2009-05-08 18:52:24 +02002184 if (record_type & PERF_RECORD_CPU) {
2185 header.type |= PERF_RECORD_CPU;
2186 header.size += sizeof(cpu_entry);
2187
2188 cpu_entry.cpu = raw_smp_processor_id();
2189 }
2190
Peter Zijlstra8a057d82009-04-02 11:11:59 +02002191 if (record_type & PERF_RECORD_GROUP) {
Peter Zijlstra6b6e5482009-04-08 15:01:27 +02002192 header.type |= PERF_RECORD_GROUP;
Peter Zijlstra8a057d82009-04-02 11:11:59 +02002193 header.size += sizeof(u64) +
2194 counter->nr_siblings * sizeof(group_entry);
2195 }
2196
2197 if (record_type & PERF_RECORD_CALLCHAIN) {
Peter Zijlstra394ee072009-03-30 19:07:14 +02002198 callchain = perf_callchain(regs);
2199
2200 if (callchain) {
Peter Zijlstra9c03d882009-04-06 11:45:00 +02002201 callchain_size = (1 + callchain->nr) * sizeof(u64);
Peter Zijlstra394ee072009-03-30 19:07:14 +02002202
Peter Zijlstra6b6e5482009-04-08 15:01:27 +02002203 header.type |= PERF_RECORD_CALLCHAIN;
Peter Zijlstra394ee072009-03-30 19:07:14 +02002204 header.size += callchain_size;
2205 }
2206 }
2207
Peter Zijlstra4c9e2542009-04-06 11:45:09 +02002208 ret = perf_output_begin(&handle, counter, header.size, nmi, 1);
Peter Zijlstra5ed00412009-03-30 19:07:12 +02002209 if (ret)
2210 return;
Peter Zijlstraea5d20c2009-03-25 12:30:25 +01002211
Peter Zijlstra5ed00412009-03-30 19:07:12 +02002212 perf_output_put(&handle, header);
Peter Zijlstra5ed00412009-03-30 19:07:12 +02002213
Peter Zijlstra8a057d82009-04-02 11:11:59 +02002214 if (record_type & PERF_RECORD_IP)
2215 perf_output_put(&handle, ip);
2216
2217 if (record_type & PERF_RECORD_TID)
Peter Zijlstra5ed00412009-03-30 19:07:12 +02002218 perf_output_put(&handle, tid_entry);
2219
Peter Zijlstra4d855452009-04-08 15:01:32 +02002220 if (record_type & PERF_RECORD_TIME)
2221 perf_output_put(&handle, time);
2222
Peter Zijlstra78f13e92009-04-08 15:01:33 +02002223 if (record_type & PERF_RECORD_ADDR)
2224 perf_output_put(&handle, addr);
2225
Peter Zijlstraa85f61a2009-05-08 18:52:23 +02002226 if (record_type & PERF_RECORD_CONFIG)
2227 perf_output_put(&handle, counter->hw_event.config);
2228
Peter Zijlstraf370e1e2009-05-08 18:52:24 +02002229 if (record_type & PERF_RECORD_CPU)
2230 perf_output_put(&handle, cpu_entry);
2231
Peter Zijlstra2023b352009-05-05 17:50:26 +02002232 /*
2233 * XXX PERF_RECORD_GROUP vs inherited counters seems difficult.
2234 */
Peter Zijlstra8a057d82009-04-02 11:11:59 +02002235 if (record_type & PERF_RECORD_GROUP) {
2236 struct perf_counter *leader, *sub;
2237 u64 nr = counter->nr_siblings;
2238
2239 perf_output_put(&handle, nr);
2240
2241 leader = counter->group_leader;
2242 list_for_each_entry(sub, &leader->sibling_list, list_entry) {
2243 if (sub != counter)
Robert Richter4aeb0b42009-04-29 12:47:03 +02002244 sub->pmu->read(sub);
Peter Zijlstra8a057d82009-04-02 11:11:59 +02002245
2246 group_entry.event = sub->hw_event.config;
2247 group_entry.counter = atomic64_read(&sub->count);
2248
2249 perf_output_put(&handle, group_entry);
2250 }
2251 }
2252
Peter Zijlstra394ee072009-03-30 19:07:14 +02002253 if (callchain)
2254 perf_output_copy(&handle, callchain, callchain_size);
2255
Peter Zijlstra5ed00412009-03-30 19:07:12 +02002256 perf_output_end(&handle);
Peter Zijlstra7b732a72009-03-23 18:22:10 +01002257}
2258
Peter Zijlstra0322cd62009-03-19 20:26:19 +01002259/*
Peter Zijlstra8d1b2d92009-04-08 15:01:30 +02002260 * comm tracking
2261 */
2262
2263struct perf_comm_event {
2264 struct task_struct *task;
2265 char *comm;
2266 int comm_size;
2267
2268 struct {
2269 struct perf_event_header header;
2270
2271 u32 pid;
2272 u32 tid;
2273 } event;
2274};
2275
2276static void perf_counter_comm_output(struct perf_counter *counter,
2277 struct perf_comm_event *comm_event)
2278{
2279 struct perf_output_handle handle;
2280 int size = comm_event->event.header.size;
2281 int ret = perf_output_begin(&handle, counter, size, 0, 0);
2282
2283 if (ret)
2284 return;
2285
2286 perf_output_put(&handle, comm_event->event);
2287 perf_output_copy(&handle, comm_event->comm,
2288 comm_event->comm_size);
2289 perf_output_end(&handle);
2290}
2291
2292static int perf_counter_comm_match(struct perf_counter *counter,
2293 struct perf_comm_event *comm_event)
2294{
2295 if (counter->hw_event.comm &&
2296 comm_event->event.header.type == PERF_EVENT_COMM)
2297 return 1;
2298
2299 return 0;
2300}
2301
2302static void perf_counter_comm_ctx(struct perf_counter_context *ctx,
2303 struct perf_comm_event *comm_event)
2304{
2305 struct perf_counter *counter;
2306
2307 if (system_state != SYSTEM_RUNNING || list_empty(&ctx->event_list))
2308 return;
2309
2310 rcu_read_lock();
2311 list_for_each_entry_rcu(counter, &ctx->event_list, event_entry) {
2312 if (perf_counter_comm_match(counter, comm_event))
2313 perf_counter_comm_output(counter, comm_event);
2314 }
2315 rcu_read_unlock();
2316}
2317
2318static void perf_counter_comm_event(struct perf_comm_event *comm_event)
2319{
2320 struct perf_cpu_context *cpuctx;
2321 unsigned int size;
2322 char *comm = comm_event->task->comm;
2323
Ingo Molnar888fcee2009-04-09 09:48:22 +02002324 size = ALIGN(strlen(comm)+1, sizeof(u64));
Peter Zijlstra8d1b2d92009-04-08 15:01:30 +02002325
2326 comm_event->comm = comm;
2327 comm_event->comm_size = size;
2328
2329 comm_event->event.header.size = sizeof(comm_event->event) + size;
2330
2331 cpuctx = &get_cpu_var(perf_cpu_context);
2332 perf_counter_comm_ctx(&cpuctx->ctx, comm_event);
2333 put_cpu_var(perf_cpu_context);
2334
Paul Mackerrasa63eaf32009-05-22 14:17:31 +10002335 perf_counter_comm_ctx(current->perf_counter_ctxp, comm_event);
Peter Zijlstra8d1b2d92009-04-08 15:01:30 +02002336}
2337
2338void perf_counter_comm(struct task_struct *task)
2339{
Peter Zijlstra9ee318a2009-04-09 10:53:44 +02002340 struct perf_comm_event comm_event;
2341
2342 if (!atomic_read(&nr_comm_tracking))
2343 return;
Paul Mackerrasa63eaf32009-05-22 14:17:31 +10002344 if (!current->perf_counter_ctxp)
2345 return;
2346
Peter Zijlstra9ee318a2009-04-09 10:53:44 +02002347 comm_event = (struct perf_comm_event){
Peter Zijlstra8d1b2d92009-04-08 15:01:30 +02002348 .task = task,
2349 .event = {
2350 .header = { .type = PERF_EVENT_COMM, },
2351 .pid = task->group_leader->pid,
2352 .tid = task->pid,
2353 },
2354 };
2355
2356 perf_counter_comm_event(&comm_event);
2357}
2358
2359/*
Peter Zijlstra0a4a9392009-03-30 19:07:05 +02002360 * mmap tracking
2361 */
2362
2363struct perf_mmap_event {
2364 struct file *file;
2365 char *file_name;
2366 int file_size;
2367
2368 struct {
2369 struct perf_event_header header;
2370
2371 u32 pid;
2372 u32 tid;
2373 u64 start;
2374 u64 len;
2375 u64 pgoff;
2376 } event;
2377};
2378
2379static void perf_counter_mmap_output(struct perf_counter *counter,
2380 struct perf_mmap_event *mmap_event)
2381{
2382 struct perf_output_handle handle;
2383 int size = mmap_event->event.header.size;
Peter Zijlstra4c9e2542009-04-06 11:45:09 +02002384 int ret = perf_output_begin(&handle, counter, size, 0, 0);
Peter Zijlstra0a4a9392009-03-30 19:07:05 +02002385
2386 if (ret)
2387 return;
2388
2389 perf_output_put(&handle, mmap_event->event);
2390 perf_output_copy(&handle, mmap_event->file_name,
2391 mmap_event->file_size);
Peter Zijlstra78d613e2009-03-30 19:07:11 +02002392 perf_output_end(&handle);
Peter Zijlstra0a4a9392009-03-30 19:07:05 +02002393}
2394
2395static int perf_counter_mmap_match(struct perf_counter *counter,
2396 struct perf_mmap_event *mmap_event)
2397{
2398 if (counter->hw_event.mmap &&
2399 mmap_event->event.header.type == PERF_EVENT_MMAP)
2400 return 1;
2401
2402 if (counter->hw_event.munmap &&
2403 mmap_event->event.header.type == PERF_EVENT_MUNMAP)
2404 return 1;
2405
2406 return 0;
2407}
2408
2409static void perf_counter_mmap_ctx(struct perf_counter_context *ctx,
2410 struct perf_mmap_event *mmap_event)
2411{
2412 struct perf_counter *counter;
2413
2414 if (system_state != SYSTEM_RUNNING || list_empty(&ctx->event_list))
2415 return;
2416
2417 rcu_read_lock();
2418 list_for_each_entry_rcu(counter, &ctx->event_list, event_entry) {
2419 if (perf_counter_mmap_match(counter, mmap_event))
2420 perf_counter_mmap_output(counter, mmap_event);
2421 }
2422 rcu_read_unlock();
2423}
2424
2425static void perf_counter_mmap_event(struct perf_mmap_event *mmap_event)
2426{
2427 struct perf_cpu_context *cpuctx;
2428 struct file *file = mmap_event->file;
2429 unsigned int size;
2430 char tmp[16];
2431 char *buf = NULL;
2432 char *name;
2433
2434 if (file) {
2435 buf = kzalloc(PATH_MAX, GFP_KERNEL);
2436 if (!buf) {
2437 name = strncpy(tmp, "//enomem", sizeof(tmp));
2438 goto got_name;
2439 }
Peter Zijlstrad3d21c42009-04-09 10:53:46 +02002440 name = d_path(&file->f_path, buf, PATH_MAX);
Peter Zijlstra0a4a9392009-03-30 19:07:05 +02002441 if (IS_ERR(name)) {
2442 name = strncpy(tmp, "//toolong", sizeof(tmp));
2443 goto got_name;
2444 }
2445 } else {
2446 name = strncpy(tmp, "//anon", sizeof(tmp));
2447 goto got_name;
2448 }
2449
2450got_name:
Ingo Molnar888fcee2009-04-09 09:48:22 +02002451 size = ALIGN(strlen(name)+1, sizeof(u64));
Peter Zijlstra0a4a9392009-03-30 19:07:05 +02002452
2453 mmap_event->file_name = name;
2454 mmap_event->file_size = size;
2455
2456 mmap_event->event.header.size = sizeof(mmap_event->event) + size;
2457
2458 cpuctx = &get_cpu_var(perf_cpu_context);
2459 perf_counter_mmap_ctx(&cpuctx->ctx, mmap_event);
2460 put_cpu_var(perf_cpu_context);
2461
Paul Mackerrasa63eaf32009-05-22 14:17:31 +10002462 perf_counter_mmap_ctx(current->perf_counter_ctxp, mmap_event);
Peter Zijlstra0a4a9392009-03-30 19:07:05 +02002463
2464 kfree(buf);
2465}
2466
2467void perf_counter_mmap(unsigned long addr, unsigned long len,
2468 unsigned long pgoff, struct file *file)
2469{
Peter Zijlstra9ee318a2009-04-09 10:53:44 +02002470 struct perf_mmap_event mmap_event;
2471
2472 if (!atomic_read(&nr_mmap_tracking))
2473 return;
Paul Mackerrasa63eaf32009-05-22 14:17:31 +10002474 if (!current->perf_counter_ctxp)
2475 return;
Peter Zijlstra9ee318a2009-04-09 10:53:44 +02002476
2477 mmap_event = (struct perf_mmap_event){
Peter Zijlstra0a4a9392009-03-30 19:07:05 +02002478 .file = file,
2479 .event = {
2480 .header = { .type = PERF_EVENT_MMAP, },
2481 .pid = current->group_leader->pid,
2482 .tid = current->pid,
2483 .start = addr,
2484 .len = len,
2485 .pgoff = pgoff,
2486 },
2487 };
2488
2489 perf_counter_mmap_event(&mmap_event);
2490}
2491
2492void perf_counter_munmap(unsigned long addr, unsigned long len,
2493 unsigned long pgoff, struct file *file)
2494{
Peter Zijlstra9ee318a2009-04-09 10:53:44 +02002495 struct perf_mmap_event mmap_event;
2496
2497 if (!atomic_read(&nr_munmap_tracking))
2498 return;
2499
2500 mmap_event = (struct perf_mmap_event){
Peter Zijlstra0a4a9392009-03-30 19:07:05 +02002501 .file = file,
2502 .event = {
2503 .header = { .type = PERF_EVENT_MUNMAP, },
2504 .pid = current->group_leader->pid,
2505 .tid = current->pid,
2506 .start = addr,
2507 .len = len,
2508 .pgoff = pgoff,
2509 },
2510 };
2511
2512 perf_counter_mmap_event(&mmap_event);
2513}
2514
2515/*
Peter Zijlstrae220d2d2009-05-23 18:28:55 +02002516 * Log irq_period changes so that analyzing tools can re-normalize the
2517 * event flow.
Peter Zijlstra26b119b2009-05-20 12:21:20 +02002518 */
2519
2520static void perf_log_period(struct perf_counter *counter, u64 period)
2521{
2522 struct perf_output_handle handle;
2523 int ret;
2524
2525 struct {
2526 struct perf_event_header header;
2527 u64 time;
2528 u64 period;
2529 } freq_event = {
2530 .header = {
2531 .type = PERF_EVENT_PERIOD,
2532 .misc = 0,
2533 .size = sizeof(freq_event),
2534 },
2535 .time = sched_clock(),
2536 .period = period,
2537 };
2538
2539 if (counter->hw.irq_period == period)
2540 return;
2541
2542 ret = perf_output_begin(&handle, counter, sizeof(freq_event), 0, 0);
2543 if (ret)
2544 return;
2545
2546 perf_output_put(&handle, freq_event);
2547 perf_output_end(&handle);
2548}
2549
2550/*
Peter Zijlstraf6c7d5f2009-04-06 11:45:04 +02002551 * Generic counter overflow handling.
2552 */
2553
2554int perf_counter_overflow(struct perf_counter *counter,
Peter Zijlstra78f13e92009-04-08 15:01:33 +02002555 int nmi, struct pt_regs *regs, u64 addr)
Peter Zijlstraf6c7d5f2009-04-06 11:45:04 +02002556{
Peter Zijlstra79f14642009-04-06 11:45:07 +02002557 int events = atomic_read(&counter->event_limit);
2558 int ret = 0;
2559
Peter Zijlstra60db5e02009-05-15 15:19:28 +02002560 counter->hw.interrupts++;
2561
Peter Zijlstra2023b352009-05-05 17:50:26 +02002562 /*
2563 * XXX event_limit might not quite work as expected on inherited
2564 * counters
2565 */
2566
Peter Zijlstra4c9e2542009-04-06 11:45:09 +02002567 counter->pending_kill = POLL_IN;
Peter Zijlstra79f14642009-04-06 11:45:07 +02002568 if (events && atomic_dec_and_test(&counter->event_limit)) {
2569 ret = 1;
Peter Zijlstra4c9e2542009-04-06 11:45:09 +02002570 counter->pending_kill = POLL_HUP;
Peter Zijlstra79f14642009-04-06 11:45:07 +02002571 if (nmi) {
2572 counter->pending_disable = 1;
2573 perf_pending_queue(&counter->pending,
2574 perf_pending_counter);
2575 } else
2576 perf_counter_disable(counter);
2577 }
2578
Peter Zijlstra78f13e92009-04-08 15:01:33 +02002579 perf_counter_output(counter, nmi, regs, addr);
Peter Zijlstra79f14642009-04-06 11:45:07 +02002580 return ret;
Peter Zijlstraf6c7d5f2009-04-06 11:45:04 +02002581}
2582
2583/*
Peter Zijlstra15dbf272009-03-13 12:21:32 +01002584 * Generic software counter infrastructure
2585 */
2586
2587static void perf_swcounter_update(struct perf_counter *counter)
2588{
2589 struct hw_perf_counter *hwc = &counter->hw;
2590 u64 prev, now;
2591 s64 delta;
2592
2593again:
2594 prev = atomic64_read(&hwc->prev_count);
2595 now = atomic64_read(&hwc->count);
2596 if (atomic64_cmpxchg(&hwc->prev_count, prev, now) != prev)
2597 goto again;
2598
2599 delta = now - prev;
2600
2601 atomic64_add(delta, &counter->count);
2602 atomic64_sub(delta, &hwc->period_left);
2603}
2604
2605static void perf_swcounter_set_period(struct perf_counter *counter)
2606{
2607 struct hw_perf_counter *hwc = &counter->hw;
2608 s64 left = atomic64_read(&hwc->period_left);
2609 s64 period = hwc->irq_period;
2610
2611 if (unlikely(left <= -period)) {
2612 left = period;
2613 atomic64_set(&hwc->period_left, left);
2614 }
2615
2616 if (unlikely(left <= 0)) {
2617 left += period;
2618 atomic64_add(period, &hwc->period_left);
2619 }
2620
2621 atomic64_set(&hwc->prev_count, -left);
2622 atomic64_set(&hwc->count, -left);
2623}
2624
Peter Zijlstrad6d020e2009-03-13 12:21:35 +01002625static enum hrtimer_restart perf_swcounter_hrtimer(struct hrtimer *hrtimer)
2626{
Peter Zijlstraf6c7d5f2009-04-06 11:45:04 +02002627 enum hrtimer_restart ret = HRTIMER_RESTART;
Peter Zijlstrad6d020e2009-03-13 12:21:35 +01002628 struct perf_counter *counter;
2629 struct pt_regs *regs;
Peter Zijlstra60db5e02009-05-15 15:19:28 +02002630 u64 period;
Peter Zijlstrad6d020e2009-03-13 12:21:35 +01002631
2632 counter = container_of(hrtimer, struct perf_counter, hw.hrtimer);
Robert Richter4aeb0b42009-04-29 12:47:03 +02002633 counter->pmu->read(counter);
Peter Zijlstrad6d020e2009-03-13 12:21:35 +01002634
2635 regs = get_irq_regs();
2636 /*
2637 * In case we exclude kernel IPs or are somehow not in interrupt
2638 * context, provide the next best thing, the user IP.
2639 */
2640 if ((counter->hw_event.exclude_kernel || !regs) &&
2641 !counter->hw_event.exclude_user)
2642 regs = task_pt_regs(current);
2643
Peter Zijlstraf6c7d5f2009-04-06 11:45:04 +02002644 if (regs) {
Peter Zijlstra78f13e92009-04-08 15:01:33 +02002645 if (perf_counter_overflow(counter, 0, regs, 0))
Peter Zijlstraf6c7d5f2009-04-06 11:45:04 +02002646 ret = HRTIMER_NORESTART;
2647 }
Peter Zijlstrad6d020e2009-03-13 12:21:35 +01002648
Peter Zijlstra60db5e02009-05-15 15:19:28 +02002649 period = max_t(u64, 10000, counter->hw.irq_period);
2650 hrtimer_forward_now(hrtimer, ns_to_ktime(period));
Peter Zijlstrad6d020e2009-03-13 12:21:35 +01002651
Peter Zijlstraf6c7d5f2009-04-06 11:45:04 +02002652 return ret;
Peter Zijlstrad6d020e2009-03-13 12:21:35 +01002653}
2654
2655static void perf_swcounter_overflow(struct perf_counter *counter,
Peter Zijlstra78f13e92009-04-08 15:01:33 +02002656 int nmi, struct pt_regs *regs, u64 addr)
Peter Zijlstrad6d020e2009-03-13 12:21:35 +01002657{
Peter Zijlstrab8e83512009-03-19 20:26:18 +01002658 perf_swcounter_update(counter);
2659 perf_swcounter_set_period(counter);
Peter Zijlstra78f13e92009-04-08 15:01:33 +02002660 if (perf_counter_overflow(counter, nmi, regs, addr))
Peter Zijlstraf6c7d5f2009-04-06 11:45:04 +02002661 /* soft-disable the counter */
2662 ;
2663
Peter Zijlstrad6d020e2009-03-13 12:21:35 +01002664}
2665
Peter Zijlstra15dbf272009-03-13 12:21:32 +01002666static int perf_swcounter_match(struct perf_counter *counter,
Peter Zijlstrab8e83512009-03-19 20:26:18 +01002667 enum perf_event_types type,
2668 u32 event, struct pt_regs *regs)
Peter Zijlstra15dbf272009-03-13 12:21:32 +01002669{
2670 if (counter->state != PERF_COUNTER_STATE_ACTIVE)
2671 return 0;
2672
Peter Zijlstraf4a2deb2009-03-23 18:22:06 +01002673 if (perf_event_raw(&counter->hw_event))
Peter Zijlstra15dbf272009-03-13 12:21:32 +01002674 return 0;
2675
Peter Zijlstraf4a2deb2009-03-23 18:22:06 +01002676 if (perf_event_type(&counter->hw_event) != type)
Peter Zijlstrab8e83512009-03-19 20:26:18 +01002677 return 0;
2678
Peter Zijlstraf4a2deb2009-03-23 18:22:06 +01002679 if (perf_event_id(&counter->hw_event) != event)
Peter Zijlstra15dbf272009-03-13 12:21:32 +01002680 return 0;
2681
2682 if (counter->hw_event.exclude_user && user_mode(regs))
2683 return 0;
2684
2685 if (counter->hw_event.exclude_kernel && !user_mode(regs))
2686 return 0;
2687
2688 return 1;
2689}
2690
Peter Zijlstrad6d020e2009-03-13 12:21:35 +01002691static void perf_swcounter_add(struct perf_counter *counter, u64 nr,
Peter Zijlstra78f13e92009-04-08 15:01:33 +02002692 int nmi, struct pt_regs *regs, u64 addr)
Peter Zijlstrad6d020e2009-03-13 12:21:35 +01002693{
2694 int neg = atomic64_add_negative(nr, &counter->hw.count);
2695 if (counter->hw.irq_period && !neg)
Peter Zijlstra78f13e92009-04-08 15:01:33 +02002696 perf_swcounter_overflow(counter, nmi, regs, addr);
Peter Zijlstrad6d020e2009-03-13 12:21:35 +01002697}
2698
Peter Zijlstra15dbf272009-03-13 12:21:32 +01002699static void perf_swcounter_ctx_event(struct perf_counter_context *ctx,
Peter Zijlstrab8e83512009-03-19 20:26:18 +01002700 enum perf_event_types type, u32 event,
Peter Zijlstra78f13e92009-04-08 15:01:33 +02002701 u64 nr, int nmi, struct pt_regs *regs,
2702 u64 addr)
Peter Zijlstra15dbf272009-03-13 12:21:32 +01002703{
2704 struct perf_counter *counter;
Peter Zijlstra15dbf272009-03-13 12:21:32 +01002705
Peter Zijlstra01ef09d2009-03-19 20:26:11 +01002706 if (system_state != SYSTEM_RUNNING || list_empty(&ctx->event_list))
Peter Zijlstra15dbf272009-03-13 12:21:32 +01002707 return;
2708
Peter Zijlstra592903c2009-03-13 12:21:36 +01002709 rcu_read_lock();
2710 list_for_each_entry_rcu(counter, &ctx->event_list, event_entry) {
Peter Zijlstrab8e83512009-03-19 20:26:18 +01002711 if (perf_swcounter_match(counter, type, event, regs))
Peter Zijlstra78f13e92009-04-08 15:01:33 +02002712 perf_swcounter_add(counter, nr, nmi, regs, addr);
Peter Zijlstra15dbf272009-03-13 12:21:32 +01002713 }
Peter Zijlstra592903c2009-03-13 12:21:36 +01002714 rcu_read_unlock();
Peter Zijlstra15dbf272009-03-13 12:21:32 +01002715}
2716
Peter Zijlstra96f6d442009-03-23 18:22:07 +01002717static int *perf_swcounter_recursion_context(struct perf_cpu_context *cpuctx)
2718{
2719 if (in_nmi())
2720 return &cpuctx->recursion[3];
2721
2722 if (in_irq())
2723 return &cpuctx->recursion[2];
2724
2725 if (in_softirq())
2726 return &cpuctx->recursion[1];
2727
2728 return &cpuctx->recursion[0];
2729}
2730
Peter Zijlstrab8e83512009-03-19 20:26:18 +01002731static void __perf_swcounter_event(enum perf_event_types type, u32 event,
Peter Zijlstra78f13e92009-04-08 15:01:33 +02002732 u64 nr, int nmi, struct pt_regs *regs,
2733 u64 addr)
Peter Zijlstra15dbf272009-03-13 12:21:32 +01002734{
2735 struct perf_cpu_context *cpuctx = &get_cpu_var(perf_cpu_context);
Peter Zijlstra96f6d442009-03-23 18:22:07 +01002736 int *recursion = perf_swcounter_recursion_context(cpuctx);
2737
2738 if (*recursion)
2739 goto out;
2740
2741 (*recursion)++;
2742 barrier();
Peter Zijlstra15dbf272009-03-13 12:21:32 +01002743
Peter Zijlstra78f13e92009-04-08 15:01:33 +02002744 perf_swcounter_ctx_event(&cpuctx->ctx, type, event,
2745 nr, nmi, regs, addr);
Peter Zijlstrab8e83512009-03-19 20:26:18 +01002746 if (cpuctx->task_ctx) {
2747 perf_swcounter_ctx_event(cpuctx->task_ctx, type, event,
Peter Zijlstra78f13e92009-04-08 15:01:33 +02002748 nr, nmi, regs, addr);
Peter Zijlstrab8e83512009-03-19 20:26:18 +01002749 }
Peter Zijlstra15dbf272009-03-13 12:21:32 +01002750
Peter Zijlstra96f6d442009-03-23 18:22:07 +01002751 barrier();
2752 (*recursion)--;
2753
2754out:
Peter Zijlstra15dbf272009-03-13 12:21:32 +01002755 put_cpu_var(perf_cpu_context);
2756}
2757
Peter Zijlstra78f13e92009-04-08 15:01:33 +02002758void
2759perf_swcounter_event(u32 event, u64 nr, int nmi, struct pt_regs *regs, u64 addr)
Peter Zijlstrab8e83512009-03-19 20:26:18 +01002760{
Peter Zijlstra78f13e92009-04-08 15:01:33 +02002761 __perf_swcounter_event(PERF_TYPE_SOFTWARE, event, nr, nmi, regs, addr);
Peter Zijlstrab8e83512009-03-19 20:26:18 +01002762}
2763
Peter Zijlstra15dbf272009-03-13 12:21:32 +01002764static void perf_swcounter_read(struct perf_counter *counter)
2765{
2766 perf_swcounter_update(counter);
2767}
2768
2769static int perf_swcounter_enable(struct perf_counter *counter)
2770{
2771 perf_swcounter_set_period(counter);
2772 return 0;
2773}
2774
2775static void perf_swcounter_disable(struct perf_counter *counter)
2776{
2777 perf_swcounter_update(counter);
2778}
2779
Robert Richter4aeb0b42009-04-29 12:47:03 +02002780static const struct pmu perf_ops_generic = {
Peter Zijlstraac17dc82009-03-13 12:21:34 +01002781 .enable = perf_swcounter_enable,
2782 .disable = perf_swcounter_disable,
2783 .read = perf_swcounter_read,
2784};
2785
Peter Zijlstra15dbf272009-03-13 12:21:32 +01002786/*
2787 * Software counter: cpu wall time clock
2788 */
2789
Paul Mackerras9abf8a02009-01-09 16:26:43 +11002790static void cpu_clock_perf_counter_update(struct perf_counter *counter)
2791{
2792 int cpu = raw_smp_processor_id();
2793 s64 prev;
2794 u64 now;
2795
2796 now = cpu_clock(cpu);
2797 prev = atomic64_read(&counter->hw.prev_count);
2798 atomic64_set(&counter->hw.prev_count, now);
2799 atomic64_add(now - prev, &counter->count);
2800}
2801
Peter Zijlstrad6d020e2009-03-13 12:21:35 +01002802static int cpu_clock_perf_counter_enable(struct perf_counter *counter)
2803{
2804 struct hw_perf_counter *hwc = &counter->hw;
2805 int cpu = raw_smp_processor_id();
2806
2807 atomic64_set(&hwc->prev_count, cpu_clock(cpu));
Peter Zijlstra039fc912009-03-13 16:43:47 +01002808 hrtimer_init(&hwc->hrtimer, CLOCK_MONOTONIC, HRTIMER_MODE_REL);
2809 hwc->hrtimer.function = perf_swcounter_hrtimer;
Peter Zijlstrad6d020e2009-03-13 12:21:35 +01002810 if (hwc->irq_period) {
Peter Zijlstra60db5e02009-05-15 15:19:28 +02002811 u64 period = max_t(u64, 10000, hwc->irq_period);
Peter Zijlstrad6d020e2009-03-13 12:21:35 +01002812 __hrtimer_start_range_ns(&hwc->hrtimer,
Peter Zijlstra60db5e02009-05-15 15:19:28 +02002813 ns_to_ktime(period), 0,
Peter Zijlstrad6d020e2009-03-13 12:21:35 +01002814 HRTIMER_MODE_REL, 0);
2815 }
2816
2817 return 0;
2818}
2819
Ingo Molnar5c92d122008-12-11 13:21:10 +01002820static void cpu_clock_perf_counter_disable(struct perf_counter *counter)
2821{
Peter Zijlstrab986d7e2009-05-20 12:21:21 +02002822 if (counter->hw.irq_period)
2823 hrtimer_cancel(&counter->hw.hrtimer);
Paul Mackerras9abf8a02009-01-09 16:26:43 +11002824 cpu_clock_perf_counter_update(counter);
Ingo Molnar5c92d122008-12-11 13:21:10 +01002825}
2826
2827static void cpu_clock_perf_counter_read(struct perf_counter *counter)
2828{
Paul Mackerras9abf8a02009-01-09 16:26:43 +11002829 cpu_clock_perf_counter_update(counter);
Ingo Molnar5c92d122008-12-11 13:21:10 +01002830}
2831
Robert Richter4aeb0b42009-04-29 12:47:03 +02002832static const struct pmu perf_ops_cpu_clock = {
Ingo Molnar76715812008-12-17 14:20:28 +01002833 .enable = cpu_clock_perf_counter_enable,
2834 .disable = cpu_clock_perf_counter_disable,
2835 .read = cpu_clock_perf_counter_read,
Ingo Molnar5c92d122008-12-11 13:21:10 +01002836};
2837
Ingo Molnaraa9c4c02008-12-17 14:10:57 +01002838/*
Peter Zijlstra15dbf272009-03-13 12:21:32 +01002839 * Software counter: task time clock
2840 */
2841
Peter Zijlstrae30e08f2009-04-08 15:01:25 +02002842static void task_clock_perf_counter_update(struct perf_counter *counter, u64 now)
Ingo Molnarbae43c92008-12-11 14:03:20 +01002843{
Peter Zijlstrae30e08f2009-04-08 15:01:25 +02002844 u64 prev;
Ingo Molnar8cb391e2008-12-14 12:22:31 +01002845 s64 delta;
Ingo Molnarbae43c92008-12-11 14:03:20 +01002846
Peter Zijlstraa39d6f22009-04-06 11:45:11 +02002847 prev = atomic64_xchg(&counter->hw.prev_count, now);
Ingo Molnar8cb391e2008-12-14 12:22:31 +01002848 delta = now - prev;
Ingo Molnar8cb391e2008-12-14 12:22:31 +01002849 atomic64_add(delta, &counter->count);
Ingo Molnarbae43c92008-12-11 14:03:20 +01002850}
2851
Ingo Molnar95cdd2e2008-12-21 13:50:42 +01002852static int task_clock_perf_counter_enable(struct perf_counter *counter)
Ingo Molnar8cb391e2008-12-14 12:22:31 +01002853{
Peter Zijlstrad6d020e2009-03-13 12:21:35 +01002854 struct hw_perf_counter *hwc = &counter->hw;
Peter Zijlstraa39d6f22009-04-06 11:45:11 +02002855 u64 now;
Peter Zijlstrad6d020e2009-03-13 12:21:35 +01002856
Peter Zijlstraa39d6f22009-04-06 11:45:11 +02002857 now = counter->ctx->time;
2858
2859 atomic64_set(&hwc->prev_count, now);
Peter Zijlstra039fc912009-03-13 16:43:47 +01002860 hrtimer_init(&hwc->hrtimer, CLOCK_MONOTONIC, HRTIMER_MODE_REL);
2861 hwc->hrtimer.function = perf_swcounter_hrtimer;
Peter Zijlstrad6d020e2009-03-13 12:21:35 +01002862 if (hwc->irq_period) {
Peter Zijlstra60db5e02009-05-15 15:19:28 +02002863 u64 period = max_t(u64, 10000, hwc->irq_period);
Peter Zijlstrad6d020e2009-03-13 12:21:35 +01002864 __hrtimer_start_range_ns(&hwc->hrtimer,
Peter Zijlstra60db5e02009-05-15 15:19:28 +02002865 ns_to_ktime(period), 0,
Peter Zijlstrad6d020e2009-03-13 12:21:35 +01002866 HRTIMER_MODE_REL, 0);
2867 }
Ingo Molnar95cdd2e2008-12-21 13:50:42 +01002868
2869 return 0;
Ingo Molnar8cb391e2008-12-14 12:22:31 +01002870}
2871
2872static void task_clock_perf_counter_disable(struct perf_counter *counter)
2873{
Peter Zijlstrab986d7e2009-05-20 12:21:21 +02002874 if (counter->hw.irq_period)
2875 hrtimer_cancel(&counter->hw.hrtimer);
Peter Zijlstrae30e08f2009-04-08 15:01:25 +02002876 task_clock_perf_counter_update(counter, counter->ctx->time);
2877
Peter Zijlstrad6d020e2009-03-13 12:21:35 +01002878}
Ingo Molnaraa9c4c02008-12-17 14:10:57 +01002879
Peter Zijlstrad6d020e2009-03-13 12:21:35 +01002880static void task_clock_perf_counter_read(struct perf_counter *counter)
2881{
Peter Zijlstrae30e08f2009-04-08 15:01:25 +02002882 u64 time;
2883
2884 if (!in_nmi()) {
2885 update_context_time(counter->ctx);
2886 time = counter->ctx->time;
2887 } else {
2888 u64 now = perf_clock();
2889 u64 delta = now - counter->ctx->timestamp;
2890 time = counter->ctx->time + delta;
2891 }
2892
2893 task_clock_perf_counter_update(counter, time);
Ingo Molnarbae43c92008-12-11 14:03:20 +01002894}
2895
Robert Richter4aeb0b42009-04-29 12:47:03 +02002896static const struct pmu perf_ops_task_clock = {
Ingo Molnar76715812008-12-17 14:20:28 +01002897 .enable = task_clock_perf_counter_enable,
2898 .disable = task_clock_perf_counter_disable,
2899 .read = task_clock_perf_counter_read,
Ingo Molnarbae43c92008-12-11 14:03:20 +01002900};
2901
Peter Zijlstra15dbf272009-03-13 12:21:32 +01002902/*
Peter Zijlstra15dbf272009-03-13 12:21:32 +01002903 * Software counter: cpu migrations
2904 */
2905
Paul Mackerras23a185c2009-02-09 22:42:47 +11002906static inline u64 get_cpu_migrations(struct perf_counter *counter)
Ingo Molnar6c594c22008-12-14 12:34:15 +01002907{
Paul Mackerras23a185c2009-02-09 22:42:47 +11002908 struct task_struct *curr = counter->ctx->task;
2909
2910 if (curr)
2911 return curr->se.nr_migrations;
2912 return cpu_nr_migrations(smp_processor_id());
Ingo Molnar6c594c22008-12-14 12:34:15 +01002913}
2914
2915static void cpu_migrations_perf_counter_update(struct perf_counter *counter)
2916{
2917 u64 prev, now;
2918 s64 delta;
2919
2920 prev = atomic64_read(&counter->hw.prev_count);
Paul Mackerras23a185c2009-02-09 22:42:47 +11002921 now = get_cpu_migrations(counter);
Ingo Molnar6c594c22008-12-14 12:34:15 +01002922
2923 atomic64_set(&counter->hw.prev_count, now);
2924
2925 delta = now - prev;
Ingo Molnar6c594c22008-12-14 12:34:15 +01002926
2927 atomic64_add(delta, &counter->count);
2928}
2929
2930static void cpu_migrations_perf_counter_read(struct perf_counter *counter)
2931{
2932 cpu_migrations_perf_counter_update(counter);
2933}
2934
Ingo Molnar95cdd2e2008-12-21 13:50:42 +01002935static int cpu_migrations_perf_counter_enable(struct perf_counter *counter)
Ingo Molnar6c594c22008-12-14 12:34:15 +01002936{
Paul Mackerrasc07c99b2009-02-13 22:10:34 +11002937 if (counter->prev_state <= PERF_COUNTER_STATE_OFF)
2938 atomic64_set(&counter->hw.prev_count,
2939 get_cpu_migrations(counter));
Ingo Molnar95cdd2e2008-12-21 13:50:42 +01002940 return 0;
Ingo Molnar6c594c22008-12-14 12:34:15 +01002941}
2942
2943static void cpu_migrations_perf_counter_disable(struct perf_counter *counter)
2944{
2945 cpu_migrations_perf_counter_update(counter);
2946}
2947
Robert Richter4aeb0b42009-04-29 12:47:03 +02002948static const struct pmu perf_ops_cpu_migrations = {
Ingo Molnar76715812008-12-17 14:20:28 +01002949 .enable = cpu_migrations_perf_counter_enable,
2950 .disable = cpu_migrations_perf_counter_disable,
2951 .read = cpu_migrations_perf_counter_read,
Ingo Molnar6c594c22008-12-14 12:34:15 +01002952};
2953
Peter Zijlstrae077df42009-03-19 20:26:17 +01002954#ifdef CONFIG_EVENT_PROFILE
2955void perf_tpcounter_event(int event_id)
2956{
Peter Zijlstrab8e83512009-03-19 20:26:18 +01002957 struct pt_regs *regs = get_irq_regs();
2958
2959 if (!regs)
2960 regs = task_pt_regs(current);
2961
Peter Zijlstra78f13e92009-04-08 15:01:33 +02002962 __perf_swcounter_event(PERF_TYPE_TRACEPOINT, event_id, 1, 1, regs, 0);
Peter Zijlstrae077df42009-03-19 20:26:17 +01002963}
Steven Whitehouseff7b1b42009-04-15 16:55:05 +01002964EXPORT_SYMBOL_GPL(perf_tpcounter_event);
Peter Zijlstrae077df42009-03-19 20:26:17 +01002965
2966extern int ftrace_profile_enable(int);
2967extern void ftrace_profile_disable(int);
2968
2969static void tp_perf_counter_destroy(struct perf_counter *counter)
2970{
Peter Zijlstraf4a2deb2009-03-23 18:22:06 +01002971 ftrace_profile_disable(perf_event_id(&counter->hw_event));
Peter Zijlstrae077df42009-03-19 20:26:17 +01002972}
2973
Robert Richter4aeb0b42009-04-29 12:47:03 +02002974static const struct pmu *tp_perf_counter_init(struct perf_counter *counter)
Peter Zijlstrae077df42009-03-19 20:26:17 +01002975{
Peter Zijlstraf4a2deb2009-03-23 18:22:06 +01002976 int event_id = perf_event_id(&counter->hw_event);
Peter Zijlstrae077df42009-03-19 20:26:17 +01002977 int ret;
2978
2979 ret = ftrace_profile_enable(event_id);
2980 if (ret)
2981 return NULL;
2982
2983 counter->destroy = tp_perf_counter_destroy;
Peter Zijlstrab8e83512009-03-19 20:26:18 +01002984 counter->hw.irq_period = counter->hw_event.irq_period;
Peter Zijlstrae077df42009-03-19 20:26:17 +01002985
2986 return &perf_ops_generic;
2987}
2988#else
Robert Richter4aeb0b42009-04-29 12:47:03 +02002989static const struct pmu *tp_perf_counter_init(struct perf_counter *counter)
Peter Zijlstrae077df42009-03-19 20:26:17 +01002990{
2991 return NULL;
2992}
2993#endif
2994
Robert Richter4aeb0b42009-04-29 12:47:03 +02002995static const struct pmu *sw_perf_counter_init(struct perf_counter *counter)
Ingo Molnar5c92d122008-12-11 13:21:10 +01002996{
Robert Richter4aeb0b42009-04-29 12:47:03 +02002997 const struct pmu *pmu = NULL;
Ingo Molnar5c92d122008-12-11 13:21:10 +01002998
Paul Mackerras0475f9e2009-02-11 14:35:35 +11002999 /*
3000 * Software counters (currently) can't in general distinguish
3001 * between user, kernel and hypervisor events.
3002 * However, context switches and cpu migrations are considered
3003 * to be kernel events, and page faults are never hypervisor
3004 * events.
3005 */
Peter Zijlstraf4a2deb2009-03-23 18:22:06 +01003006 switch (perf_event_id(&counter->hw_event)) {
Ingo Molnar5c92d122008-12-11 13:21:10 +01003007 case PERF_COUNT_CPU_CLOCK:
Robert Richter4aeb0b42009-04-29 12:47:03 +02003008 pmu = &perf_ops_cpu_clock;
Peter Zijlstrad6d020e2009-03-13 12:21:35 +01003009
Ingo Molnar5c92d122008-12-11 13:21:10 +01003010 break;
Ingo Molnarbae43c92008-12-11 14:03:20 +01003011 case PERF_COUNT_TASK_CLOCK:
Paul Mackerras23a185c2009-02-09 22:42:47 +11003012 /*
3013 * If the user instantiates this as a per-cpu counter,
3014 * use the cpu_clock counter instead.
3015 */
3016 if (counter->ctx->task)
Robert Richter4aeb0b42009-04-29 12:47:03 +02003017 pmu = &perf_ops_task_clock;
Paul Mackerras23a185c2009-02-09 22:42:47 +11003018 else
Robert Richter4aeb0b42009-04-29 12:47:03 +02003019 pmu = &perf_ops_cpu_clock;
Peter Zijlstrad6d020e2009-03-13 12:21:35 +01003020
Ingo Molnarbae43c92008-12-11 14:03:20 +01003021 break;
Ingo Molnare06c61a2008-12-14 14:44:31 +01003022 case PERF_COUNT_PAGE_FAULTS:
Peter Zijlstraac17dc82009-03-13 12:21:34 +01003023 case PERF_COUNT_PAGE_FAULTS_MIN:
3024 case PERF_COUNT_PAGE_FAULTS_MAJ:
Ingo Molnar5d6a27d2008-12-14 12:28:33 +01003025 case PERF_COUNT_CONTEXT_SWITCHES:
Robert Richter4aeb0b42009-04-29 12:47:03 +02003026 pmu = &perf_ops_generic;
Ingo Molnar5d6a27d2008-12-14 12:28:33 +01003027 break;
Ingo Molnar6c594c22008-12-14 12:34:15 +01003028 case PERF_COUNT_CPU_MIGRATIONS:
Paul Mackerras0475f9e2009-02-11 14:35:35 +11003029 if (!counter->hw_event.exclude_kernel)
Robert Richter4aeb0b42009-04-29 12:47:03 +02003030 pmu = &perf_ops_cpu_migrations;
Ingo Molnar6c594c22008-12-14 12:34:15 +01003031 break;
Ingo Molnar5c92d122008-12-11 13:21:10 +01003032 }
Peter Zijlstra15dbf272009-03-13 12:21:32 +01003033
Robert Richter4aeb0b42009-04-29 12:47:03 +02003034 return pmu;
Ingo Molnar5c92d122008-12-11 13:21:10 +01003035}
3036
Thomas Gleixner0793a612008-12-04 20:12:29 +01003037/*
3038 * Allocate and initialize a counter structure
3039 */
3040static struct perf_counter *
Ingo Molnar04289bb2008-12-11 08:38:42 +01003041perf_counter_alloc(struct perf_counter_hw_event *hw_event,
3042 int cpu,
Paul Mackerras23a185c2009-02-09 22:42:47 +11003043 struct perf_counter_context *ctx,
Ingo Molnar9b51f662008-12-12 13:49:45 +01003044 struct perf_counter *group_leader,
3045 gfp_t gfpflags)
Thomas Gleixner0793a612008-12-04 20:12:29 +01003046{
Robert Richter4aeb0b42009-04-29 12:47:03 +02003047 const struct pmu *pmu;
Ingo Molnar621a01e2008-12-11 12:46:46 +01003048 struct perf_counter *counter;
Peter Zijlstra60db5e02009-05-15 15:19:28 +02003049 struct hw_perf_counter *hwc;
Paul Mackerrasd5d2bc0d2009-03-30 19:07:08 +02003050 long err;
Thomas Gleixner0793a612008-12-04 20:12:29 +01003051
Ingo Molnar9b51f662008-12-12 13:49:45 +01003052 counter = kzalloc(sizeof(*counter), gfpflags);
Thomas Gleixner0793a612008-12-04 20:12:29 +01003053 if (!counter)
Paul Mackerrasd5d2bc0d2009-03-30 19:07:08 +02003054 return ERR_PTR(-ENOMEM);
Thomas Gleixner0793a612008-12-04 20:12:29 +01003055
Ingo Molnar04289bb2008-12-11 08:38:42 +01003056 /*
3057 * Single counters are their own group leaders, with an
3058 * empty sibling list:
3059 */
3060 if (!group_leader)
3061 group_leader = counter;
3062
Peter Zijlstrafccc7142009-05-23 18:28:56 +02003063 mutex_init(&counter->child_mutex);
3064 INIT_LIST_HEAD(&counter->child_list);
3065
Ingo Molnar04289bb2008-12-11 08:38:42 +01003066 INIT_LIST_HEAD(&counter->list_entry);
Peter Zijlstra592903c2009-03-13 12:21:36 +01003067 INIT_LIST_HEAD(&counter->event_entry);
Ingo Molnar04289bb2008-12-11 08:38:42 +01003068 INIT_LIST_HEAD(&counter->sibling_list);
Thomas Gleixner0793a612008-12-04 20:12:29 +01003069 init_waitqueue_head(&counter->waitq);
3070
Peter Zijlstra7b732a72009-03-23 18:22:10 +01003071 mutex_init(&counter->mmap_mutex);
3072
Ingo Molnar9f66a382008-12-10 12:33:23 +01003073 counter->cpu = cpu;
3074 counter->hw_event = *hw_event;
Ingo Molnar04289bb2008-12-11 08:38:42 +01003075 counter->group_leader = group_leader;
Robert Richter4aeb0b42009-04-29 12:47:03 +02003076 counter->pmu = NULL;
Paul Mackerras23a185c2009-02-09 22:42:47 +11003077 counter->ctx = ctx;
Paul Mackerrasa63eaf32009-05-22 14:17:31 +10003078 get_ctx(ctx);
Ingo Molnar621a01e2008-12-11 12:46:46 +01003079
Ingo Molnar235c7fc2008-12-21 14:43:25 +01003080 counter->state = PERF_COUNTER_STATE_INACTIVE;
Ingo Molnara86ed502008-12-17 00:43:10 +01003081 if (hw_event->disabled)
3082 counter->state = PERF_COUNTER_STATE_OFF;
3083
Robert Richter4aeb0b42009-04-29 12:47:03 +02003084 pmu = NULL;
Peter Zijlstrab8e83512009-03-19 20:26:18 +01003085
Peter Zijlstra60db5e02009-05-15 15:19:28 +02003086 hwc = &counter->hw;
3087 if (hw_event->freq && hw_event->irq_freq)
Peter Zijlstra2e569d32009-05-15 15:37:47 +02003088 hwc->irq_period = div64_u64(TICK_NSEC, hw_event->irq_freq);
Peter Zijlstra60db5e02009-05-15 15:19:28 +02003089 else
3090 hwc->irq_period = hw_event->irq_period;
3091
Peter Zijlstra2023b352009-05-05 17:50:26 +02003092 /*
3093 * we currently do not support PERF_RECORD_GROUP on inherited counters
3094 */
3095 if (hw_event->inherit && (hw_event->record_type & PERF_RECORD_GROUP))
3096 goto done;
3097
Peter Zijlstraf4a2deb2009-03-23 18:22:06 +01003098 if (perf_event_raw(hw_event)) {
Robert Richter4aeb0b42009-04-29 12:47:03 +02003099 pmu = hw_perf_counter_init(counter);
Peter Zijlstraf4a2deb2009-03-23 18:22:06 +01003100 goto done;
3101 }
3102
3103 switch (perf_event_type(hw_event)) {
Peter Zijlstrab8e83512009-03-19 20:26:18 +01003104 case PERF_TYPE_HARDWARE:
Robert Richter4aeb0b42009-04-29 12:47:03 +02003105 pmu = hw_perf_counter_init(counter);
Peter Zijlstrab8e83512009-03-19 20:26:18 +01003106 break;
3107
3108 case PERF_TYPE_SOFTWARE:
Robert Richter4aeb0b42009-04-29 12:47:03 +02003109 pmu = sw_perf_counter_init(counter);
Peter Zijlstrab8e83512009-03-19 20:26:18 +01003110 break;
3111
3112 case PERF_TYPE_TRACEPOINT:
Robert Richter4aeb0b42009-04-29 12:47:03 +02003113 pmu = tp_perf_counter_init(counter);
Peter Zijlstrab8e83512009-03-19 20:26:18 +01003114 break;
3115 }
Peter Zijlstraf4a2deb2009-03-23 18:22:06 +01003116done:
Paul Mackerrasd5d2bc0d2009-03-30 19:07:08 +02003117 err = 0;
Robert Richter4aeb0b42009-04-29 12:47:03 +02003118 if (!pmu)
Paul Mackerrasd5d2bc0d2009-03-30 19:07:08 +02003119 err = -EINVAL;
Robert Richter4aeb0b42009-04-29 12:47:03 +02003120 else if (IS_ERR(pmu))
3121 err = PTR_ERR(pmu);
Paul Mackerrasd5d2bc0d2009-03-30 19:07:08 +02003122
3123 if (err) {
3124 kfree(counter);
3125 return ERR_PTR(err);
3126 }
3127
Robert Richter4aeb0b42009-04-29 12:47:03 +02003128 counter->pmu = pmu;
Thomas Gleixner0793a612008-12-04 20:12:29 +01003129
Peter Zijlstra7fc23a52009-05-08 18:52:21 +02003130 atomic_inc(&nr_counters);
Peter Zijlstra9ee318a2009-04-09 10:53:44 +02003131 if (counter->hw_event.mmap)
3132 atomic_inc(&nr_mmap_tracking);
3133 if (counter->hw_event.munmap)
3134 atomic_inc(&nr_munmap_tracking);
3135 if (counter->hw_event.comm)
3136 atomic_inc(&nr_comm_tracking);
3137
Thomas Gleixner0793a612008-12-04 20:12:29 +01003138 return counter;
3139}
3140
3141/**
Paul Mackerras2743a5b2009-03-04 20:36:51 +11003142 * sys_perf_counter_open - open a performance counter, associate it to a task/cpu
Ingo Molnar9f66a382008-12-10 12:33:23 +01003143 *
3144 * @hw_event_uptr: event type attributes for monitoring/sampling
Thomas Gleixner0793a612008-12-04 20:12:29 +01003145 * @pid: target pid
Ingo Molnar9f66a382008-12-10 12:33:23 +01003146 * @cpu: target cpu
3147 * @group_fd: group leader counter fd
Thomas Gleixner0793a612008-12-04 20:12:29 +01003148 */
Paul Mackerras2743a5b2009-03-04 20:36:51 +11003149SYSCALL_DEFINE5(perf_counter_open,
Paul Mackerrasf3dfd262009-02-26 22:43:46 +11003150 const struct perf_counter_hw_event __user *, hw_event_uptr,
Paul Mackerras2743a5b2009-03-04 20:36:51 +11003151 pid_t, pid, int, cpu, int, group_fd, unsigned long, flags)
Thomas Gleixner0793a612008-12-04 20:12:29 +01003152{
Ingo Molnar04289bb2008-12-11 08:38:42 +01003153 struct perf_counter *counter, *group_leader;
Ingo Molnar9f66a382008-12-10 12:33:23 +01003154 struct perf_counter_hw_event hw_event;
Ingo Molnar04289bb2008-12-11 08:38:42 +01003155 struct perf_counter_context *ctx;
Ingo Molnar9b51f662008-12-12 13:49:45 +01003156 struct file *counter_file = NULL;
Ingo Molnar04289bb2008-12-11 08:38:42 +01003157 struct file *group_file = NULL;
3158 int fput_needed = 0;
Ingo Molnar9b51f662008-12-12 13:49:45 +01003159 int fput_needed2 = 0;
Thomas Gleixner0793a612008-12-04 20:12:29 +01003160 int ret;
3161
Paul Mackerras2743a5b2009-03-04 20:36:51 +11003162 /* for future expandability... */
3163 if (flags)
3164 return -EINVAL;
3165
Ingo Molnar9f66a382008-12-10 12:33:23 +01003166 if (copy_from_user(&hw_event, hw_event_uptr, sizeof(hw_event)) != 0)
Thomas Gleixnereab656a2008-12-08 19:26:59 +01003167 return -EFAULT;
3168
Ingo Molnar04289bb2008-12-11 08:38:42 +01003169 /*
Ingo Molnarccff2862008-12-11 11:26:29 +01003170 * Get the target context (task or percpu):
3171 */
3172 ctx = find_get_context(pid, cpu);
3173 if (IS_ERR(ctx))
3174 return PTR_ERR(ctx);
3175
3176 /*
3177 * Look up the group leader (we will attach this counter to it):
Ingo Molnar04289bb2008-12-11 08:38:42 +01003178 */
3179 group_leader = NULL;
3180 if (group_fd != -1) {
3181 ret = -EINVAL;
3182 group_file = fget_light(group_fd, &fput_needed);
3183 if (!group_file)
Ingo Molnarccff2862008-12-11 11:26:29 +01003184 goto err_put_context;
Ingo Molnar04289bb2008-12-11 08:38:42 +01003185 if (group_file->f_op != &perf_fops)
Ingo Molnarccff2862008-12-11 11:26:29 +01003186 goto err_put_context;
Ingo Molnar04289bb2008-12-11 08:38:42 +01003187
3188 group_leader = group_file->private_data;
3189 /*
Ingo Molnarccff2862008-12-11 11:26:29 +01003190 * Do not allow a recursive hierarchy (this new sibling
3191 * becoming part of another group-sibling):
Ingo Molnar04289bb2008-12-11 08:38:42 +01003192 */
Ingo Molnarccff2862008-12-11 11:26:29 +01003193 if (group_leader->group_leader != group_leader)
3194 goto err_put_context;
3195 /*
3196 * Do not allow to attach to a group in a different
3197 * task or CPU context:
3198 */
3199 if (group_leader->ctx != ctx)
3200 goto err_put_context;
Paul Mackerras3b6f9e52009-01-14 21:00:30 +11003201 /*
3202 * Only a group leader can be exclusive or pinned
3203 */
3204 if (hw_event.exclusive || hw_event.pinned)
3205 goto err_put_context;
Ingo Molnar04289bb2008-12-11 08:38:42 +01003206 }
3207
Paul Mackerras23a185c2009-02-09 22:42:47 +11003208 counter = perf_counter_alloc(&hw_event, cpu, ctx, group_leader,
3209 GFP_KERNEL);
Paul Mackerrasd5d2bc0d2009-03-30 19:07:08 +02003210 ret = PTR_ERR(counter);
3211 if (IS_ERR(counter))
Thomas Gleixner0793a612008-12-04 20:12:29 +01003212 goto err_put_context;
3213
Thomas Gleixner0793a612008-12-04 20:12:29 +01003214 ret = anon_inode_getfd("[perf_counter]", &perf_fops, counter, 0);
3215 if (ret < 0)
Ingo Molnar9b51f662008-12-12 13:49:45 +01003216 goto err_free_put_context;
3217
3218 counter_file = fget_light(ret, &fput_needed2);
3219 if (!counter_file)
3220 goto err_free_put_context;
3221
3222 counter->filp = counter_file;
Paul Mackerrasd859e292009-01-17 18:10:22 +11003223 mutex_lock(&ctx->mutex);
Ingo Molnar9b51f662008-12-12 13:49:45 +01003224 perf_install_in_context(ctx, counter, cpu);
Paul Mackerrasd859e292009-01-17 18:10:22 +11003225 mutex_unlock(&ctx->mutex);
Ingo Molnar9b51f662008-12-12 13:49:45 +01003226
Peter Zijlstra082ff5a2009-05-23 18:29:00 +02003227 counter->owner = current;
3228 get_task_struct(current);
3229 mutex_lock(&current->perf_counter_mutex);
3230 list_add_tail(&counter->owner_entry, &current->perf_counter_list);
3231 mutex_unlock(&current->perf_counter_mutex);
3232
Ingo Molnar9b51f662008-12-12 13:49:45 +01003233 fput_light(counter_file, fput_needed2);
Thomas Gleixner0793a612008-12-04 20:12:29 +01003234
Ingo Molnar04289bb2008-12-11 08:38:42 +01003235out_fput:
3236 fput_light(group_file, fput_needed);
3237
Thomas Gleixner0793a612008-12-04 20:12:29 +01003238 return ret;
3239
Ingo Molnar9b51f662008-12-12 13:49:45 +01003240err_free_put_context:
Thomas Gleixner0793a612008-12-04 20:12:29 +01003241 kfree(counter);
3242
3243err_put_context:
3244 put_context(ctx);
3245
Ingo Molnar04289bb2008-12-11 08:38:42 +01003246 goto out_fput;
Thomas Gleixner0793a612008-12-04 20:12:29 +01003247}
3248
Ingo Molnar9b51f662008-12-12 13:49:45 +01003249/*
Ingo Molnar9b51f662008-12-12 13:49:45 +01003250 * inherit a counter from parent task to child task:
3251 */
Paul Mackerrasd859e292009-01-17 18:10:22 +11003252static struct perf_counter *
Ingo Molnar9b51f662008-12-12 13:49:45 +01003253inherit_counter(struct perf_counter *parent_counter,
3254 struct task_struct *parent,
3255 struct perf_counter_context *parent_ctx,
3256 struct task_struct *child,
Paul Mackerrasd859e292009-01-17 18:10:22 +11003257 struct perf_counter *group_leader,
Ingo Molnar9b51f662008-12-12 13:49:45 +01003258 struct perf_counter_context *child_ctx)
3259{
3260 struct perf_counter *child_counter;
3261
Paul Mackerrasd859e292009-01-17 18:10:22 +11003262 /*
3263 * Instead of creating recursive hierarchies of counters,
3264 * we link inherited counters back to the original parent,
3265 * which has a filp for sure, which we use as the reference
3266 * count:
3267 */
3268 if (parent_counter->parent)
3269 parent_counter = parent_counter->parent;
3270
Ingo Molnar9b51f662008-12-12 13:49:45 +01003271 child_counter = perf_counter_alloc(&parent_counter->hw_event,
Paul Mackerras23a185c2009-02-09 22:42:47 +11003272 parent_counter->cpu, child_ctx,
3273 group_leader, GFP_KERNEL);
Paul Mackerrasd5d2bc0d2009-03-30 19:07:08 +02003274 if (IS_ERR(child_counter))
3275 return child_counter;
Ingo Molnar9b51f662008-12-12 13:49:45 +01003276
3277 /*
Paul Mackerras564c2b22009-05-22 14:27:22 +10003278 * Make the child state follow the state of the parent counter,
3279 * not its hw_event.disabled bit. We hold the parent's mutex,
3280 * so we won't race with perf_counter_{en,dis}able_family.
3281 */
3282 if (parent_counter->state >= PERF_COUNTER_STATE_INACTIVE)
3283 child_counter->state = PERF_COUNTER_STATE_INACTIVE;
3284 else
3285 child_counter->state = PERF_COUNTER_STATE_OFF;
3286
3287 /*
Ingo Molnar9b51f662008-12-12 13:49:45 +01003288 * Link it up in the child's context:
3289 */
Paul Mackerras53cfbf52009-03-25 22:46:58 +11003290 add_counter_to_ctx(child_counter, child_ctx);
Ingo Molnar9b51f662008-12-12 13:49:45 +01003291
3292 child_counter->parent = parent_counter;
Ingo Molnar9b51f662008-12-12 13:49:45 +01003293 /*
3294 * inherit into child's child as well:
3295 */
3296 child_counter->hw_event.inherit = 1;
3297
3298 /*
3299 * Get a reference to the parent filp - we will fput it
3300 * when the child counter exits. This is safe to do because
3301 * we are in the parent and we know that the filp still
3302 * exists and has a nonzero count:
3303 */
3304 atomic_long_inc(&parent_counter->filp->f_count);
3305
Paul Mackerrasd859e292009-01-17 18:10:22 +11003306 /*
3307 * Link this into the parent counter's child list
3308 */
Peter Zijlstrafccc7142009-05-23 18:28:56 +02003309 mutex_lock(&parent_counter->child_mutex);
Paul Mackerrasd859e292009-01-17 18:10:22 +11003310 list_add_tail(&child_counter->child_list, &parent_counter->child_list);
Peter Zijlstrafccc7142009-05-23 18:28:56 +02003311 mutex_unlock(&parent_counter->child_mutex);
Paul Mackerrasd859e292009-01-17 18:10:22 +11003312
3313 return child_counter;
3314}
3315
3316static int inherit_group(struct perf_counter *parent_counter,
3317 struct task_struct *parent,
3318 struct perf_counter_context *parent_ctx,
3319 struct task_struct *child,
3320 struct perf_counter_context *child_ctx)
3321{
3322 struct perf_counter *leader;
3323 struct perf_counter *sub;
Paul Mackerrasd5d2bc0d2009-03-30 19:07:08 +02003324 struct perf_counter *child_ctr;
Paul Mackerrasd859e292009-01-17 18:10:22 +11003325
3326 leader = inherit_counter(parent_counter, parent, parent_ctx,
3327 child, NULL, child_ctx);
Paul Mackerrasd5d2bc0d2009-03-30 19:07:08 +02003328 if (IS_ERR(leader))
3329 return PTR_ERR(leader);
Paul Mackerrasd859e292009-01-17 18:10:22 +11003330 list_for_each_entry(sub, &parent_counter->sibling_list, list_entry) {
Paul Mackerrasd5d2bc0d2009-03-30 19:07:08 +02003331 child_ctr = inherit_counter(sub, parent, parent_ctx,
3332 child, leader, child_ctx);
3333 if (IS_ERR(child_ctr))
3334 return PTR_ERR(child_ctr);
Paul Mackerrasd859e292009-01-17 18:10:22 +11003335 }
Ingo Molnar9b51f662008-12-12 13:49:45 +01003336 return 0;
3337}
3338
Paul Mackerrasd859e292009-01-17 18:10:22 +11003339static void sync_child_counter(struct perf_counter *child_counter,
3340 struct perf_counter *parent_counter)
3341{
Peter Zijlstra8bc20952009-05-15 20:45:59 +02003342 u64 child_val;
Paul Mackerrasd859e292009-01-17 18:10:22 +11003343
Paul Mackerrasd859e292009-01-17 18:10:22 +11003344 child_val = atomic64_read(&child_counter->count);
3345
3346 /*
3347 * Add back the child's count to the parent's count:
3348 */
3349 atomic64_add(child_val, &parent_counter->count);
Paul Mackerras53cfbf52009-03-25 22:46:58 +11003350 atomic64_add(child_counter->total_time_enabled,
3351 &parent_counter->child_total_time_enabled);
3352 atomic64_add(child_counter->total_time_running,
3353 &parent_counter->child_total_time_running);
Paul Mackerrasd859e292009-01-17 18:10:22 +11003354
3355 /*
3356 * Remove this counter from the parent's list
3357 */
Peter Zijlstrafccc7142009-05-23 18:28:56 +02003358 mutex_lock(&parent_counter->child_mutex);
Paul Mackerrasd859e292009-01-17 18:10:22 +11003359 list_del_init(&child_counter->child_list);
Peter Zijlstrafccc7142009-05-23 18:28:56 +02003360 mutex_unlock(&parent_counter->child_mutex);
Paul Mackerrasd859e292009-01-17 18:10:22 +11003361
3362 /*
3363 * Release the parent counter, if this was the last
3364 * reference to it.
3365 */
3366 fput(parent_counter->filp);
3367}
3368
Ingo Molnar9b51f662008-12-12 13:49:45 +01003369static void
3370__perf_counter_exit_task(struct task_struct *child,
3371 struct perf_counter *child_counter,
3372 struct perf_counter_context *child_ctx)
3373{
3374 struct perf_counter *parent_counter;
Ingo Molnar9b51f662008-12-12 13:49:45 +01003375
Paul Mackerrasa63eaf32009-05-22 14:17:31 +10003376 update_counter_times(child_counter);
Peter Zijlstraaa9c67f2009-05-23 18:28:59 +02003377 perf_counter_remove_from_context(child_counter);
Ingo Molnar0cc0c022008-12-14 23:20:36 +01003378
Ingo Molnar9b51f662008-12-12 13:49:45 +01003379 parent_counter = child_counter->parent;
3380 /*
3381 * It can happen that parent exits first, and has counters
3382 * that are still around due to the child reference. These
3383 * counters need to be zapped - but otherwise linger.
3384 */
Paul Mackerrasd859e292009-01-17 18:10:22 +11003385 if (parent_counter) {
3386 sync_child_counter(child_counter, parent_counter);
Peter Zijlstraf1600952009-03-19 20:26:16 +01003387 free_counter(child_counter);
Paul Mackerras4bcf3492009-02-11 13:53:19 +01003388 }
Ingo Molnar9b51f662008-12-12 13:49:45 +01003389}
3390
3391/*
Paul Mackerrasd859e292009-01-17 18:10:22 +11003392 * When a child task exits, feed back counter values to parent counters.
Ingo Molnar9b51f662008-12-12 13:49:45 +01003393 *
Paul Mackerrasd859e292009-01-17 18:10:22 +11003394 * Note: we may be running in child context, but the PID is not hashed
Ingo Molnar9b51f662008-12-12 13:49:45 +01003395 * anymore so new counters will not be added.
Paul Mackerrasa63eaf32009-05-22 14:17:31 +10003396 * (XXX not sure that is true when we get called from flush_old_exec.
3397 * -- paulus)
Ingo Molnar9b51f662008-12-12 13:49:45 +01003398 */
3399void perf_counter_exit_task(struct task_struct *child)
3400{
3401 struct perf_counter *child_counter, *tmp;
3402 struct perf_counter_context *child_ctx;
Paul Mackerrasa63eaf32009-05-22 14:17:31 +10003403 unsigned long flags;
Ingo Molnar9b51f662008-12-12 13:49:45 +01003404
Ingo Molnar33b2fb32009-05-17 11:08:41 +02003405 WARN_ON_ONCE(child != current);
3406
Paul Mackerrasa63eaf32009-05-22 14:17:31 +10003407 child_ctx = child->perf_counter_ctxp;
Ingo Molnar9b51f662008-12-12 13:49:45 +01003408
Paul Mackerrasa63eaf32009-05-22 14:17:31 +10003409 if (likely(!child_ctx))
Ingo Molnar9b51f662008-12-12 13:49:45 +01003410 return;
3411
Paul Mackerrasa63eaf32009-05-22 14:17:31 +10003412 local_irq_save(flags);
3413 __perf_counter_task_sched_out(child_ctx);
3414 child->perf_counter_ctxp = NULL;
3415 local_irq_restore(flags);
3416
3417 mutex_lock(&child_ctx->mutex);
3418
Peter Zijlstra8bc20952009-05-15 20:45:59 +02003419again:
Ingo Molnar9b51f662008-12-12 13:49:45 +01003420 list_for_each_entry_safe(child_counter, tmp, &child_ctx->counter_list,
3421 list_entry)
3422 __perf_counter_exit_task(child, child_counter, child_ctx);
Peter Zijlstra8bc20952009-05-15 20:45:59 +02003423
3424 /*
3425 * If the last counter was a group counter, it will have appended all
3426 * its siblings to the list, but we obtained 'tmp' before that which
3427 * will still point to the list head terminating the iteration.
3428 */
3429 if (!list_empty(&child_ctx->counter_list))
3430 goto again;
Paul Mackerrasa63eaf32009-05-22 14:17:31 +10003431
3432 mutex_unlock(&child_ctx->mutex);
3433
3434 put_ctx(child_ctx);
Ingo Molnar9b51f662008-12-12 13:49:45 +01003435}
3436
3437/*
3438 * Initialize the perf_counter context in task_struct
3439 */
3440void perf_counter_init_task(struct task_struct *child)
3441{
3442 struct perf_counter_context *child_ctx, *parent_ctx;
Paul Mackerrasd859e292009-01-17 18:10:22 +11003443 struct perf_counter *counter;
Ingo Molnar9b51f662008-12-12 13:49:45 +01003444 struct task_struct *parent = current;
Paul Mackerras564c2b22009-05-22 14:27:22 +10003445 int inherited_all = 1;
Ingo Molnar9b51f662008-12-12 13:49:45 +01003446
Paul Mackerrasa63eaf32009-05-22 14:17:31 +10003447 child->perf_counter_ctxp = NULL;
Ingo Molnar9b51f662008-12-12 13:49:45 +01003448
Peter Zijlstra082ff5a2009-05-23 18:29:00 +02003449 mutex_init(&child->perf_counter_mutex);
3450 INIT_LIST_HEAD(&child->perf_counter_list);
3451
Ingo Molnar9b51f662008-12-12 13:49:45 +01003452 /*
3453 * This is executed from the parent task context, so inherit
Paul Mackerrasa63eaf32009-05-22 14:17:31 +10003454 * counters that have been marked for cloning.
3455 * First allocate and initialize a context for the child.
Ingo Molnar9b51f662008-12-12 13:49:45 +01003456 */
3457
Paul Mackerrasa63eaf32009-05-22 14:17:31 +10003458 child_ctx = kmalloc(sizeof(struct perf_counter_context), GFP_KERNEL);
3459 if (!child_ctx)
Ingo Molnar9b51f662008-12-12 13:49:45 +01003460 return;
3461
Paul Mackerrasa63eaf32009-05-22 14:17:31 +10003462 parent_ctx = parent->perf_counter_ctxp;
3463 if (likely(!parent_ctx || !parent_ctx->nr_counters))
3464 return;
3465
3466 __perf_counter_init_context(child_ctx, child);
3467 child->perf_counter_ctxp = child_ctx;
3468
Ingo Molnar9b51f662008-12-12 13:49:45 +01003469 /*
3470 * Lock the parent list. No need to lock the child - not PID
3471 * hashed yet and not running, so nobody can access it.
3472 */
Paul Mackerrasd859e292009-01-17 18:10:22 +11003473 mutex_lock(&parent_ctx->mutex);
Ingo Molnar9b51f662008-12-12 13:49:45 +01003474
3475 /*
3476 * We dont have to disable NMIs - we are only looking at
3477 * the list, not manipulating it:
3478 */
Peter Zijlstrad7b629a2009-05-20 12:21:19 +02003479 list_for_each_entry_rcu(counter, &parent_ctx->event_list, event_entry) {
3480 if (counter != counter->group_leader)
3481 continue;
3482
Paul Mackerras564c2b22009-05-22 14:27:22 +10003483 if (!counter->hw_event.inherit) {
3484 inherited_all = 0;
Ingo Molnar9b51f662008-12-12 13:49:45 +01003485 continue;
Paul Mackerras564c2b22009-05-22 14:27:22 +10003486 }
Ingo Molnar9b51f662008-12-12 13:49:45 +01003487
Paul Mackerrasd859e292009-01-17 18:10:22 +11003488 if (inherit_group(counter, parent,
Paul Mackerras564c2b22009-05-22 14:27:22 +10003489 parent_ctx, child, child_ctx)) {
3490 inherited_all = 0;
Ingo Molnar9b51f662008-12-12 13:49:45 +01003491 break;
Paul Mackerras564c2b22009-05-22 14:27:22 +10003492 }
3493 }
3494
3495 if (inherited_all) {
3496 /*
3497 * Mark the child context as a clone of the parent
3498 * context, or of whatever the parent is a clone of.
3499 */
3500 if (parent_ctx->parent_ctx) {
3501 child_ctx->parent_ctx = parent_ctx->parent_ctx;
3502 child_ctx->parent_gen = parent_ctx->parent_gen;
3503 } else {
3504 child_ctx->parent_ctx = parent_ctx;
3505 child_ctx->parent_gen = parent_ctx->generation;
3506 }
3507 get_ctx(child_ctx->parent_ctx);
Ingo Molnar9b51f662008-12-12 13:49:45 +01003508 }
3509
Paul Mackerrasd859e292009-01-17 18:10:22 +11003510 mutex_unlock(&parent_ctx->mutex);
Ingo Molnar9b51f662008-12-12 13:49:45 +01003511}
3512
Ingo Molnar04289bb2008-12-11 08:38:42 +01003513static void __cpuinit perf_counter_init_cpu(int cpu)
Thomas Gleixner0793a612008-12-04 20:12:29 +01003514{
Ingo Molnar04289bb2008-12-11 08:38:42 +01003515 struct perf_cpu_context *cpuctx;
Thomas Gleixner0793a612008-12-04 20:12:29 +01003516
Ingo Molnar04289bb2008-12-11 08:38:42 +01003517 cpuctx = &per_cpu(perf_cpu_context, cpu);
3518 __perf_counter_init_context(&cpuctx->ctx, NULL);
Thomas Gleixner0793a612008-12-04 20:12:29 +01003519
Ingo Molnar1dce8d92009-05-04 19:23:18 +02003520 spin_lock(&perf_resource_lock);
Ingo Molnar04289bb2008-12-11 08:38:42 +01003521 cpuctx->max_pertask = perf_max_counters - perf_reserved_percpu;
Ingo Molnar1dce8d92009-05-04 19:23:18 +02003522 spin_unlock(&perf_resource_lock);
Ingo Molnar04289bb2008-12-11 08:38:42 +01003523
Paul Mackerras01d02872009-01-14 13:44:19 +11003524 hw_perf_counter_setup(cpu);
Thomas Gleixner0793a612008-12-04 20:12:29 +01003525}
3526
3527#ifdef CONFIG_HOTPLUG_CPU
Ingo Molnar04289bb2008-12-11 08:38:42 +01003528static void __perf_counter_exit_cpu(void *info)
Thomas Gleixner0793a612008-12-04 20:12:29 +01003529{
3530 struct perf_cpu_context *cpuctx = &__get_cpu_var(perf_cpu_context);
3531 struct perf_counter_context *ctx = &cpuctx->ctx;
3532 struct perf_counter *counter, *tmp;
3533
Ingo Molnar04289bb2008-12-11 08:38:42 +01003534 list_for_each_entry_safe(counter, tmp, &ctx->counter_list, list_entry)
3535 __perf_counter_remove_from_context(counter);
Thomas Gleixner0793a612008-12-04 20:12:29 +01003536}
Ingo Molnar04289bb2008-12-11 08:38:42 +01003537static void perf_counter_exit_cpu(int cpu)
Thomas Gleixner0793a612008-12-04 20:12:29 +01003538{
Paul Mackerrasd859e292009-01-17 18:10:22 +11003539 struct perf_cpu_context *cpuctx = &per_cpu(perf_cpu_context, cpu);
3540 struct perf_counter_context *ctx = &cpuctx->ctx;
3541
3542 mutex_lock(&ctx->mutex);
Ingo Molnar04289bb2008-12-11 08:38:42 +01003543 smp_call_function_single(cpu, __perf_counter_exit_cpu, NULL, 1);
Paul Mackerrasd859e292009-01-17 18:10:22 +11003544 mutex_unlock(&ctx->mutex);
Thomas Gleixner0793a612008-12-04 20:12:29 +01003545}
3546#else
Ingo Molnar04289bb2008-12-11 08:38:42 +01003547static inline void perf_counter_exit_cpu(int cpu) { }
Thomas Gleixner0793a612008-12-04 20:12:29 +01003548#endif
3549
3550static int __cpuinit
3551perf_cpu_notify(struct notifier_block *self, unsigned long action, void *hcpu)
3552{
3553 unsigned int cpu = (long)hcpu;
3554
3555 switch (action) {
3556
3557 case CPU_UP_PREPARE:
3558 case CPU_UP_PREPARE_FROZEN:
Ingo Molnar04289bb2008-12-11 08:38:42 +01003559 perf_counter_init_cpu(cpu);
Thomas Gleixner0793a612008-12-04 20:12:29 +01003560 break;
3561
3562 case CPU_DOWN_PREPARE:
3563 case CPU_DOWN_PREPARE_FROZEN:
Ingo Molnar04289bb2008-12-11 08:38:42 +01003564 perf_counter_exit_cpu(cpu);
Thomas Gleixner0793a612008-12-04 20:12:29 +01003565 break;
3566
3567 default:
3568 break;
3569 }
3570
3571 return NOTIFY_OK;
3572}
3573
3574static struct notifier_block __cpuinitdata perf_cpu_nb = {
3575 .notifier_call = perf_cpu_notify,
3576};
3577
Ingo Molnar0d905bc2009-05-04 19:13:30 +02003578void __init perf_counter_init(void)
Thomas Gleixner0793a612008-12-04 20:12:29 +01003579{
3580 perf_cpu_notify(&perf_cpu_nb, (unsigned long)CPU_UP_PREPARE,
3581 (void *)(long)smp_processor_id());
3582 register_cpu_notifier(&perf_cpu_nb);
Thomas Gleixner0793a612008-12-04 20:12:29 +01003583}
Thomas Gleixner0793a612008-12-04 20:12:29 +01003584
3585static ssize_t perf_show_reserve_percpu(struct sysdev_class *class, char *buf)
3586{
3587 return sprintf(buf, "%d\n", perf_reserved_percpu);
3588}
3589
3590static ssize_t
3591perf_set_reserve_percpu(struct sysdev_class *class,
3592 const char *buf,
3593 size_t count)
3594{
3595 struct perf_cpu_context *cpuctx;
3596 unsigned long val;
3597 int err, cpu, mpt;
3598
3599 err = strict_strtoul(buf, 10, &val);
3600 if (err)
3601 return err;
3602 if (val > perf_max_counters)
3603 return -EINVAL;
3604
Ingo Molnar1dce8d92009-05-04 19:23:18 +02003605 spin_lock(&perf_resource_lock);
Thomas Gleixner0793a612008-12-04 20:12:29 +01003606 perf_reserved_percpu = val;
3607 for_each_online_cpu(cpu) {
3608 cpuctx = &per_cpu(perf_cpu_context, cpu);
3609 spin_lock_irq(&cpuctx->ctx.lock);
3610 mpt = min(perf_max_counters - cpuctx->ctx.nr_counters,
3611 perf_max_counters - perf_reserved_percpu);
3612 cpuctx->max_pertask = mpt;
3613 spin_unlock_irq(&cpuctx->ctx.lock);
3614 }
Ingo Molnar1dce8d92009-05-04 19:23:18 +02003615 spin_unlock(&perf_resource_lock);
Thomas Gleixner0793a612008-12-04 20:12:29 +01003616
3617 return count;
3618}
3619
3620static ssize_t perf_show_overcommit(struct sysdev_class *class, char *buf)
3621{
3622 return sprintf(buf, "%d\n", perf_overcommit);
3623}
3624
3625static ssize_t
3626perf_set_overcommit(struct sysdev_class *class, const char *buf, size_t count)
3627{
3628 unsigned long val;
3629 int err;
3630
3631 err = strict_strtoul(buf, 10, &val);
3632 if (err)
3633 return err;
3634 if (val > 1)
3635 return -EINVAL;
3636
Ingo Molnar1dce8d92009-05-04 19:23:18 +02003637 spin_lock(&perf_resource_lock);
Thomas Gleixner0793a612008-12-04 20:12:29 +01003638 perf_overcommit = val;
Ingo Molnar1dce8d92009-05-04 19:23:18 +02003639 spin_unlock(&perf_resource_lock);
Thomas Gleixner0793a612008-12-04 20:12:29 +01003640
3641 return count;
3642}
3643
3644static SYSDEV_CLASS_ATTR(
3645 reserve_percpu,
3646 0644,
3647 perf_show_reserve_percpu,
3648 perf_set_reserve_percpu
3649 );
3650
3651static SYSDEV_CLASS_ATTR(
3652 overcommit,
3653 0644,
3654 perf_show_overcommit,
3655 perf_set_overcommit
3656 );
3657
3658static struct attribute *perfclass_attrs[] = {
3659 &attr_reserve_percpu.attr,
3660 &attr_overcommit.attr,
3661 NULL
3662};
3663
3664static struct attribute_group perfclass_attr_group = {
3665 .attrs = perfclass_attrs,
3666 .name = "perf_counters",
3667};
3668
3669static int __init perf_counter_sysfs_init(void)
3670{
3671 return sysfs_create_group(&cpu_sysdev_class.kset.kobj,
3672 &perfclass_attr_group);
3673}
3674device_initcall(perf_counter_sysfs_init);