blob: cb4062559b47c66c8b696809e8945f4166d47ddc [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++;
Ingo Molnar04289bb2008-12-11 08:38:42 +0100137}
138
Paul Mackerrasa63eaf32009-05-22 14:17:31 +1000139/*
140 * Remove a counter from the lists for its context.
Peter Zijlstrafccc7142009-05-23 18:28:56 +0200141 * Must be called with ctx->mutex and ctx->lock held.
Paul Mackerrasa63eaf32009-05-22 14:17:31 +1000142 */
Ingo Molnar04289bb2008-12-11 08:38:42 +0100143static void
144list_del_counter(struct perf_counter *counter, struct perf_counter_context *ctx)
145{
146 struct perf_counter *sibling, *tmp;
147
Paul Mackerrasa63eaf32009-05-22 14:17:31 +1000148 if (list_empty(&counter->list_entry))
149 return;
Peter Zijlstra8bc20952009-05-15 20:45:59 +0200150 ctx->nr_counters--;
151
Ingo Molnar04289bb2008-12-11 08:38:42 +0100152 list_del_init(&counter->list_entry);
Peter Zijlstra592903c2009-03-13 12:21:36 +0100153 list_del_rcu(&counter->event_entry);
Ingo Molnar04289bb2008-12-11 08:38:42 +0100154
Peter Zijlstra5c148192009-03-25 12:30:23 +0100155 if (counter->group_leader != counter)
156 counter->group_leader->nr_siblings--;
157
Ingo Molnar04289bb2008-12-11 08:38:42 +0100158 /*
159 * If this was a group counter with sibling counters then
160 * upgrade the siblings to singleton counters by adding them
161 * to the context list directly:
162 */
163 list_for_each_entry_safe(sibling, tmp,
164 &counter->sibling_list, list_entry) {
165
Peter Zijlstra75564232009-03-13 12:21:29 +0100166 list_move_tail(&sibling->list_entry, &ctx->counter_list);
Ingo Molnar04289bb2008-12-11 08:38:42 +0100167 sibling->group_leader = sibling;
168 }
169}
170
Paul Mackerras3b6f9e52009-01-14 21:00:30 +1100171static void
172counter_sched_out(struct perf_counter *counter,
173 struct perf_cpu_context *cpuctx,
174 struct perf_counter_context *ctx)
175{
176 if (counter->state != PERF_COUNTER_STATE_ACTIVE)
177 return;
178
179 counter->state = PERF_COUNTER_STATE_INACTIVE;
Peter Zijlstra4af49982009-04-06 11:45:10 +0200180 counter->tstamp_stopped = ctx->time;
Robert Richter4aeb0b42009-04-29 12:47:03 +0200181 counter->pmu->disable(counter);
Paul Mackerras3b6f9e52009-01-14 21:00:30 +1100182 counter->oncpu = -1;
183
184 if (!is_software_counter(counter))
185 cpuctx->active_oncpu--;
186 ctx->nr_active--;
187 if (counter->hw_event.exclusive || !cpuctx->active_oncpu)
188 cpuctx->exclusive = 0;
189}
190
Paul Mackerrasd859e292009-01-17 18:10:22 +1100191static void
192group_sched_out(struct perf_counter *group_counter,
193 struct perf_cpu_context *cpuctx,
194 struct perf_counter_context *ctx)
195{
196 struct perf_counter *counter;
197
198 if (group_counter->state != PERF_COUNTER_STATE_ACTIVE)
199 return;
200
201 counter_sched_out(group_counter, cpuctx, ctx);
202
203 /*
204 * Schedule out siblings (if any):
205 */
206 list_for_each_entry(counter, &group_counter->sibling_list, list_entry)
207 counter_sched_out(counter, cpuctx, ctx);
208
209 if (group_counter->hw_event.exclusive)
210 cpuctx->exclusive = 0;
211}
212
Thomas Gleixner0793a612008-12-04 20:12:29 +0100213/*
Paul Mackerras564c2b22009-05-22 14:27:22 +1000214 * Mark this context as not being a clone of another.
215 * Called when counters are added to or removed from this context.
216 * We also increment our generation number so that anything that
217 * was cloned from this context before this will not match anything
218 * cloned from this context after this.
219 */
220static void unclone_ctx(struct perf_counter_context *ctx)
221{
222 ++ctx->generation;
223 if (!ctx->parent_ctx)
224 return;
225 put_ctx(ctx->parent_ctx);
226 ctx->parent_ctx = NULL;
227}
228
229/*
Thomas Gleixner0793a612008-12-04 20:12:29 +0100230 * Cross CPU call to remove a performance counter
231 *
232 * We disable the counter on the hardware level first. After that we
233 * remove it from the context list.
234 */
Ingo Molnar04289bb2008-12-11 08:38:42 +0100235static void __perf_counter_remove_from_context(void *info)
Thomas Gleixner0793a612008-12-04 20:12:29 +0100236{
237 struct perf_cpu_context *cpuctx = &__get_cpu_var(perf_cpu_context);
238 struct perf_counter *counter = info;
239 struct perf_counter_context *ctx = counter->ctx;
Ingo Molnar9b51f662008-12-12 13:49:45 +0100240 unsigned long flags;
Thomas Gleixner0793a612008-12-04 20:12:29 +0100241
242 /*
243 * If this is a task context, we need to check whether it is
244 * the current task context of this cpu. If not it has been
245 * scheduled out before the smp call arrived.
246 */
247 if (ctx->task && cpuctx->task_ctx != ctx)
248 return;
249
Peter Zijlstra849691a2009-04-06 11:45:12 +0200250 spin_lock_irqsave(&ctx->lock, flags);
Ingo Molnar34adc802009-05-20 20:13:28 +0200251 /*
252 * Protect the list operation against NMI by disabling the
253 * counters on a global level.
254 */
255 perf_disable();
Thomas Gleixner0793a612008-12-04 20:12:29 +0100256
Paul Mackerras3b6f9e52009-01-14 21:00:30 +1100257 counter_sched_out(counter, cpuctx, ctx);
258
Ingo Molnar04289bb2008-12-11 08:38:42 +0100259 list_del_counter(counter, ctx);
Thomas Gleixner0793a612008-12-04 20:12:29 +0100260
261 if (!ctx->task) {
262 /*
263 * Allow more per task counters with respect to the
264 * reservation:
265 */
266 cpuctx->max_pertask =
267 min(perf_max_counters - ctx->nr_counters,
268 perf_max_counters - perf_reserved_percpu);
269 }
270
Ingo Molnar34adc802009-05-20 20:13:28 +0200271 perf_enable();
Peter Zijlstra849691a2009-04-06 11:45:12 +0200272 spin_unlock_irqrestore(&ctx->lock, flags);
Thomas Gleixner0793a612008-12-04 20:12:29 +0100273}
274
275
276/*
277 * Remove the counter from a task's (or a CPU's) list of counters.
278 *
Peter Zijlstrafccc7142009-05-23 18:28:56 +0200279 * Must be called with ctx->mutex held.
Thomas Gleixner0793a612008-12-04 20:12:29 +0100280 *
281 * CPU counters are removed with a smp call. For task counters we only
282 * call when the task is on a CPU.
283 */
Ingo Molnar04289bb2008-12-11 08:38:42 +0100284static void perf_counter_remove_from_context(struct perf_counter *counter)
Thomas Gleixner0793a612008-12-04 20:12:29 +0100285{
286 struct perf_counter_context *ctx = counter->ctx;
287 struct task_struct *task = ctx->task;
288
Paul Mackerras564c2b22009-05-22 14:27:22 +1000289 unclone_ctx(ctx);
Thomas Gleixner0793a612008-12-04 20:12:29 +0100290 if (!task) {
291 /*
292 * Per cpu counters are removed via an smp call and
293 * the removal is always sucessful.
294 */
295 smp_call_function_single(counter->cpu,
Ingo Molnar04289bb2008-12-11 08:38:42 +0100296 __perf_counter_remove_from_context,
Thomas Gleixner0793a612008-12-04 20:12:29 +0100297 counter, 1);
298 return;
299 }
300
301retry:
Ingo Molnar04289bb2008-12-11 08:38:42 +0100302 task_oncpu_function_call(task, __perf_counter_remove_from_context,
Thomas Gleixner0793a612008-12-04 20:12:29 +0100303 counter);
304
305 spin_lock_irq(&ctx->lock);
306 /*
307 * If the context is active we need to retry the smp call.
308 */
Ingo Molnar04289bb2008-12-11 08:38:42 +0100309 if (ctx->nr_active && !list_empty(&counter->list_entry)) {
Thomas Gleixner0793a612008-12-04 20:12:29 +0100310 spin_unlock_irq(&ctx->lock);
311 goto retry;
312 }
313
314 /*
315 * The lock prevents that this context is scheduled in so we
Ingo Molnar04289bb2008-12-11 08:38:42 +0100316 * can remove the counter safely, if the call above did not
Thomas Gleixner0793a612008-12-04 20:12:29 +0100317 * succeed.
318 */
Ingo Molnar04289bb2008-12-11 08:38:42 +0100319 if (!list_empty(&counter->list_entry)) {
Ingo Molnar04289bb2008-12-11 08:38:42 +0100320 list_del_counter(counter, ctx);
Thomas Gleixner0793a612008-12-04 20:12:29 +0100321 }
322 spin_unlock_irq(&ctx->lock);
323}
324
Peter Zijlstra4af49982009-04-06 11:45:10 +0200325static inline u64 perf_clock(void)
Paul Mackerras53cfbf52009-03-25 22:46:58 +1100326{
Peter Zijlstra4af49982009-04-06 11:45:10 +0200327 return cpu_clock(smp_processor_id());
Paul Mackerras53cfbf52009-03-25 22:46:58 +1100328}
329
330/*
331 * Update the record of the current time in a context.
332 */
Peter Zijlstra4af49982009-04-06 11:45:10 +0200333static void update_context_time(struct perf_counter_context *ctx)
Paul Mackerras53cfbf52009-03-25 22:46:58 +1100334{
Peter Zijlstra4af49982009-04-06 11:45:10 +0200335 u64 now = perf_clock();
336
337 ctx->time += now - ctx->timestamp;
338 ctx->timestamp = now;
Paul Mackerras53cfbf52009-03-25 22:46:58 +1100339}
340
341/*
342 * Update the total_time_enabled and total_time_running fields for a counter.
343 */
344static void update_counter_times(struct perf_counter *counter)
345{
346 struct perf_counter_context *ctx = counter->ctx;
347 u64 run_end;
348
Peter Zijlstra4af49982009-04-06 11:45:10 +0200349 if (counter->state < PERF_COUNTER_STATE_INACTIVE)
350 return;
351
352 counter->total_time_enabled = ctx->time - counter->tstamp_enabled;
353
354 if (counter->state == PERF_COUNTER_STATE_INACTIVE)
355 run_end = counter->tstamp_stopped;
356 else
357 run_end = ctx->time;
358
359 counter->total_time_running = run_end - counter->tstamp_running;
Paul Mackerras53cfbf52009-03-25 22:46:58 +1100360}
361
362/*
363 * Update total_time_enabled and total_time_running for all counters in a group.
364 */
365static void update_group_times(struct perf_counter *leader)
366{
367 struct perf_counter *counter;
368
369 update_counter_times(leader);
370 list_for_each_entry(counter, &leader->sibling_list, list_entry)
371 update_counter_times(counter);
372}
373
374/*
Paul Mackerrasd859e292009-01-17 18:10:22 +1100375 * Cross CPU call to disable a performance counter
376 */
377static void __perf_counter_disable(void *info)
378{
379 struct perf_counter *counter = info;
380 struct perf_cpu_context *cpuctx = &__get_cpu_var(perf_cpu_context);
381 struct perf_counter_context *ctx = counter->ctx;
382 unsigned long flags;
383
384 /*
385 * If this is a per-task counter, need to check whether this
386 * counter's task is the current task on this cpu.
387 */
388 if (ctx->task && cpuctx->task_ctx != ctx)
389 return;
390
Peter Zijlstra849691a2009-04-06 11:45:12 +0200391 spin_lock_irqsave(&ctx->lock, flags);
Paul Mackerrasd859e292009-01-17 18:10:22 +1100392
393 /*
394 * If the counter is on, turn it off.
395 * If it is in error state, leave it in error state.
396 */
397 if (counter->state >= PERF_COUNTER_STATE_INACTIVE) {
Peter Zijlstra4af49982009-04-06 11:45:10 +0200398 update_context_time(ctx);
Paul Mackerras53cfbf52009-03-25 22:46:58 +1100399 update_counter_times(counter);
Paul Mackerrasd859e292009-01-17 18:10:22 +1100400 if (counter == counter->group_leader)
401 group_sched_out(counter, cpuctx, ctx);
402 else
403 counter_sched_out(counter, cpuctx, ctx);
404 counter->state = PERF_COUNTER_STATE_OFF;
405 }
406
Peter Zijlstra849691a2009-04-06 11:45:12 +0200407 spin_unlock_irqrestore(&ctx->lock, flags);
Paul Mackerrasd859e292009-01-17 18:10:22 +1100408}
409
410/*
411 * Disable a counter.
412 */
413static void perf_counter_disable(struct perf_counter *counter)
414{
415 struct perf_counter_context *ctx = counter->ctx;
416 struct task_struct *task = ctx->task;
417
418 if (!task) {
419 /*
420 * Disable the counter on the cpu that it's on
421 */
422 smp_call_function_single(counter->cpu, __perf_counter_disable,
423 counter, 1);
424 return;
425 }
426
427 retry:
428 task_oncpu_function_call(task, __perf_counter_disable, counter);
429
430 spin_lock_irq(&ctx->lock);
431 /*
432 * If the counter is still active, we need to retry the cross-call.
433 */
434 if (counter->state == PERF_COUNTER_STATE_ACTIVE) {
435 spin_unlock_irq(&ctx->lock);
436 goto retry;
437 }
438
439 /*
440 * Since we have the lock this context can't be scheduled
441 * in, so we can change the state safely.
442 */
Paul Mackerras53cfbf52009-03-25 22:46:58 +1100443 if (counter->state == PERF_COUNTER_STATE_INACTIVE) {
444 update_counter_times(counter);
Paul Mackerrasd859e292009-01-17 18:10:22 +1100445 counter->state = PERF_COUNTER_STATE_OFF;
Paul Mackerras53cfbf52009-03-25 22:46:58 +1100446 }
Paul Mackerrasd859e292009-01-17 18:10:22 +1100447
448 spin_unlock_irq(&ctx->lock);
449}
450
Ingo Molnar235c7fc2008-12-21 14:43:25 +0100451static int
452counter_sched_in(struct perf_counter *counter,
453 struct perf_cpu_context *cpuctx,
454 struct perf_counter_context *ctx,
455 int cpu)
456{
Paul Mackerras3b6f9e52009-01-14 21:00:30 +1100457 if (counter->state <= PERF_COUNTER_STATE_OFF)
Ingo Molnar235c7fc2008-12-21 14:43:25 +0100458 return 0;
459
460 counter->state = PERF_COUNTER_STATE_ACTIVE;
461 counter->oncpu = cpu; /* TODO: put 'cpu' into cpuctx->cpu */
462 /*
463 * The new state must be visible before we turn it on in the hardware:
464 */
465 smp_wmb();
466
Robert Richter4aeb0b42009-04-29 12:47:03 +0200467 if (counter->pmu->enable(counter)) {
Ingo Molnar235c7fc2008-12-21 14:43:25 +0100468 counter->state = PERF_COUNTER_STATE_INACTIVE;
469 counter->oncpu = -1;
470 return -EAGAIN;
471 }
472
Peter Zijlstra4af49982009-04-06 11:45:10 +0200473 counter->tstamp_running += ctx->time - counter->tstamp_stopped;
Paul Mackerras53cfbf52009-03-25 22:46:58 +1100474
Paul Mackerras3b6f9e52009-01-14 21:00:30 +1100475 if (!is_software_counter(counter))
476 cpuctx->active_oncpu++;
Ingo Molnar235c7fc2008-12-21 14:43:25 +0100477 ctx->nr_active++;
478
Paul Mackerras3b6f9e52009-01-14 21:00:30 +1100479 if (counter->hw_event.exclusive)
480 cpuctx->exclusive = 1;
481
Ingo Molnar235c7fc2008-12-21 14:43:25 +0100482 return 0;
483}
484
Paul Mackerras6751b712009-05-11 12:08:02 +1000485static int
486group_sched_in(struct perf_counter *group_counter,
487 struct perf_cpu_context *cpuctx,
488 struct perf_counter_context *ctx,
489 int cpu)
490{
491 struct perf_counter *counter, *partial_group;
492 int ret;
493
494 if (group_counter->state == PERF_COUNTER_STATE_OFF)
495 return 0;
496
497 ret = hw_perf_group_sched_in(group_counter, cpuctx, ctx, cpu);
498 if (ret)
499 return ret < 0 ? ret : 0;
500
501 group_counter->prev_state = group_counter->state;
502 if (counter_sched_in(group_counter, cpuctx, ctx, cpu))
503 return -EAGAIN;
504
505 /*
506 * Schedule in siblings as one group (if any):
507 */
508 list_for_each_entry(counter, &group_counter->sibling_list, list_entry) {
509 counter->prev_state = counter->state;
510 if (counter_sched_in(counter, cpuctx, ctx, cpu)) {
511 partial_group = counter;
512 goto group_error;
513 }
514 }
515
516 return 0;
517
518group_error:
519 /*
520 * Groups can be scheduled in as one unit only, so undo any
521 * partial group before returning:
522 */
523 list_for_each_entry(counter, &group_counter->sibling_list, list_entry) {
524 if (counter == partial_group)
525 break;
526 counter_sched_out(counter, cpuctx, ctx);
527 }
528 counter_sched_out(group_counter, cpuctx, ctx);
529
530 return -EAGAIN;
531}
532
Thomas Gleixner0793a612008-12-04 20:12:29 +0100533/*
Paul Mackerras3b6f9e52009-01-14 21:00:30 +1100534 * Return 1 for a group consisting entirely of software counters,
535 * 0 if the group contains any hardware counters.
536 */
537static int is_software_only_group(struct perf_counter *leader)
538{
539 struct perf_counter *counter;
540
541 if (!is_software_counter(leader))
542 return 0;
Peter Zijlstra5c148192009-03-25 12:30:23 +0100543
Paul Mackerras3b6f9e52009-01-14 21:00:30 +1100544 list_for_each_entry(counter, &leader->sibling_list, list_entry)
545 if (!is_software_counter(counter))
546 return 0;
Peter Zijlstra5c148192009-03-25 12:30:23 +0100547
Paul Mackerras3b6f9e52009-01-14 21:00:30 +1100548 return 1;
549}
550
551/*
552 * Work out whether we can put this counter group on the CPU now.
553 */
554static int group_can_go_on(struct perf_counter *counter,
555 struct perf_cpu_context *cpuctx,
556 int can_add_hw)
557{
558 /*
559 * Groups consisting entirely of software counters can always go on.
560 */
561 if (is_software_only_group(counter))
562 return 1;
563 /*
564 * If an exclusive group is already on, no other hardware
565 * counters can go on.
566 */
567 if (cpuctx->exclusive)
568 return 0;
569 /*
570 * If this group is exclusive and there are already
571 * counters on the CPU, it can't go on.
572 */
573 if (counter->hw_event.exclusive && cpuctx->active_oncpu)
574 return 0;
575 /*
576 * Otherwise, try to add it if all previous groups were able
577 * to go on.
578 */
579 return can_add_hw;
580}
581
Paul Mackerras53cfbf52009-03-25 22:46:58 +1100582static void add_counter_to_ctx(struct perf_counter *counter,
583 struct perf_counter_context *ctx)
584{
585 list_add_counter(counter, ctx);
Paul Mackerras53cfbf52009-03-25 22:46:58 +1100586 counter->prev_state = PERF_COUNTER_STATE_OFF;
Peter Zijlstra4af49982009-04-06 11:45:10 +0200587 counter->tstamp_enabled = ctx->time;
588 counter->tstamp_running = ctx->time;
589 counter->tstamp_stopped = ctx->time;
Paul Mackerras53cfbf52009-03-25 22:46:58 +1100590}
591
Paul Mackerras3b6f9e52009-01-14 21:00:30 +1100592/*
Ingo Molnar235c7fc2008-12-21 14:43:25 +0100593 * Cross CPU call to install and enable a performance counter
Peter Zijlstra682076a2009-05-23 18:28:57 +0200594 *
595 * Must be called with ctx->mutex held
Thomas Gleixner0793a612008-12-04 20:12:29 +0100596 */
597static void __perf_install_in_context(void *info)
598{
599 struct perf_cpu_context *cpuctx = &__get_cpu_var(perf_cpu_context);
600 struct perf_counter *counter = info;
601 struct perf_counter_context *ctx = counter->ctx;
Paul Mackerrasd859e292009-01-17 18:10:22 +1100602 struct perf_counter *leader = counter->group_leader;
Thomas Gleixner0793a612008-12-04 20:12:29 +0100603 int cpu = smp_processor_id();
Ingo Molnar9b51f662008-12-12 13:49:45 +0100604 unsigned long flags;
Paul Mackerras3b6f9e52009-01-14 21:00:30 +1100605 int err;
Thomas Gleixner0793a612008-12-04 20:12:29 +0100606
607 /*
608 * If this is a task context, we need to check whether it is
609 * the current task context of this cpu. If not it has been
610 * scheduled out before the smp call arrived.
Paul Mackerrasa63eaf32009-05-22 14:17:31 +1000611 * Or possibly this is the right context but it isn't
612 * on this cpu because it had no counters.
Thomas Gleixner0793a612008-12-04 20:12:29 +0100613 */
Paul Mackerrasa63eaf32009-05-22 14:17:31 +1000614 if (ctx->task && cpuctx->task_ctx != ctx) {
615 if (cpuctx->task_ctx || ctx->task != current)
616 return;
617 cpuctx->task_ctx = ctx;
618 }
Thomas Gleixner0793a612008-12-04 20:12:29 +0100619
Peter Zijlstra849691a2009-04-06 11:45:12 +0200620 spin_lock_irqsave(&ctx->lock, flags);
Paul Mackerrasa63eaf32009-05-22 14:17:31 +1000621 ctx->is_active = 1;
Peter Zijlstra4af49982009-04-06 11:45:10 +0200622 update_context_time(ctx);
Thomas Gleixner0793a612008-12-04 20:12:29 +0100623
624 /*
625 * Protect the list operation against NMI by disabling the
626 * counters on a global level. NOP for non NMI based counters.
627 */
Peter Zijlstra9e35ad32009-05-13 16:21:38 +0200628 perf_disable();
Thomas Gleixner0793a612008-12-04 20:12:29 +0100629
Paul Mackerras53cfbf52009-03-25 22:46:58 +1100630 add_counter_to_ctx(counter, ctx);
Thomas Gleixner0793a612008-12-04 20:12:29 +0100631
Paul Mackerras3b6f9e52009-01-14 21:00:30 +1100632 /*
Paul Mackerrasd859e292009-01-17 18:10:22 +1100633 * Don't put the counter on if it is disabled or if
634 * it is in a group and the group isn't on.
635 */
636 if (counter->state != PERF_COUNTER_STATE_INACTIVE ||
637 (leader != counter && leader->state != PERF_COUNTER_STATE_ACTIVE))
638 goto unlock;
639
640 /*
Paul Mackerras3b6f9e52009-01-14 21:00:30 +1100641 * An exclusive counter can't go on if there are already active
642 * hardware counters, and no hardware counter can go on if there
643 * is already an exclusive counter on.
644 */
Paul Mackerrasd859e292009-01-17 18:10:22 +1100645 if (!group_can_go_on(counter, cpuctx, 1))
Paul Mackerras3b6f9e52009-01-14 21:00:30 +1100646 err = -EEXIST;
647 else
648 err = counter_sched_in(counter, cpuctx, ctx, cpu);
Thomas Gleixner0793a612008-12-04 20:12:29 +0100649
Paul Mackerrasd859e292009-01-17 18:10:22 +1100650 if (err) {
651 /*
652 * This counter couldn't go on. If it is in a group
653 * then we have to pull the whole group off.
654 * If the counter group is pinned then put it in error state.
655 */
656 if (leader != counter)
657 group_sched_out(leader, cpuctx, ctx);
Paul Mackerras53cfbf52009-03-25 22:46:58 +1100658 if (leader->hw_event.pinned) {
659 update_group_times(leader);
Paul Mackerrasd859e292009-01-17 18:10:22 +1100660 leader->state = PERF_COUNTER_STATE_ERROR;
Paul Mackerras53cfbf52009-03-25 22:46:58 +1100661 }
Paul Mackerrasd859e292009-01-17 18:10:22 +1100662 }
Paul Mackerras3b6f9e52009-01-14 21:00:30 +1100663
664 if (!err && !ctx->task && cpuctx->max_pertask)
Thomas Gleixner0793a612008-12-04 20:12:29 +0100665 cpuctx->max_pertask--;
666
Paul Mackerrasd859e292009-01-17 18:10:22 +1100667 unlock:
Peter Zijlstra9e35ad32009-05-13 16:21:38 +0200668 perf_enable();
Ingo Molnar235c7fc2008-12-21 14:43:25 +0100669
Peter Zijlstra849691a2009-04-06 11:45:12 +0200670 spin_unlock_irqrestore(&ctx->lock, flags);
Thomas Gleixner0793a612008-12-04 20:12:29 +0100671}
672
673/*
674 * Attach a performance counter to a context
675 *
676 * First we add the counter to the list with the hardware enable bit
677 * in counter->hw_config cleared.
678 *
679 * If the counter is attached to a task which is on a CPU we use a smp
680 * call to enable it in the task context. The task might have been
681 * scheduled away, but we check this in the smp call again.
Paul Mackerrasd859e292009-01-17 18:10:22 +1100682 *
683 * Must be called with ctx->mutex held.
Thomas Gleixner0793a612008-12-04 20:12:29 +0100684 */
685static void
686perf_install_in_context(struct perf_counter_context *ctx,
687 struct perf_counter *counter,
688 int cpu)
689{
690 struct task_struct *task = ctx->task;
691
Thomas Gleixner0793a612008-12-04 20:12:29 +0100692 if (!task) {
693 /*
694 * Per cpu counters are installed via an smp call and
695 * the install is always sucessful.
696 */
697 smp_call_function_single(cpu, __perf_install_in_context,
698 counter, 1);
699 return;
700 }
701
Thomas Gleixner0793a612008-12-04 20:12:29 +0100702retry:
703 task_oncpu_function_call(task, __perf_install_in_context,
704 counter);
705
706 spin_lock_irq(&ctx->lock);
707 /*
Thomas Gleixner0793a612008-12-04 20:12:29 +0100708 * we need to retry the smp call.
709 */
Paul Mackerrasd859e292009-01-17 18:10:22 +1100710 if (ctx->is_active && list_empty(&counter->list_entry)) {
Thomas Gleixner0793a612008-12-04 20:12:29 +0100711 spin_unlock_irq(&ctx->lock);
712 goto retry;
713 }
714
715 /*
716 * The lock prevents that this context is scheduled in so we
717 * can add the counter safely, if it the call above did not
718 * succeed.
719 */
Paul Mackerras53cfbf52009-03-25 22:46:58 +1100720 if (list_empty(&counter->list_entry))
721 add_counter_to_ctx(counter, ctx);
Thomas Gleixner0793a612008-12-04 20:12:29 +0100722 spin_unlock_irq(&ctx->lock);
723}
724
Paul Mackerrasd859e292009-01-17 18:10:22 +1100725/*
726 * Cross CPU call to enable a performance counter
727 */
728static void __perf_counter_enable(void *info)
Ingo Molnar04289bb2008-12-11 08:38:42 +0100729{
Paul Mackerrasd859e292009-01-17 18:10:22 +1100730 struct perf_counter *counter = info;
731 struct perf_cpu_context *cpuctx = &__get_cpu_var(perf_cpu_context);
732 struct perf_counter_context *ctx = counter->ctx;
733 struct perf_counter *leader = counter->group_leader;
734 unsigned long flags;
735 int err;
Ingo Molnar04289bb2008-12-11 08:38:42 +0100736
737 /*
Paul Mackerrasd859e292009-01-17 18:10:22 +1100738 * If this is a per-task counter, need to check whether this
739 * counter's task is the current task on this cpu.
Ingo Molnar04289bb2008-12-11 08:38:42 +0100740 */
Paul Mackerrasa63eaf32009-05-22 14:17:31 +1000741 if (ctx->task && cpuctx->task_ctx != ctx) {
742 if (cpuctx->task_ctx || ctx->task != current)
743 return;
744 cpuctx->task_ctx = ctx;
745 }
Paul Mackerras3b6f9e52009-01-14 21:00:30 +1100746
Peter Zijlstra849691a2009-04-06 11:45:12 +0200747 spin_lock_irqsave(&ctx->lock, flags);
Paul Mackerrasa63eaf32009-05-22 14:17:31 +1000748 ctx->is_active = 1;
Peter Zijlstra4af49982009-04-06 11:45:10 +0200749 update_context_time(ctx);
Paul Mackerrasd859e292009-01-17 18:10:22 +1100750
Paul Mackerrasc07c99b2009-02-13 22:10:34 +1100751 counter->prev_state = counter->state;
Paul Mackerrasd859e292009-01-17 18:10:22 +1100752 if (counter->state >= PERF_COUNTER_STATE_INACTIVE)
753 goto unlock;
754 counter->state = PERF_COUNTER_STATE_INACTIVE;
Peter Zijlstra4af49982009-04-06 11:45:10 +0200755 counter->tstamp_enabled = ctx->time - counter->total_time_enabled;
Paul Mackerrasd859e292009-01-17 18:10:22 +1100756
757 /*
758 * If the counter is in a group and isn't the group leader,
759 * then don't put it on unless the group is on.
760 */
761 if (leader != counter && leader->state != PERF_COUNTER_STATE_ACTIVE)
762 goto unlock;
763
Paul Mackerrase758a332009-05-12 21:59:01 +1000764 if (!group_can_go_on(counter, cpuctx, 1)) {
Paul Mackerrasd859e292009-01-17 18:10:22 +1100765 err = -EEXIST;
Paul Mackerrase758a332009-05-12 21:59:01 +1000766 } else {
Peter Zijlstra9e35ad32009-05-13 16:21:38 +0200767 perf_disable();
Paul Mackerrase758a332009-05-12 21:59:01 +1000768 if (counter == leader)
769 err = group_sched_in(counter, cpuctx, ctx,
770 smp_processor_id());
771 else
772 err = counter_sched_in(counter, cpuctx, ctx,
773 smp_processor_id());
Peter Zijlstra9e35ad32009-05-13 16:21:38 +0200774 perf_enable();
Paul Mackerrase758a332009-05-12 21:59:01 +1000775 }
Paul Mackerrasd859e292009-01-17 18:10:22 +1100776
777 if (err) {
778 /*
779 * If this counter can't go on and it's part of a
780 * group, then the whole group has to come off.
781 */
782 if (leader != counter)
783 group_sched_out(leader, cpuctx, ctx);
Paul Mackerras53cfbf52009-03-25 22:46:58 +1100784 if (leader->hw_event.pinned) {
785 update_group_times(leader);
Paul Mackerrasd859e292009-01-17 18:10:22 +1100786 leader->state = PERF_COUNTER_STATE_ERROR;
Paul Mackerras53cfbf52009-03-25 22:46:58 +1100787 }
Paul Mackerrasd859e292009-01-17 18:10:22 +1100788 }
789
790 unlock:
Peter Zijlstra849691a2009-04-06 11:45:12 +0200791 spin_unlock_irqrestore(&ctx->lock, flags);
Paul Mackerrasd859e292009-01-17 18:10:22 +1100792}
793
794/*
795 * Enable a counter.
796 */
797static void perf_counter_enable(struct perf_counter *counter)
798{
799 struct perf_counter_context *ctx = counter->ctx;
800 struct task_struct *task = ctx->task;
801
802 if (!task) {
803 /*
804 * Enable the counter on the cpu that it's on
805 */
806 smp_call_function_single(counter->cpu, __perf_counter_enable,
807 counter, 1);
808 return;
809 }
810
811 spin_lock_irq(&ctx->lock);
812 if (counter->state >= PERF_COUNTER_STATE_INACTIVE)
813 goto out;
814
815 /*
816 * If the counter is in error state, clear that first.
817 * That way, if we see the counter in error state below, we
818 * know that it has gone back into error state, as distinct
819 * from the task having been scheduled away before the
820 * cross-call arrived.
821 */
822 if (counter->state == PERF_COUNTER_STATE_ERROR)
823 counter->state = PERF_COUNTER_STATE_OFF;
824
825 retry:
826 spin_unlock_irq(&ctx->lock);
827 task_oncpu_function_call(task, __perf_counter_enable, counter);
828
829 spin_lock_irq(&ctx->lock);
830
831 /*
832 * If the context is active and the counter is still off,
833 * we need to retry the cross-call.
834 */
835 if (ctx->is_active && counter->state == PERF_COUNTER_STATE_OFF)
836 goto retry;
837
838 /*
839 * Since we have the lock this context can't be scheduled
840 * in, so we can change the state safely.
841 */
Paul Mackerras53cfbf52009-03-25 22:46:58 +1100842 if (counter->state == PERF_COUNTER_STATE_OFF) {
Paul Mackerrasd859e292009-01-17 18:10:22 +1100843 counter->state = PERF_COUNTER_STATE_INACTIVE;
Peter Zijlstra4af49982009-04-06 11:45:10 +0200844 counter->tstamp_enabled =
845 ctx->time - counter->total_time_enabled;
Paul Mackerras53cfbf52009-03-25 22:46:58 +1100846 }
Paul Mackerrasd859e292009-01-17 18:10:22 +1100847 out:
848 spin_unlock_irq(&ctx->lock);
849}
850
Peter Zijlstra2023b352009-05-05 17:50:26 +0200851static int perf_counter_refresh(struct perf_counter *counter, int refresh)
Peter Zijlstra79f14642009-04-06 11:45:07 +0200852{
Peter Zijlstra2023b352009-05-05 17:50:26 +0200853 /*
854 * not supported on inherited counters
855 */
856 if (counter->hw_event.inherit)
857 return -EINVAL;
858
Peter Zijlstra79f14642009-04-06 11:45:07 +0200859 atomic_add(refresh, &counter->event_limit);
860 perf_counter_enable(counter);
Peter Zijlstra2023b352009-05-05 17:50:26 +0200861
862 return 0;
Peter Zijlstra79f14642009-04-06 11:45:07 +0200863}
864
Ingo Molnar235c7fc2008-12-21 14:43:25 +0100865void __perf_counter_sched_out(struct perf_counter_context *ctx,
866 struct perf_cpu_context *cpuctx)
867{
868 struct perf_counter *counter;
869
Ingo Molnar235c7fc2008-12-21 14:43:25 +0100870 spin_lock(&ctx->lock);
Paul Mackerrasd859e292009-01-17 18:10:22 +1100871 ctx->is_active = 0;
872 if (likely(!ctx->nr_counters))
873 goto out;
Peter Zijlstra4af49982009-04-06 11:45:10 +0200874 update_context_time(ctx);
Paul Mackerrasd859e292009-01-17 18:10:22 +1100875
Peter Zijlstra9e35ad32009-05-13 16:21:38 +0200876 perf_disable();
Ingo Molnar235c7fc2008-12-21 14:43:25 +0100877 if (ctx->nr_active) {
Peter Zijlstraafedadf2009-05-20 12:21:22 +0200878 list_for_each_entry(counter, &ctx->counter_list, list_entry) {
879 if (counter != counter->group_leader)
880 counter_sched_out(counter, cpuctx, ctx);
881 else
882 group_sched_out(counter, cpuctx, ctx);
883 }
Ingo Molnar235c7fc2008-12-21 14:43:25 +0100884 }
Peter Zijlstra9e35ad32009-05-13 16:21:38 +0200885 perf_enable();
Paul Mackerrasd859e292009-01-17 18:10:22 +1100886 out:
Ingo Molnar235c7fc2008-12-21 14:43:25 +0100887 spin_unlock(&ctx->lock);
888}
889
Thomas Gleixner0793a612008-12-04 20:12:29 +0100890/*
Paul Mackerras564c2b22009-05-22 14:27:22 +1000891 * Test whether two contexts are equivalent, i.e. whether they
892 * have both been cloned from the same version of the same context
893 * and they both have the same number of enabled counters.
894 * If the number of enabled counters is the same, then the set
895 * of enabled counters should be the same, because these are both
896 * inherited contexts, therefore we can't access individual counters
897 * in them directly with an fd; we can only enable/disable all
898 * counters via prctl, or enable/disable all counters in a family
899 * via ioctl, which will have the same effect on both contexts.
900 */
901static int context_equiv(struct perf_counter_context *ctx1,
902 struct perf_counter_context *ctx2)
903{
904 return ctx1->parent_ctx && ctx1->parent_ctx == ctx2->parent_ctx
Peter Zijlstra475c5572009-05-23 18:29:01 +0200905 && ctx1->parent_gen == ctx2->parent_gen;
Paul Mackerras564c2b22009-05-22 14:27:22 +1000906}
907
908/*
Thomas Gleixner0793a612008-12-04 20:12:29 +0100909 * Called from scheduler to remove the counters of the current task,
910 * with interrupts disabled.
911 *
912 * We stop each counter and update the counter value in counter->count.
913 *
Ingo Molnar76715812008-12-17 14:20:28 +0100914 * This does not protect us against NMI, but disable()
Thomas Gleixner0793a612008-12-04 20:12:29 +0100915 * sets the disabled bit in the control field of counter _before_
916 * accessing the counter control register. If a NMI hits, then it will
917 * not restart the counter.
918 */
Paul Mackerras564c2b22009-05-22 14:27:22 +1000919void perf_counter_task_sched_out(struct task_struct *task,
920 struct task_struct *next, int cpu)
Thomas Gleixner0793a612008-12-04 20:12:29 +0100921{
922 struct perf_cpu_context *cpuctx = &per_cpu(perf_cpu_context, cpu);
Paul Mackerrasa63eaf32009-05-22 14:17:31 +1000923 struct perf_counter_context *ctx = task->perf_counter_ctxp;
Paul Mackerras564c2b22009-05-22 14:27:22 +1000924 struct perf_counter_context *next_ctx;
Peter Zijlstra4a0deca2009-03-19 20:26:12 +0100925 struct pt_regs *regs;
Thomas Gleixner0793a612008-12-04 20:12:29 +0100926
Paul Mackerrasa63eaf32009-05-22 14:17:31 +1000927 if (likely(!ctx || !cpuctx->task_ctx))
Thomas Gleixner0793a612008-12-04 20:12:29 +0100928 return;
929
Peter Zijlstrabce379b2009-04-06 11:45:13 +0200930 update_context_time(ctx);
931
Peter Zijlstra4a0deca2009-03-19 20:26:12 +0100932 regs = task_pt_regs(task);
Peter Zijlstra78f13e92009-04-08 15:01:33 +0200933 perf_swcounter_event(PERF_COUNT_CONTEXT_SWITCHES, 1, 1, regs, 0);
Paul Mackerras564c2b22009-05-22 14:27:22 +1000934
935 next_ctx = next->perf_counter_ctxp;
936 if (next_ctx && context_equiv(ctx, next_ctx)) {
937 task->perf_counter_ctxp = next_ctx;
938 next->perf_counter_ctxp = ctx;
939 ctx->task = next;
940 next_ctx->task = task;
941 return;
942 }
943
Ingo Molnar235c7fc2008-12-21 14:43:25 +0100944 __perf_counter_sched_out(ctx, cpuctx);
945
Thomas Gleixner0793a612008-12-04 20:12:29 +0100946 cpuctx->task_ctx = NULL;
947}
948
Paul Mackerrasa08b1592009-05-11 15:46:10 +1000949static void __perf_counter_task_sched_out(struct perf_counter_context *ctx)
950{
951 struct perf_cpu_context *cpuctx = &__get_cpu_var(perf_cpu_context);
952
Paul Mackerrasa63eaf32009-05-22 14:17:31 +1000953 if (!cpuctx->task_ctx)
954 return;
Paul Mackerrasa08b1592009-05-11 15:46:10 +1000955 __perf_counter_sched_out(ctx, cpuctx);
956 cpuctx->task_ctx = NULL;
957}
958
Ingo Molnar235c7fc2008-12-21 14:43:25 +0100959static void perf_counter_cpu_sched_out(struct perf_cpu_context *cpuctx)
Ingo Molnar04289bb2008-12-11 08:38:42 +0100960{
Ingo Molnar235c7fc2008-12-21 14:43:25 +0100961 __perf_counter_sched_out(&cpuctx->ctx, cpuctx);
Ingo Molnar04289bb2008-12-11 08:38:42 +0100962}
963
Ingo Molnar235c7fc2008-12-21 14:43:25 +0100964static void
965__perf_counter_sched_in(struct perf_counter_context *ctx,
966 struct perf_cpu_context *cpuctx, int cpu)
Thomas Gleixner0793a612008-12-04 20:12:29 +0100967{
Thomas Gleixner0793a612008-12-04 20:12:29 +0100968 struct perf_counter *counter;
Paul Mackerrasdd0e6ba2009-01-12 15:11:00 +1100969 int can_add_hw = 1;
Thomas Gleixner0793a612008-12-04 20:12:29 +0100970
Thomas Gleixner0793a612008-12-04 20:12:29 +0100971 spin_lock(&ctx->lock);
Paul Mackerrasd859e292009-01-17 18:10:22 +1100972 ctx->is_active = 1;
973 if (likely(!ctx->nr_counters))
974 goto out;
975
Peter Zijlstra4af49982009-04-06 11:45:10 +0200976 ctx->timestamp = perf_clock();
Paul Mackerras53cfbf52009-03-25 22:46:58 +1100977
Peter Zijlstra9e35ad32009-05-13 16:21:38 +0200978 perf_disable();
Paul Mackerras3b6f9e52009-01-14 21:00:30 +1100979
980 /*
981 * First go through the list and put on any pinned groups
982 * in order to give them the best chance of going on.
983 */
Ingo Molnar04289bb2008-12-11 08:38:42 +0100984 list_for_each_entry(counter, &ctx->counter_list, list_entry) {
Paul Mackerras3b6f9e52009-01-14 21:00:30 +1100985 if (counter->state <= PERF_COUNTER_STATE_OFF ||
986 !counter->hw_event.pinned)
987 continue;
988 if (counter->cpu != -1 && counter->cpu != cpu)
989 continue;
990
Peter Zijlstraafedadf2009-05-20 12:21:22 +0200991 if (counter != counter->group_leader)
992 counter_sched_in(counter, cpuctx, ctx, cpu);
993 else {
994 if (group_can_go_on(counter, cpuctx, 1))
995 group_sched_in(counter, cpuctx, ctx, cpu);
996 }
Paul Mackerras3b6f9e52009-01-14 21:00:30 +1100997
998 /*
999 * If this pinned group hasn't been scheduled,
1000 * put it in error state.
1001 */
Paul Mackerras53cfbf52009-03-25 22:46:58 +11001002 if (counter->state == PERF_COUNTER_STATE_INACTIVE) {
1003 update_group_times(counter);
Paul Mackerras3b6f9e52009-01-14 21:00:30 +11001004 counter->state = PERF_COUNTER_STATE_ERROR;
Paul Mackerras53cfbf52009-03-25 22:46:58 +11001005 }
Paul Mackerras3b6f9e52009-01-14 21:00:30 +11001006 }
1007
1008 list_for_each_entry(counter, &ctx->counter_list, list_entry) {
1009 /*
1010 * Ignore counters in OFF or ERROR state, and
1011 * ignore pinned counters since we did them already.
1012 */
1013 if (counter->state <= PERF_COUNTER_STATE_OFF ||
1014 counter->hw_event.pinned)
1015 continue;
1016
Ingo Molnar04289bb2008-12-11 08:38:42 +01001017 /*
1018 * Listen to the 'cpu' scheduling filter constraint
1019 * of counters:
1020 */
Thomas Gleixner0793a612008-12-04 20:12:29 +01001021 if (counter->cpu != -1 && counter->cpu != cpu)
1022 continue;
1023
Peter Zijlstraafedadf2009-05-20 12:21:22 +02001024 if (counter != counter->group_leader) {
1025 if (counter_sched_in(counter, cpuctx, ctx, cpu))
Paul Mackerrasdd0e6ba2009-01-12 15:11:00 +11001026 can_add_hw = 0;
Peter Zijlstraafedadf2009-05-20 12:21:22 +02001027 } else {
1028 if (group_can_go_on(counter, cpuctx, can_add_hw)) {
1029 if (group_sched_in(counter, cpuctx, ctx, cpu))
1030 can_add_hw = 0;
1031 }
Paul Mackerras3b6f9e52009-01-14 21:00:30 +11001032 }
Thomas Gleixner0793a612008-12-04 20:12:29 +01001033 }
Peter Zijlstra9e35ad32009-05-13 16:21:38 +02001034 perf_enable();
Paul Mackerrasd859e292009-01-17 18:10:22 +11001035 out:
Thomas Gleixner0793a612008-12-04 20:12:29 +01001036 spin_unlock(&ctx->lock);
Ingo Molnar235c7fc2008-12-21 14:43:25 +01001037}
Ingo Molnar04289bb2008-12-11 08:38:42 +01001038
Ingo Molnar235c7fc2008-12-21 14:43:25 +01001039/*
1040 * Called from scheduler to add the counters of the current task
1041 * with interrupts disabled.
1042 *
1043 * We restore the counter value and then enable it.
1044 *
1045 * This does not protect us against NMI, but enable()
1046 * sets the enabled bit in the control field of counter _before_
1047 * accessing the counter control register. If a NMI hits, then it will
1048 * keep the counter running.
1049 */
1050void perf_counter_task_sched_in(struct task_struct *task, int cpu)
1051{
1052 struct perf_cpu_context *cpuctx = &per_cpu(perf_cpu_context, cpu);
Paul Mackerrasa63eaf32009-05-22 14:17:31 +10001053 struct perf_counter_context *ctx = task->perf_counter_ctxp;
Ingo Molnar235c7fc2008-12-21 14:43:25 +01001054
Paul Mackerrasa63eaf32009-05-22 14:17:31 +10001055 if (likely(!ctx))
1056 return;
Paul Mackerras564c2b22009-05-22 14:27:22 +10001057 if (cpuctx->task_ctx == ctx)
1058 return;
Ingo Molnar235c7fc2008-12-21 14:43:25 +01001059 __perf_counter_sched_in(ctx, cpuctx, cpu);
Thomas Gleixner0793a612008-12-04 20:12:29 +01001060 cpuctx->task_ctx = ctx;
1061}
1062
Ingo Molnar235c7fc2008-12-21 14:43:25 +01001063static void perf_counter_cpu_sched_in(struct perf_cpu_context *cpuctx, int cpu)
1064{
1065 struct perf_counter_context *ctx = &cpuctx->ctx;
1066
1067 __perf_counter_sched_in(ctx, cpuctx, cpu);
1068}
1069
Peter Zijlstra082ff5a2009-05-23 18:29:00 +02001070int perf_counter_task_enable(void)
Ingo Molnar1d1c7dd2008-12-11 14:59:31 +01001071{
Ingo Molnar1d1c7dd2008-12-11 14:59:31 +01001072 struct perf_counter *counter;
Ingo Molnar1d1c7dd2008-12-11 14:59:31 +01001073
Peter Zijlstra082ff5a2009-05-23 18:29:00 +02001074 mutex_lock(&current->perf_counter_mutex);
1075 list_for_each_entry(counter, &current->perf_counter_list, owner_entry)
1076 perf_counter_enable(counter);
1077 mutex_unlock(&current->perf_counter_mutex);
Ingo Molnar1d1c7dd2008-12-11 14:59:31 +01001078
1079 return 0;
1080}
1081
Peter Zijlstra082ff5a2009-05-23 18:29:00 +02001082int perf_counter_task_disable(void)
Ingo Molnar1d1c7dd2008-12-11 14:59:31 +01001083{
Ingo Molnar1d1c7dd2008-12-11 14:59:31 +01001084 struct perf_counter *counter;
Ingo Molnar1d1c7dd2008-12-11 14:59:31 +01001085
Peter Zijlstra082ff5a2009-05-23 18:29:00 +02001086 mutex_lock(&current->perf_counter_mutex);
1087 list_for_each_entry(counter, &current->perf_counter_list, owner_entry)
1088 perf_counter_disable(counter);
1089 mutex_unlock(&current->perf_counter_mutex);
Ingo Molnar1d1c7dd2008-12-11 14:59:31 +01001090
1091 return 0;
1092}
1093
Peter Zijlstra26b119b2009-05-20 12:21:20 +02001094static void perf_log_period(struct perf_counter *counter, u64 period);
1095
1096static void perf_adjust_freq(struct perf_counter_context *ctx)
Peter Zijlstra60db5e02009-05-15 15:19:28 +02001097{
1098 struct perf_counter *counter;
1099 u64 irq_period;
1100 u64 events, period;
1101 s64 delta;
1102
1103 spin_lock(&ctx->lock);
1104 list_for_each_entry(counter, &ctx->counter_list, list_entry) {
1105 if (counter->state != PERF_COUNTER_STATE_ACTIVE)
1106 continue;
1107
1108 if (!counter->hw_event.freq || !counter->hw_event.irq_freq)
1109 continue;
1110
1111 events = HZ * counter->hw.interrupts * counter->hw.irq_period;
1112 period = div64_u64(events, counter->hw_event.irq_freq);
1113
1114 delta = (s64)(1 + period - counter->hw.irq_period);
1115 delta >>= 1;
1116
1117 irq_period = counter->hw.irq_period + delta;
1118
1119 if (!irq_period)
1120 irq_period = 1;
1121
Peter Zijlstra26b119b2009-05-20 12:21:20 +02001122 perf_log_period(counter, irq_period);
1123
Peter Zijlstra60db5e02009-05-15 15:19:28 +02001124 counter->hw.irq_period = irq_period;
1125 counter->hw.interrupts = 0;
1126 }
1127 spin_unlock(&ctx->lock);
1128}
1129
Ingo Molnar235c7fc2008-12-21 14:43:25 +01001130/*
1131 * Round-robin a context's counters:
1132 */
1133static void rotate_ctx(struct perf_counter_context *ctx)
Thomas Gleixner0793a612008-12-04 20:12:29 +01001134{
Thomas Gleixner0793a612008-12-04 20:12:29 +01001135 struct perf_counter *counter;
1136
Ingo Molnar235c7fc2008-12-21 14:43:25 +01001137 if (!ctx->nr_counters)
Thomas Gleixner0793a612008-12-04 20:12:29 +01001138 return;
1139
Thomas Gleixner0793a612008-12-04 20:12:29 +01001140 spin_lock(&ctx->lock);
Thomas Gleixner0793a612008-12-04 20:12:29 +01001141 /*
Ingo Molnar04289bb2008-12-11 08:38:42 +01001142 * Rotate the first entry last (works just fine for group counters too):
Thomas Gleixner0793a612008-12-04 20:12:29 +01001143 */
Peter Zijlstra9e35ad32009-05-13 16:21:38 +02001144 perf_disable();
Ingo Molnar04289bb2008-12-11 08:38:42 +01001145 list_for_each_entry(counter, &ctx->counter_list, list_entry) {
Peter Zijlstra75564232009-03-13 12:21:29 +01001146 list_move_tail(&counter->list_entry, &ctx->counter_list);
Thomas Gleixner0793a612008-12-04 20:12:29 +01001147 break;
1148 }
Peter Zijlstra9e35ad32009-05-13 16:21:38 +02001149 perf_enable();
Thomas Gleixner0793a612008-12-04 20:12:29 +01001150
1151 spin_unlock(&ctx->lock);
Ingo Molnar235c7fc2008-12-21 14:43:25 +01001152}
Thomas Gleixner0793a612008-12-04 20:12:29 +01001153
Ingo Molnar235c7fc2008-12-21 14:43:25 +01001154void perf_counter_task_tick(struct task_struct *curr, int cpu)
1155{
Peter Zijlstra7fc23a52009-05-08 18:52:21 +02001156 struct perf_cpu_context *cpuctx;
1157 struct perf_counter_context *ctx;
1158
1159 if (!atomic_read(&nr_counters))
1160 return;
1161
1162 cpuctx = &per_cpu(perf_cpu_context, cpu);
Paul Mackerrasa63eaf32009-05-22 14:17:31 +10001163 ctx = curr->perf_counter_ctxp;
Ingo Molnar235c7fc2008-12-21 14:43:25 +01001164
Peter Zijlstra60db5e02009-05-15 15:19:28 +02001165 perf_adjust_freq(&cpuctx->ctx);
Paul Mackerrasa63eaf32009-05-22 14:17:31 +10001166 if (ctx)
1167 perf_adjust_freq(ctx);
Peter Zijlstra60db5e02009-05-15 15:19:28 +02001168
Ingo Molnarb82914c2009-05-04 18:54:32 +02001169 perf_counter_cpu_sched_out(cpuctx);
Paul Mackerrasa63eaf32009-05-22 14:17:31 +10001170 if (ctx)
1171 __perf_counter_task_sched_out(ctx);
Ingo Molnar235c7fc2008-12-21 14:43:25 +01001172
Ingo Molnarb82914c2009-05-04 18:54:32 +02001173 rotate_ctx(&cpuctx->ctx);
Paul Mackerrasa63eaf32009-05-22 14:17:31 +10001174 if (ctx)
1175 rotate_ctx(ctx);
Ingo Molnar235c7fc2008-12-21 14:43:25 +01001176
Ingo Molnarb82914c2009-05-04 18:54:32 +02001177 perf_counter_cpu_sched_in(cpuctx, cpu);
Paul Mackerrasa63eaf32009-05-22 14:17:31 +10001178 if (ctx)
1179 perf_counter_task_sched_in(curr, cpu);
Thomas Gleixner0793a612008-12-04 20:12:29 +01001180}
1181
1182/*
Thomas Gleixner0793a612008-12-04 20:12:29 +01001183 * Cross CPU call to read the hardware counter
1184 */
Ingo Molnar76715812008-12-17 14:20:28 +01001185static void __read(void *info)
Thomas Gleixner0793a612008-12-04 20:12:29 +01001186{
Ingo Molnar621a01e2008-12-11 12:46:46 +01001187 struct perf_counter *counter = info;
Paul Mackerras53cfbf52009-03-25 22:46:58 +11001188 struct perf_counter_context *ctx = counter->ctx;
Ingo Molnaraa9c4c02008-12-17 14:10:57 +01001189 unsigned long flags;
Ingo Molnar621a01e2008-12-11 12:46:46 +01001190
Peter Zijlstra849691a2009-04-06 11:45:12 +02001191 local_irq_save(flags);
Paul Mackerras53cfbf52009-03-25 22:46:58 +11001192 if (ctx->is_active)
Peter Zijlstra4af49982009-04-06 11:45:10 +02001193 update_context_time(ctx);
Robert Richter4aeb0b42009-04-29 12:47:03 +02001194 counter->pmu->read(counter);
Paul Mackerras53cfbf52009-03-25 22:46:58 +11001195 update_counter_times(counter);
Peter Zijlstra849691a2009-04-06 11:45:12 +02001196 local_irq_restore(flags);
Thomas Gleixner0793a612008-12-04 20:12:29 +01001197}
1198
Ingo Molnar04289bb2008-12-11 08:38:42 +01001199static u64 perf_counter_read(struct perf_counter *counter)
Thomas Gleixner0793a612008-12-04 20:12:29 +01001200{
1201 /*
1202 * If counter is enabled and currently active on a CPU, update the
1203 * value in the counter structure:
1204 */
Ingo Molnar6a930702008-12-11 15:17:03 +01001205 if (counter->state == PERF_COUNTER_STATE_ACTIVE) {
Thomas Gleixner0793a612008-12-04 20:12:29 +01001206 smp_call_function_single(counter->oncpu,
Ingo Molnar76715812008-12-17 14:20:28 +01001207 __read, counter, 1);
Paul Mackerras53cfbf52009-03-25 22:46:58 +11001208 } else if (counter->state == PERF_COUNTER_STATE_INACTIVE) {
1209 update_counter_times(counter);
Thomas Gleixner0793a612008-12-04 20:12:29 +01001210 }
1211
Ingo Molnaree060942008-12-13 09:00:03 +01001212 return atomic64_read(&counter->count);
Thomas Gleixner0793a612008-12-04 20:12:29 +01001213}
1214
Paul Mackerrasa63eaf32009-05-22 14:17:31 +10001215/*
1216 * Initialize the perf_counter context in a task_struct:
1217 */
1218static void
1219__perf_counter_init_context(struct perf_counter_context *ctx,
1220 struct task_struct *task)
1221{
1222 memset(ctx, 0, sizeof(*ctx));
1223 spin_lock_init(&ctx->lock);
1224 mutex_init(&ctx->mutex);
1225 INIT_LIST_HEAD(&ctx->counter_list);
1226 INIT_LIST_HEAD(&ctx->event_list);
1227 atomic_set(&ctx->refcount, 1);
1228 ctx->task = task;
1229}
1230
Thomas Gleixner0793a612008-12-04 20:12:29 +01001231static void put_context(struct perf_counter_context *ctx)
1232{
1233 if (ctx->task)
1234 put_task_struct(ctx->task);
1235}
1236
1237static struct perf_counter_context *find_get_context(pid_t pid, int cpu)
1238{
1239 struct perf_cpu_context *cpuctx;
1240 struct perf_counter_context *ctx;
Paul Mackerrasa63eaf32009-05-22 14:17:31 +10001241 struct perf_counter_context *tctx;
Thomas Gleixner0793a612008-12-04 20:12:29 +01001242 struct task_struct *task;
1243
1244 /*
1245 * If cpu is not a wildcard then this is a percpu counter:
1246 */
1247 if (cpu != -1) {
1248 /* Must be root to operate on a CPU counter: */
Peter Zijlstra1ccd1542009-04-09 10:53:45 +02001249 if (sysctl_perf_counter_priv && !capable(CAP_SYS_ADMIN))
Thomas Gleixner0793a612008-12-04 20:12:29 +01001250 return ERR_PTR(-EACCES);
1251
1252 if (cpu < 0 || cpu > num_possible_cpus())
1253 return ERR_PTR(-EINVAL);
1254
1255 /*
1256 * We could be clever and allow to attach a counter to an
1257 * offline CPU and activate it when the CPU comes up, but
1258 * that's for later.
1259 */
1260 if (!cpu_isset(cpu, cpu_online_map))
1261 return ERR_PTR(-ENODEV);
1262
1263 cpuctx = &per_cpu(perf_cpu_context, cpu);
1264 ctx = &cpuctx->ctx;
1265
Thomas Gleixner0793a612008-12-04 20:12:29 +01001266 return ctx;
1267 }
1268
1269 rcu_read_lock();
1270 if (!pid)
1271 task = current;
1272 else
1273 task = find_task_by_vpid(pid);
1274 if (task)
1275 get_task_struct(task);
1276 rcu_read_unlock();
1277
1278 if (!task)
1279 return ERR_PTR(-ESRCH);
1280
Thomas Gleixner0793a612008-12-04 20:12:29 +01001281 /* Reuse ptrace permission checks for now. */
1282 if (!ptrace_may_access(task, PTRACE_MODE_READ)) {
Paul Mackerrasa63eaf32009-05-22 14:17:31 +10001283 put_task_struct(task);
Thomas Gleixner0793a612008-12-04 20:12:29 +01001284 return ERR_PTR(-EACCES);
1285 }
1286
Paul Mackerrasa63eaf32009-05-22 14:17:31 +10001287 ctx = task->perf_counter_ctxp;
1288 if (!ctx) {
1289 ctx = kmalloc(sizeof(struct perf_counter_context), GFP_KERNEL);
1290 if (!ctx) {
1291 put_task_struct(task);
1292 return ERR_PTR(-ENOMEM);
1293 }
1294 __perf_counter_init_context(ctx, task);
1295 /*
1296 * Make sure other cpus see correct values for *ctx
1297 * once task->perf_counter_ctxp is visible to them.
1298 */
1299 smp_wmb();
1300 tctx = cmpxchg(&task->perf_counter_ctxp, NULL, ctx);
1301 if (tctx) {
1302 /*
1303 * We raced with some other task; use
1304 * the context they set.
1305 */
1306 kfree(ctx);
1307 ctx = tctx;
1308 }
1309 }
1310
Thomas Gleixner0793a612008-12-04 20:12:29 +01001311 return ctx;
1312}
1313
Peter Zijlstra592903c2009-03-13 12:21:36 +01001314static void free_counter_rcu(struct rcu_head *head)
1315{
1316 struct perf_counter *counter;
1317
1318 counter = container_of(head, struct perf_counter, rcu_head);
Paul Mackerrasa63eaf32009-05-22 14:17:31 +10001319 put_ctx(counter->ctx);
Peter Zijlstra592903c2009-03-13 12:21:36 +01001320 kfree(counter);
1321}
1322
Peter Zijlstra925d5192009-03-30 19:07:02 +02001323static void perf_pending_sync(struct perf_counter *counter);
1324
Peter Zijlstraf1600952009-03-19 20:26:16 +01001325static void free_counter(struct perf_counter *counter)
1326{
Peter Zijlstra925d5192009-03-30 19:07:02 +02001327 perf_pending_sync(counter);
1328
Peter Zijlstra7fc23a52009-05-08 18:52:21 +02001329 atomic_dec(&nr_counters);
Peter Zijlstra9ee318a2009-04-09 10:53:44 +02001330 if (counter->hw_event.mmap)
1331 atomic_dec(&nr_mmap_tracking);
1332 if (counter->hw_event.munmap)
1333 atomic_dec(&nr_munmap_tracking);
1334 if (counter->hw_event.comm)
1335 atomic_dec(&nr_comm_tracking);
1336
Peter Zijlstrae077df42009-03-19 20:26:17 +01001337 if (counter->destroy)
1338 counter->destroy(counter);
1339
Peter Zijlstraf1600952009-03-19 20:26:16 +01001340 call_rcu(&counter->rcu_head, free_counter_rcu);
1341}
1342
Thomas Gleixner0793a612008-12-04 20:12:29 +01001343/*
1344 * Called when the last reference to the file is gone.
1345 */
1346static int perf_release(struct inode *inode, struct file *file)
1347{
1348 struct perf_counter *counter = file->private_data;
1349 struct perf_counter_context *ctx = counter->ctx;
1350
1351 file->private_data = NULL;
1352
Paul Mackerrasd859e292009-01-17 18:10:22 +11001353 mutex_lock(&ctx->mutex);
Ingo Molnar04289bb2008-12-11 08:38:42 +01001354 perf_counter_remove_from_context(counter);
Paul Mackerrasd859e292009-01-17 18:10:22 +11001355 mutex_unlock(&ctx->mutex);
Thomas Gleixner0793a612008-12-04 20:12:29 +01001356
Peter Zijlstra082ff5a2009-05-23 18:29:00 +02001357 mutex_lock(&counter->owner->perf_counter_mutex);
1358 list_del_init(&counter->owner_entry);
1359 mutex_unlock(&counter->owner->perf_counter_mutex);
1360 put_task_struct(counter->owner);
1361
Peter Zijlstraf1600952009-03-19 20:26:16 +01001362 free_counter(counter);
Mike Galbraith5af75912009-02-11 10:53:37 +01001363 put_context(ctx);
Thomas Gleixner0793a612008-12-04 20:12:29 +01001364
1365 return 0;
1366}
1367
1368/*
1369 * Read the performance counter - simple non blocking version for now
1370 */
1371static ssize_t
1372perf_read_hw(struct perf_counter *counter, char __user *buf, size_t count)
1373{
Paul Mackerras53cfbf52009-03-25 22:46:58 +11001374 u64 values[3];
1375 int n;
Thomas Gleixner0793a612008-12-04 20:12:29 +01001376
Paul Mackerras3b6f9e52009-01-14 21:00:30 +11001377 /*
1378 * Return end-of-file for a read on a counter that is in
1379 * error state (i.e. because it was pinned but it couldn't be
1380 * scheduled on to the CPU at some point).
1381 */
1382 if (counter->state == PERF_COUNTER_STATE_ERROR)
1383 return 0;
1384
Peter Zijlstrafccc7142009-05-23 18:28:56 +02001385 mutex_lock(&counter->child_mutex);
Paul Mackerras53cfbf52009-03-25 22:46:58 +11001386 values[0] = perf_counter_read(counter);
1387 n = 1;
1388 if (counter->hw_event.read_format & PERF_FORMAT_TOTAL_TIME_ENABLED)
1389 values[n++] = counter->total_time_enabled +
1390 atomic64_read(&counter->child_total_time_enabled);
1391 if (counter->hw_event.read_format & PERF_FORMAT_TOTAL_TIME_RUNNING)
1392 values[n++] = counter->total_time_running +
1393 atomic64_read(&counter->child_total_time_running);
Peter Zijlstrafccc7142009-05-23 18:28:56 +02001394 mutex_unlock(&counter->child_mutex);
Thomas Gleixner0793a612008-12-04 20:12:29 +01001395
Paul Mackerras53cfbf52009-03-25 22:46:58 +11001396 if (count < n * sizeof(u64))
1397 return -EINVAL;
1398 count = n * sizeof(u64);
1399
1400 if (copy_to_user(buf, values, count))
1401 return -EFAULT;
1402
1403 return count;
Thomas Gleixner0793a612008-12-04 20:12:29 +01001404}
1405
1406static ssize_t
Thomas Gleixner0793a612008-12-04 20:12:29 +01001407perf_read(struct file *file, char __user *buf, size_t count, loff_t *ppos)
1408{
1409 struct perf_counter *counter = file->private_data;
1410
Peter Zijlstra7b732a72009-03-23 18:22:10 +01001411 return perf_read_hw(counter, buf, count);
Thomas Gleixner0793a612008-12-04 20:12:29 +01001412}
1413
1414static unsigned int perf_poll(struct file *file, poll_table *wait)
1415{
1416 struct perf_counter *counter = file->private_data;
Peter Zijlstrac7138f32009-03-24 13:18:16 +01001417 struct perf_mmap_data *data;
Peter Zijlstrac33a0bc2009-05-01 12:23:16 +02001418 unsigned int events = POLL_HUP;
Peter Zijlstrac7138f32009-03-24 13:18:16 +01001419
1420 rcu_read_lock();
1421 data = rcu_dereference(counter->data);
1422 if (data)
Peter Zijlstrac33a0bc2009-05-01 12:23:16 +02001423 events = atomic_xchg(&data->poll, 0);
Peter Zijlstrac7138f32009-03-24 13:18:16 +01001424 rcu_read_unlock();
Thomas Gleixner0793a612008-12-04 20:12:29 +01001425
1426 poll_wait(file, &counter->waitq, wait);
1427
Thomas Gleixner0793a612008-12-04 20:12:29 +01001428 return events;
1429}
1430
Peter Zijlstra6de6a7b2009-05-05 17:50:23 +02001431static void perf_counter_reset(struct perf_counter *counter)
1432{
Peter Zijlstra3df5eda2009-05-08 18:52:22 +02001433 (void)perf_counter_read(counter);
Paul Mackerras615a3f12009-05-11 15:50:21 +10001434 atomic64_set(&counter->count, 0);
Peter Zijlstra3df5eda2009-05-08 18:52:22 +02001435 perf_counter_update_userpage(counter);
1436}
1437
1438static void perf_counter_for_each_sibling(struct perf_counter *counter,
1439 void (*func)(struct perf_counter *))
1440{
1441 struct perf_counter_context *ctx = counter->ctx;
1442 struct perf_counter *sibling;
1443
Peter Zijlstra682076a2009-05-23 18:28:57 +02001444 mutex_lock(&ctx->mutex);
Peter Zijlstra3df5eda2009-05-08 18:52:22 +02001445 counter = counter->group_leader;
1446
1447 func(counter);
1448 list_for_each_entry(sibling, &counter->sibling_list, list_entry)
1449 func(sibling);
Peter Zijlstra682076a2009-05-23 18:28:57 +02001450 mutex_unlock(&ctx->mutex);
Peter Zijlstra3df5eda2009-05-08 18:52:22 +02001451}
1452
1453static void perf_counter_for_each_child(struct perf_counter *counter,
1454 void (*func)(struct perf_counter *))
1455{
1456 struct perf_counter *child;
1457
Peter Zijlstrafccc7142009-05-23 18:28:56 +02001458 mutex_lock(&counter->child_mutex);
Peter Zijlstra3df5eda2009-05-08 18:52:22 +02001459 func(counter);
1460 list_for_each_entry(child, &counter->child_list, child_list)
1461 func(child);
Peter Zijlstrafccc7142009-05-23 18:28:56 +02001462 mutex_unlock(&counter->child_mutex);
Peter Zijlstra3df5eda2009-05-08 18:52:22 +02001463}
1464
1465static void perf_counter_for_each(struct perf_counter *counter,
1466 void (*func)(struct perf_counter *))
1467{
1468 struct perf_counter *child;
1469
Peter Zijlstrafccc7142009-05-23 18:28:56 +02001470 mutex_lock(&counter->child_mutex);
Peter Zijlstra3df5eda2009-05-08 18:52:22 +02001471 perf_counter_for_each_sibling(counter, func);
1472 list_for_each_entry(child, &counter->child_list, child_list)
1473 perf_counter_for_each_sibling(child, func);
Peter Zijlstrafccc7142009-05-23 18:28:56 +02001474 mutex_unlock(&counter->child_mutex);
Peter Zijlstra6de6a7b2009-05-05 17:50:23 +02001475}
1476
Paul Mackerrasd859e292009-01-17 18:10:22 +11001477static long perf_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
1478{
1479 struct perf_counter *counter = file->private_data;
Peter Zijlstra3df5eda2009-05-08 18:52:22 +02001480 void (*func)(struct perf_counter *);
1481 u32 flags = arg;
Paul Mackerrasd859e292009-01-17 18:10:22 +11001482
1483 switch (cmd) {
1484 case PERF_COUNTER_IOC_ENABLE:
Peter Zijlstra3df5eda2009-05-08 18:52:22 +02001485 func = perf_counter_enable;
Paul Mackerrasd859e292009-01-17 18:10:22 +11001486 break;
1487 case PERF_COUNTER_IOC_DISABLE:
Peter Zijlstra3df5eda2009-05-08 18:52:22 +02001488 func = perf_counter_disable;
Peter Zijlstra79f14642009-04-06 11:45:07 +02001489 break;
Peter Zijlstra6de6a7b2009-05-05 17:50:23 +02001490 case PERF_COUNTER_IOC_RESET:
Peter Zijlstra3df5eda2009-05-08 18:52:22 +02001491 func = perf_counter_reset;
Peter Zijlstra6de6a7b2009-05-05 17:50:23 +02001492 break;
Peter Zijlstra3df5eda2009-05-08 18:52:22 +02001493
1494 case PERF_COUNTER_IOC_REFRESH:
1495 return perf_counter_refresh(counter, arg);
Paul Mackerrasd859e292009-01-17 18:10:22 +11001496 default:
Peter Zijlstra3df5eda2009-05-08 18:52:22 +02001497 return -ENOTTY;
Paul Mackerrasd859e292009-01-17 18:10:22 +11001498 }
Peter Zijlstra3df5eda2009-05-08 18:52:22 +02001499
1500 if (flags & PERF_IOC_FLAG_GROUP)
1501 perf_counter_for_each(counter, func);
1502 else
1503 perf_counter_for_each_child(counter, func);
1504
1505 return 0;
Paul Mackerrasd859e292009-01-17 18:10:22 +11001506}
1507
Peter Zijlstra38ff6672009-03-30 19:07:03 +02001508/*
1509 * Callers need to ensure there can be no nesting of this function, otherwise
1510 * the seqlock logic goes bad. We can not serialize this because the arch
1511 * code calls this from NMI context.
1512 */
1513void perf_counter_update_userpage(struct perf_counter *counter)
Paul Mackerras37d81822009-03-23 18:22:08 +01001514{
Peter Zijlstra38ff6672009-03-30 19:07:03 +02001515 struct perf_mmap_data *data;
1516 struct perf_counter_mmap_page *userpg;
1517
1518 rcu_read_lock();
1519 data = rcu_dereference(counter->data);
1520 if (!data)
1521 goto unlock;
1522
1523 userpg = data->user_page;
Paul Mackerras37d81822009-03-23 18:22:08 +01001524
Peter Zijlstra7b732a72009-03-23 18:22:10 +01001525 /*
1526 * Disable preemption so as to not let the corresponding user-space
1527 * spin too long if we get preempted.
1528 */
1529 preempt_disable();
Paul Mackerras37d81822009-03-23 18:22:08 +01001530 ++userpg->lock;
Peter Zijlstra92f22a32009-04-02 11:12:04 +02001531 barrier();
Paul Mackerras37d81822009-03-23 18:22:08 +01001532 userpg->index = counter->hw.idx;
1533 userpg->offset = atomic64_read(&counter->count);
1534 if (counter->state == PERF_COUNTER_STATE_ACTIVE)
1535 userpg->offset -= atomic64_read(&counter->hw.prev_count);
Peter Zijlstra7b732a72009-03-23 18:22:10 +01001536
Peter Zijlstra92f22a32009-04-02 11:12:04 +02001537 barrier();
Paul Mackerras37d81822009-03-23 18:22:08 +01001538 ++userpg->lock;
Peter Zijlstra7b732a72009-03-23 18:22:10 +01001539 preempt_enable();
Peter Zijlstra38ff6672009-03-30 19:07:03 +02001540unlock:
Peter Zijlstra7b732a72009-03-23 18:22:10 +01001541 rcu_read_unlock();
Paul Mackerras37d81822009-03-23 18:22:08 +01001542}
1543
1544static int perf_mmap_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
1545{
1546 struct perf_counter *counter = vma->vm_file->private_data;
Peter Zijlstra7b732a72009-03-23 18:22:10 +01001547 struct perf_mmap_data *data;
1548 int ret = VM_FAULT_SIGBUS;
Paul Mackerras37d81822009-03-23 18:22:08 +01001549
Peter Zijlstra7b732a72009-03-23 18:22:10 +01001550 rcu_read_lock();
1551 data = rcu_dereference(counter->data);
1552 if (!data)
1553 goto unlock;
Paul Mackerras37d81822009-03-23 18:22:08 +01001554
Peter Zijlstra7b732a72009-03-23 18:22:10 +01001555 if (vmf->pgoff == 0) {
1556 vmf->page = virt_to_page(data->user_page);
1557 } else {
1558 int nr = vmf->pgoff - 1;
1559
1560 if ((unsigned)nr > data->nr_pages)
1561 goto unlock;
1562
1563 vmf->page = virt_to_page(data->data_pages[nr]);
1564 }
Paul Mackerras37d81822009-03-23 18:22:08 +01001565 get_page(vmf->page);
Peter Zijlstra7b732a72009-03-23 18:22:10 +01001566 ret = 0;
1567unlock:
1568 rcu_read_unlock();
1569
1570 return ret;
1571}
1572
1573static int perf_mmap_data_alloc(struct perf_counter *counter, int nr_pages)
1574{
1575 struct perf_mmap_data *data;
1576 unsigned long size;
1577 int i;
1578
1579 WARN_ON(atomic_read(&counter->mmap_count));
1580
1581 size = sizeof(struct perf_mmap_data);
1582 size += nr_pages * sizeof(void *);
1583
1584 data = kzalloc(size, GFP_KERNEL);
1585 if (!data)
1586 goto fail;
1587
1588 data->user_page = (void *)get_zeroed_page(GFP_KERNEL);
1589 if (!data->user_page)
1590 goto fail_user_page;
1591
1592 for (i = 0; i < nr_pages; i++) {
1593 data->data_pages[i] = (void *)get_zeroed_page(GFP_KERNEL);
1594 if (!data->data_pages[i])
1595 goto fail_data_pages;
1596 }
1597
1598 data->nr_pages = nr_pages;
Peter Zijlstra22c15582009-05-05 17:50:25 +02001599 atomic_set(&data->lock, -1);
Peter Zijlstra7b732a72009-03-23 18:22:10 +01001600
1601 rcu_assign_pointer(counter->data, data);
1602
Paul Mackerras37d81822009-03-23 18:22:08 +01001603 return 0;
Peter Zijlstra7b732a72009-03-23 18:22:10 +01001604
1605fail_data_pages:
1606 for (i--; i >= 0; i--)
1607 free_page((unsigned long)data->data_pages[i]);
1608
1609 free_page((unsigned long)data->user_page);
1610
1611fail_user_page:
1612 kfree(data);
1613
1614fail:
1615 return -ENOMEM;
1616}
1617
1618static void __perf_mmap_data_free(struct rcu_head *rcu_head)
1619{
1620 struct perf_mmap_data *data = container_of(rcu_head,
1621 struct perf_mmap_data, rcu_head);
1622 int i;
1623
1624 free_page((unsigned long)data->user_page);
1625 for (i = 0; i < data->nr_pages; i++)
1626 free_page((unsigned long)data->data_pages[i]);
1627 kfree(data);
1628}
1629
1630static void perf_mmap_data_free(struct perf_counter *counter)
1631{
1632 struct perf_mmap_data *data = counter->data;
1633
1634 WARN_ON(atomic_read(&counter->mmap_count));
1635
1636 rcu_assign_pointer(counter->data, NULL);
1637 call_rcu(&data->rcu_head, __perf_mmap_data_free);
1638}
1639
1640static void perf_mmap_open(struct vm_area_struct *vma)
1641{
1642 struct perf_counter *counter = vma->vm_file->private_data;
1643
1644 atomic_inc(&counter->mmap_count);
1645}
1646
1647static void perf_mmap_close(struct vm_area_struct *vma)
1648{
1649 struct perf_counter *counter = vma->vm_file->private_data;
1650
1651 if (atomic_dec_and_mutex_lock(&counter->mmap_count,
1652 &counter->mmap_mutex)) {
Peter Zijlstra789f90f2009-05-15 15:19:27 +02001653 struct user_struct *user = current_user();
1654
1655 atomic_long_sub(counter->data->nr_pages + 1, &user->locked_vm);
Peter Zijlstrac5078f72009-05-05 17:50:24 +02001656 vma->vm_mm->locked_vm -= counter->data->nr_locked;
Peter Zijlstra7b732a72009-03-23 18:22:10 +01001657 perf_mmap_data_free(counter);
1658 mutex_unlock(&counter->mmap_mutex);
1659 }
Paul Mackerras37d81822009-03-23 18:22:08 +01001660}
1661
1662static struct vm_operations_struct perf_mmap_vmops = {
Peter Zijlstraebb3c4c2009-04-06 11:45:05 +02001663 .open = perf_mmap_open,
Peter Zijlstra7b732a72009-03-23 18:22:10 +01001664 .close = perf_mmap_close,
Paul Mackerras37d81822009-03-23 18:22:08 +01001665 .fault = perf_mmap_fault,
1666};
1667
1668static int perf_mmap(struct file *file, struct vm_area_struct *vma)
1669{
1670 struct perf_counter *counter = file->private_data;
Peter Zijlstra789f90f2009-05-15 15:19:27 +02001671 struct user_struct *user = current_user();
Peter Zijlstra7b732a72009-03-23 18:22:10 +01001672 unsigned long vma_size;
1673 unsigned long nr_pages;
Peter Zijlstra789f90f2009-05-15 15:19:27 +02001674 unsigned long user_locked, user_lock_limit;
Peter Zijlstra7b732a72009-03-23 18:22:10 +01001675 unsigned long locked, lock_limit;
Peter Zijlstra789f90f2009-05-15 15:19:27 +02001676 long user_extra, extra;
Peter Zijlstra7b732a72009-03-23 18:22:10 +01001677 int ret = 0;
Paul Mackerras37d81822009-03-23 18:22:08 +01001678
1679 if (!(vma->vm_flags & VM_SHARED) || (vma->vm_flags & VM_WRITE))
1680 return -EINVAL;
Peter Zijlstra7b732a72009-03-23 18:22:10 +01001681
1682 vma_size = vma->vm_end - vma->vm_start;
1683 nr_pages = (vma_size / PAGE_SIZE) - 1;
1684
Peter Zijlstra7730d862009-03-25 12:48:31 +01001685 /*
1686 * If we have data pages ensure they're a power-of-two number, so we
1687 * can do bitmasks instead of modulo.
1688 */
1689 if (nr_pages != 0 && !is_power_of_2(nr_pages))
Paul Mackerras37d81822009-03-23 18:22:08 +01001690 return -EINVAL;
1691
Peter Zijlstra7b732a72009-03-23 18:22:10 +01001692 if (vma_size != PAGE_SIZE * (1 + nr_pages))
Paul Mackerras37d81822009-03-23 18:22:08 +01001693 return -EINVAL;
1694
Peter Zijlstra7b732a72009-03-23 18:22:10 +01001695 if (vma->vm_pgoff != 0)
1696 return -EINVAL;
Paul Mackerras37d81822009-03-23 18:22:08 +01001697
Peter Zijlstraebb3c4c2009-04-06 11:45:05 +02001698 mutex_lock(&counter->mmap_mutex);
1699 if (atomic_inc_not_zero(&counter->mmap_count)) {
1700 if (nr_pages != counter->data->nr_pages)
1701 ret = -EINVAL;
1702 goto unlock;
1703 }
1704
Peter Zijlstra789f90f2009-05-15 15:19:27 +02001705 user_extra = nr_pages + 1;
1706 user_lock_limit = sysctl_perf_counter_mlock >> (PAGE_SHIFT - 10);
1707 user_locked = atomic_long_read(&user->locked_vm) + user_extra;
Peter Zijlstrac5078f72009-05-05 17:50:24 +02001708
Peter Zijlstra789f90f2009-05-15 15:19:27 +02001709 extra = 0;
1710 if (user_locked > user_lock_limit)
1711 extra = user_locked - user_lock_limit;
Peter Zijlstra7b732a72009-03-23 18:22:10 +01001712
1713 lock_limit = current->signal->rlim[RLIMIT_MEMLOCK].rlim_cur;
1714 lock_limit >>= PAGE_SHIFT;
Peter Zijlstra789f90f2009-05-15 15:19:27 +02001715 locked = vma->vm_mm->locked_vm + extra;
Peter Zijlstra7b732a72009-03-23 18:22:10 +01001716
Peter Zijlstraebb3c4c2009-04-06 11:45:05 +02001717 if ((locked > lock_limit) && !capable(CAP_IPC_LOCK)) {
1718 ret = -EPERM;
1719 goto unlock;
1720 }
Peter Zijlstra7b732a72009-03-23 18:22:10 +01001721
1722 WARN_ON(counter->data);
1723 ret = perf_mmap_data_alloc(counter, nr_pages);
Peter Zijlstraebb3c4c2009-04-06 11:45:05 +02001724 if (ret)
1725 goto unlock;
1726
1727 atomic_set(&counter->mmap_count, 1);
Peter Zijlstra789f90f2009-05-15 15:19:27 +02001728 atomic_long_add(user_extra, &user->locked_vm);
Peter Zijlstrac5078f72009-05-05 17:50:24 +02001729 vma->vm_mm->locked_vm += extra;
1730 counter->data->nr_locked = extra;
Peter Zijlstraebb3c4c2009-04-06 11:45:05 +02001731unlock:
Peter Zijlstra7b732a72009-03-23 18:22:10 +01001732 mutex_unlock(&counter->mmap_mutex);
Paul Mackerras37d81822009-03-23 18:22:08 +01001733
1734 vma->vm_flags &= ~VM_MAYWRITE;
1735 vma->vm_flags |= VM_RESERVED;
1736 vma->vm_ops = &perf_mmap_vmops;
Peter Zijlstra7b732a72009-03-23 18:22:10 +01001737
1738 return ret;
Paul Mackerras37d81822009-03-23 18:22:08 +01001739}
1740
Peter Zijlstra3c446b3d2009-04-06 11:45:01 +02001741static int perf_fasync(int fd, struct file *filp, int on)
1742{
1743 struct perf_counter *counter = filp->private_data;
1744 struct inode *inode = filp->f_path.dentry->d_inode;
1745 int retval;
1746
1747 mutex_lock(&inode->i_mutex);
1748 retval = fasync_helper(fd, filp, on, &counter->fasync);
1749 mutex_unlock(&inode->i_mutex);
1750
1751 if (retval < 0)
1752 return retval;
1753
1754 return 0;
1755}
1756
Thomas Gleixner0793a612008-12-04 20:12:29 +01001757static const struct file_operations perf_fops = {
1758 .release = perf_release,
1759 .read = perf_read,
1760 .poll = perf_poll,
Paul Mackerrasd859e292009-01-17 18:10:22 +11001761 .unlocked_ioctl = perf_ioctl,
1762 .compat_ioctl = perf_ioctl,
Paul Mackerras37d81822009-03-23 18:22:08 +01001763 .mmap = perf_mmap,
Peter Zijlstra3c446b3d2009-04-06 11:45:01 +02001764 .fasync = perf_fasync,
Thomas Gleixner0793a612008-12-04 20:12:29 +01001765};
1766
Peter Zijlstra15dbf272009-03-13 12:21:32 +01001767/*
Peter Zijlstra925d5192009-03-30 19:07:02 +02001768 * Perf counter wakeup
1769 *
1770 * If there's data, ensure we set the poll() state and publish everything
1771 * to user-space before waking everybody up.
1772 */
1773
1774void perf_counter_wakeup(struct perf_counter *counter)
1775{
Peter Zijlstra925d5192009-03-30 19:07:02 +02001776 wake_up_all(&counter->waitq);
Peter Zijlstra4c9e2542009-04-06 11:45:09 +02001777
1778 if (counter->pending_kill) {
1779 kill_fasync(&counter->fasync, SIGIO, counter->pending_kill);
1780 counter->pending_kill = 0;
1781 }
Peter Zijlstra925d5192009-03-30 19:07:02 +02001782}
1783
1784/*
1785 * Pending wakeups
1786 *
1787 * Handle the case where we need to wakeup up from NMI (or rq->lock) context.
1788 *
1789 * The NMI bit means we cannot possibly take locks. Therefore, maintain a
1790 * single linked list and use cmpxchg() to add entries lockless.
1791 */
1792
Peter Zijlstra79f14642009-04-06 11:45:07 +02001793static void perf_pending_counter(struct perf_pending_entry *entry)
1794{
1795 struct perf_counter *counter = container_of(entry,
1796 struct perf_counter, pending);
1797
1798 if (counter->pending_disable) {
1799 counter->pending_disable = 0;
1800 perf_counter_disable(counter);
1801 }
1802
1803 if (counter->pending_wakeup) {
1804 counter->pending_wakeup = 0;
1805 perf_counter_wakeup(counter);
1806 }
1807}
1808
Peter Zijlstra671dec52009-04-06 11:45:02 +02001809#define PENDING_TAIL ((struct perf_pending_entry *)-1UL)
Peter Zijlstra925d5192009-03-30 19:07:02 +02001810
Peter Zijlstra671dec52009-04-06 11:45:02 +02001811static DEFINE_PER_CPU(struct perf_pending_entry *, perf_pending_head) = {
Peter Zijlstra925d5192009-03-30 19:07:02 +02001812 PENDING_TAIL,
1813};
1814
Peter Zijlstra671dec52009-04-06 11:45:02 +02001815static void perf_pending_queue(struct perf_pending_entry *entry,
1816 void (*func)(struct perf_pending_entry *))
Peter Zijlstra925d5192009-03-30 19:07:02 +02001817{
Peter Zijlstra671dec52009-04-06 11:45:02 +02001818 struct perf_pending_entry **head;
Peter Zijlstra925d5192009-03-30 19:07:02 +02001819
Peter Zijlstra671dec52009-04-06 11:45:02 +02001820 if (cmpxchg(&entry->next, NULL, PENDING_TAIL) != NULL)
Peter Zijlstra925d5192009-03-30 19:07:02 +02001821 return;
1822
Peter Zijlstra671dec52009-04-06 11:45:02 +02001823 entry->func = func;
1824
1825 head = &get_cpu_var(perf_pending_head);
Peter Zijlstra925d5192009-03-30 19:07:02 +02001826
1827 do {
Peter Zijlstra671dec52009-04-06 11:45:02 +02001828 entry->next = *head;
1829 } while (cmpxchg(head, entry->next, entry) != entry->next);
Peter Zijlstra925d5192009-03-30 19:07:02 +02001830
1831 set_perf_counter_pending();
1832
Peter Zijlstra671dec52009-04-06 11:45:02 +02001833 put_cpu_var(perf_pending_head);
Peter Zijlstra925d5192009-03-30 19:07:02 +02001834}
1835
1836static int __perf_pending_run(void)
1837{
Peter Zijlstra671dec52009-04-06 11:45:02 +02001838 struct perf_pending_entry *list;
Peter Zijlstra925d5192009-03-30 19:07:02 +02001839 int nr = 0;
1840
Peter Zijlstra671dec52009-04-06 11:45:02 +02001841 list = xchg(&__get_cpu_var(perf_pending_head), PENDING_TAIL);
Peter Zijlstra925d5192009-03-30 19:07:02 +02001842 while (list != PENDING_TAIL) {
Peter Zijlstra671dec52009-04-06 11:45:02 +02001843 void (*func)(struct perf_pending_entry *);
1844 struct perf_pending_entry *entry = list;
Peter Zijlstra925d5192009-03-30 19:07:02 +02001845
1846 list = list->next;
1847
Peter Zijlstra671dec52009-04-06 11:45:02 +02001848 func = entry->func;
1849 entry->next = NULL;
Peter Zijlstra925d5192009-03-30 19:07:02 +02001850 /*
1851 * Ensure we observe the unqueue before we issue the wakeup,
1852 * so that we won't be waiting forever.
1853 * -- see perf_not_pending().
1854 */
1855 smp_wmb();
1856
Peter Zijlstra671dec52009-04-06 11:45:02 +02001857 func(entry);
Peter Zijlstra925d5192009-03-30 19:07:02 +02001858 nr++;
1859 }
1860
1861 return nr;
1862}
1863
1864static inline int perf_not_pending(struct perf_counter *counter)
1865{
1866 /*
1867 * If we flush on whatever cpu we run, there is a chance we don't
1868 * need to wait.
1869 */
1870 get_cpu();
1871 __perf_pending_run();
1872 put_cpu();
1873
1874 /*
1875 * Ensure we see the proper queue state before going to sleep
1876 * so that we do not miss the wakeup. -- see perf_pending_handle()
1877 */
1878 smp_rmb();
Peter Zijlstra671dec52009-04-06 11:45:02 +02001879 return counter->pending.next == NULL;
Peter Zijlstra925d5192009-03-30 19:07:02 +02001880}
1881
1882static void perf_pending_sync(struct perf_counter *counter)
1883{
1884 wait_event(counter->waitq, perf_not_pending(counter));
1885}
1886
1887void perf_counter_do_pending(void)
1888{
1889 __perf_pending_run();
1890}
1891
1892/*
Peter Zijlstra394ee072009-03-30 19:07:14 +02001893 * Callchain support -- arch specific
1894 */
1895
Peter Zijlstra9c03d882009-04-06 11:45:00 +02001896__weak struct perf_callchain_entry *perf_callchain(struct pt_regs *regs)
Peter Zijlstra394ee072009-03-30 19:07:14 +02001897{
1898 return NULL;
1899}
1900
1901/*
Peter Zijlstra0322cd62009-03-19 20:26:19 +01001902 * Output
1903 */
1904
Peter Zijlstrab9cacc72009-03-25 12:30:22 +01001905struct perf_output_handle {
1906 struct perf_counter *counter;
1907 struct perf_mmap_data *data;
1908 unsigned int offset;
Peter Zijlstra63e35b22009-03-25 12:30:24 +01001909 unsigned int head;
Peter Zijlstra78d613e2009-03-30 19:07:11 +02001910 int nmi;
Peter Zijlstra4c9e2542009-04-06 11:45:09 +02001911 int overflow;
Peter Zijlstrac33a0bc2009-05-01 12:23:16 +02001912 int locked;
1913 unsigned long flags;
Peter Zijlstrab9cacc72009-03-25 12:30:22 +01001914};
1915
Peter Zijlstrac33a0bc2009-05-01 12:23:16 +02001916static void perf_output_wakeup(struct perf_output_handle *handle)
Peter Zijlstra78d613e2009-03-30 19:07:11 +02001917{
Peter Zijlstrac33a0bc2009-05-01 12:23:16 +02001918 atomic_set(&handle->data->poll, POLL_IN);
1919
Peter Zijlstra671dec52009-04-06 11:45:02 +02001920 if (handle->nmi) {
Peter Zijlstra79f14642009-04-06 11:45:07 +02001921 handle->counter->pending_wakeup = 1;
Peter Zijlstra671dec52009-04-06 11:45:02 +02001922 perf_pending_queue(&handle->counter->pending,
Peter Zijlstra79f14642009-04-06 11:45:07 +02001923 perf_pending_counter);
Peter Zijlstra671dec52009-04-06 11:45:02 +02001924 } else
Peter Zijlstra78d613e2009-03-30 19:07:11 +02001925 perf_counter_wakeup(handle->counter);
1926}
1927
Peter Zijlstrac33a0bc2009-05-01 12:23:16 +02001928/*
1929 * Curious locking construct.
1930 *
1931 * We need to ensure a later event doesn't publish a head when a former
1932 * event isn't done writing. However since we need to deal with NMIs we
1933 * cannot fully serialize things.
1934 *
1935 * What we do is serialize between CPUs so we only have to deal with NMI
1936 * nesting on a single CPU.
1937 *
1938 * We only publish the head (and generate a wakeup) when the outer-most
1939 * event completes.
1940 */
1941static void perf_output_lock(struct perf_output_handle *handle)
1942{
1943 struct perf_mmap_data *data = handle->data;
1944 int cpu;
1945
1946 handle->locked = 0;
1947
1948 local_irq_save(handle->flags);
1949 cpu = smp_processor_id();
1950
1951 if (in_nmi() && atomic_read(&data->lock) == cpu)
1952 return;
1953
Peter Zijlstra22c15582009-05-05 17:50:25 +02001954 while (atomic_cmpxchg(&data->lock, -1, cpu) != -1)
Peter Zijlstrac33a0bc2009-05-01 12:23:16 +02001955 cpu_relax();
1956
1957 handle->locked = 1;
1958}
1959
1960static void perf_output_unlock(struct perf_output_handle *handle)
1961{
1962 struct perf_mmap_data *data = handle->data;
1963 int head, cpu;
1964
Peter Zijlstrac66de4a2009-05-05 17:50:22 +02001965 data->done_head = data->head;
Peter Zijlstrac33a0bc2009-05-01 12:23:16 +02001966
1967 if (!handle->locked)
1968 goto out;
1969
1970again:
1971 /*
1972 * The xchg implies a full barrier that ensures all writes are done
1973 * before we publish the new head, matched by a rmb() in userspace when
1974 * reading this position.
1975 */
Peter Zijlstrac66de4a2009-05-05 17:50:22 +02001976 while ((head = atomic_xchg(&data->done_head, 0)))
Peter Zijlstrac33a0bc2009-05-01 12:23:16 +02001977 data->user_page->data_head = head;
Peter Zijlstrac33a0bc2009-05-01 12:23:16 +02001978
1979 /*
Peter Zijlstrac66de4a2009-05-05 17:50:22 +02001980 * NMI can happen here, which means we can miss a done_head update.
Peter Zijlstrac33a0bc2009-05-01 12:23:16 +02001981 */
1982
Peter Zijlstra22c15582009-05-05 17:50:25 +02001983 cpu = atomic_xchg(&data->lock, -1);
Peter Zijlstrac33a0bc2009-05-01 12:23:16 +02001984 WARN_ON_ONCE(cpu != smp_processor_id());
1985
1986 /*
1987 * Therefore we have to validate we did not indeed do so.
1988 */
Peter Zijlstrac66de4a2009-05-05 17:50:22 +02001989 if (unlikely(atomic_read(&data->done_head))) {
Peter Zijlstrac33a0bc2009-05-01 12:23:16 +02001990 /*
1991 * Since we had it locked, we can lock it again.
1992 */
Peter Zijlstra22c15582009-05-05 17:50:25 +02001993 while (atomic_cmpxchg(&data->lock, -1, cpu) != -1)
Peter Zijlstrac33a0bc2009-05-01 12:23:16 +02001994 cpu_relax();
1995
1996 goto again;
1997 }
1998
Peter Zijlstrac66de4a2009-05-05 17:50:22 +02001999 if (atomic_xchg(&data->wakeup, 0))
Peter Zijlstrac33a0bc2009-05-01 12:23:16 +02002000 perf_output_wakeup(handle);
2001out:
2002 local_irq_restore(handle->flags);
2003}
2004
Peter Zijlstrab9cacc72009-03-25 12:30:22 +01002005static int perf_output_begin(struct perf_output_handle *handle,
Peter Zijlstra78d613e2009-03-30 19:07:11 +02002006 struct perf_counter *counter, unsigned int size,
Peter Zijlstra4c9e2542009-04-06 11:45:09 +02002007 int nmi, int overflow)
Peter Zijlstra0322cd62009-03-19 20:26:19 +01002008{
Peter Zijlstra7b732a72009-03-23 18:22:10 +01002009 struct perf_mmap_data *data;
Peter Zijlstrab9cacc72009-03-25 12:30:22 +01002010 unsigned int offset, head;
Peter Zijlstra0322cd62009-03-19 20:26:19 +01002011
Peter Zijlstra2023b352009-05-05 17:50:26 +02002012 /*
2013 * For inherited counters we send all the output towards the parent.
2014 */
2015 if (counter->parent)
2016 counter = counter->parent;
2017
Peter Zijlstra7b732a72009-03-23 18:22:10 +01002018 rcu_read_lock();
Peter Zijlstra7b732a72009-03-23 18:22:10 +01002019 data = rcu_dereference(counter->data);
2020 if (!data)
2021 goto out;
Peter Zijlstra0322cd62009-03-19 20:26:19 +01002022
Peter Zijlstrac33a0bc2009-05-01 12:23:16 +02002023 handle->data = data;
Peter Zijlstra4c9e2542009-04-06 11:45:09 +02002024 handle->counter = counter;
2025 handle->nmi = nmi;
2026 handle->overflow = overflow;
Peter Zijlstra78d613e2009-03-30 19:07:11 +02002027
Peter Zijlstra7b732a72009-03-23 18:22:10 +01002028 if (!data->nr_pages)
Peter Zijlstra78d613e2009-03-30 19:07:11 +02002029 goto fail;
Peter Zijlstra7b732a72009-03-23 18:22:10 +01002030
Peter Zijlstrac33a0bc2009-05-01 12:23:16 +02002031 perf_output_lock(handle);
2032
Peter Zijlstra7b732a72009-03-23 18:22:10 +01002033 do {
2034 offset = head = atomic_read(&data->head);
Peter Zijlstrac7138f32009-03-24 13:18:16 +01002035 head += size;
Peter Zijlstra7b732a72009-03-23 18:22:10 +01002036 } while (atomic_cmpxchg(&data->head, offset, head) != offset);
2037
Peter Zijlstrab9cacc72009-03-25 12:30:22 +01002038 handle->offset = offset;
Peter Zijlstra63e35b22009-03-25 12:30:24 +01002039 handle->head = head;
Peter Zijlstrac66de4a2009-05-05 17:50:22 +02002040
2041 if ((offset >> PAGE_SHIFT) != (head >> PAGE_SHIFT))
2042 atomic_set(&data->wakeup, 1);
Peter Zijlstra7b732a72009-03-23 18:22:10 +01002043
Peter Zijlstrab9cacc72009-03-25 12:30:22 +01002044 return 0;
Peter Zijlstra7b732a72009-03-23 18:22:10 +01002045
Peter Zijlstra78d613e2009-03-30 19:07:11 +02002046fail:
Peter Zijlstrac33a0bc2009-05-01 12:23:16 +02002047 perf_output_wakeup(handle);
Peter Zijlstra7b732a72009-03-23 18:22:10 +01002048out:
2049 rcu_read_unlock();
2050
Peter Zijlstrab9cacc72009-03-25 12:30:22 +01002051 return -ENOSPC;
2052}
2053
2054static void perf_output_copy(struct perf_output_handle *handle,
2055 void *buf, unsigned int len)
2056{
2057 unsigned int pages_mask;
2058 unsigned int offset;
2059 unsigned int size;
2060 void **pages;
2061
2062 offset = handle->offset;
2063 pages_mask = handle->data->nr_pages - 1;
2064 pages = handle->data->data_pages;
2065
2066 do {
2067 unsigned int page_offset;
2068 int nr;
2069
2070 nr = (offset >> PAGE_SHIFT) & pages_mask;
2071 page_offset = offset & (PAGE_SIZE - 1);
2072 size = min_t(unsigned int, PAGE_SIZE - page_offset, len);
2073
2074 memcpy(pages[nr] + page_offset, buf, size);
2075
2076 len -= size;
2077 buf += size;
2078 offset += size;
2079 } while (len);
2080
2081 handle->offset = offset;
Peter Zijlstra63e35b22009-03-25 12:30:24 +01002082
Peter Zijlstra53020fe2009-05-13 21:26:19 +02002083 /*
2084 * Check we didn't copy past our reservation window, taking the
2085 * possible unsigned int wrap into account.
2086 */
2087 WARN_ON_ONCE(((int)(handle->head - handle->offset)) < 0);
Peter Zijlstrab9cacc72009-03-25 12:30:22 +01002088}
2089
Peter Zijlstra5c148192009-03-25 12:30:23 +01002090#define perf_output_put(handle, x) \
2091 perf_output_copy((handle), &(x), sizeof(x))
2092
Peter Zijlstra78d613e2009-03-30 19:07:11 +02002093static void perf_output_end(struct perf_output_handle *handle)
Peter Zijlstrab9cacc72009-03-25 12:30:22 +01002094{
Peter Zijlstrac33a0bc2009-05-01 12:23:16 +02002095 struct perf_counter *counter = handle->counter;
2096 struct perf_mmap_data *data = handle->data;
2097
2098 int wakeup_events = counter->hw_event.wakeup_events;
Peter Zijlstrac4578102009-04-02 11:12:01 +02002099
Peter Zijlstra4c9e2542009-04-06 11:45:09 +02002100 if (handle->overflow && wakeup_events) {
Peter Zijlstrac33a0bc2009-05-01 12:23:16 +02002101 int events = atomic_inc_return(&data->events);
Peter Zijlstrac4578102009-04-02 11:12:01 +02002102 if (events >= wakeup_events) {
Peter Zijlstrac33a0bc2009-05-01 12:23:16 +02002103 atomic_sub(wakeup_events, &data->events);
Peter Zijlstrac66de4a2009-05-05 17:50:22 +02002104 atomic_set(&data->wakeup, 1);
Peter Zijlstrac4578102009-04-02 11:12:01 +02002105 }
Peter Zijlstrac33a0bc2009-05-01 12:23:16 +02002106 }
2107
2108 perf_output_unlock(handle);
Peter Zijlstrab9cacc72009-03-25 12:30:22 +01002109 rcu_read_unlock();
2110}
2111
Peter Zijlstraf6c7d5f2009-04-06 11:45:04 +02002112static void perf_counter_output(struct perf_counter *counter,
Peter Zijlstra78f13e92009-04-08 15:01:33 +02002113 int nmi, struct pt_regs *regs, u64 addr)
Peter Zijlstra7b732a72009-03-23 18:22:10 +01002114{
Peter Zijlstra5ed00412009-03-30 19:07:12 +02002115 int ret;
Peter Zijlstra8a057d82009-04-02 11:11:59 +02002116 u64 record_type = counter->hw_event.record_type;
Peter Zijlstra5ed00412009-03-30 19:07:12 +02002117 struct perf_output_handle handle;
2118 struct perf_event_header header;
2119 u64 ip;
Peter Zijlstra5c148192009-03-25 12:30:23 +01002120 struct {
Peter Zijlstraea5d20c2009-03-25 12:30:25 +01002121 u32 pid, tid;
Peter Zijlstra5ed00412009-03-30 19:07:12 +02002122 } tid_entry;
Peter Zijlstra8a057d82009-04-02 11:11:59 +02002123 struct {
2124 u64 event;
2125 u64 counter;
2126 } group_entry;
Peter Zijlstra394ee072009-03-30 19:07:14 +02002127 struct perf_callchain_entry *callchain = NULL;
2128 int callchain_size = 0;
Peter Zijlstra339f7c92009-04-06 11:45:06 +02002129 u64 time;
Peter Zijlstraf370e1e2009-05-08 18:52:24 +02002130 struct {
2131 u32 cpu, reserved;
2132 } cpu_entry;
Peter Zijlstra7b732a72009-03-23 18:22:10 +01002133
Peter Zijlstra6b6e5482009-04-08 15:01:27 +02002134 header.type = 0;
Peter Zijlstra5ed00412009-03-30 19:07:12 +02002135 header.size = sizeof(header);
Peter Zijlstra7b732a72009-03-23 18:22:10 +01002136
Peter Zijlstra6b6e5482009-04-08 15:01:27 +02002137 header.misc = PERF_EVENT_MISC_OVERFLOW;
Paul Mackerras9d23a902009-05-14 21:48:08 +10002138 header.misc |= perf_misc_flags(regs);
Peter Zijlstra6fab0192009-04-08 15:01:26 +02002139
Peter Zijlstra8a057d82009-04-02 11:11:59 +02002140 if (record_type & PERF_RECORD_IP) {
Paul Mackerras9d23a902009-05-14 21:48:08 +10002141 ip = perf_instruction_pointer(regs);
Peter Zijlstra6b6e5482009-04-08 15:01:27 +02002142 header.type |= PERF_RECORD_IP;
Peter Zijlstra8a057d82009-04-02 11:11:59 +02002143 header.size += sizeof(ip);
2144 }
Peter Zijlstraea5d20c2009-03-25 12:30:25 +01002145
Peter Zijlstra8a057d82009-04-02 11:11:59 +02002146 if (record_type & PERF_RECORD_TID) {
Peter Zijlstraea5d20c2009-03-25 12:30:25 +01002147 /* namespace issues */
Peter Zijlstra5ed00412009-03-30 19:07:12 +02002148 tid_entry.pid = current->group_leader->pid;
2149 tid_entry.tid = current->pid;
Peter Zijlstraea5d20c2009-03-25 12:30:25 +01002150
Peter Zijlstra6b6e5482009-04-08 15:01:27 +02002151 header.type |= PERF_RECORD_TID;
Peter Zijlstra5ed00412009-03-30 19:07:12 +02002152 header.size += sizeof(tid_entry);
2153 }
Peter Zijlstraea5d20c2009-03-25 12:30:25 +01002154
Peter Zijlstra4d855452009-04-08 15:01:32 +02002155 if (record_type & PERF_RECORD_TIME) {
2156 /*
2157 * Maybe do better on x86 and provide cpu_clock_nmi()
2158 */
2159 time = sched_clock();
2160
2161 header.type |= PERF_RECORD_TIME;
2162 header.size += sizeof(u64);
2163 }
2164
Peter Zijlstra78f13e92009-04-08 15:01:33 +02002165 if (record_type & PERF_RECORD_ADDR) {
2166 header.type |= PERF_RECORD_ADDR;
2167 header.size += sizeof(u64);
2168 }
2169
Peter Zijlstraa85f61a2009-05-08 18:52:23 +02002170 if (record_type & PERF_RECORD_CONFIG) {
2171 header.type |= PERF_RECORD_CONFIG;
2172 header.size += sizeof(u64);
2173 }
2174
Peter Zijlstraf370e1e2009-05-08 18:52:24 +02002175 if (record_type & PERF_RECORD_CPU) {
2176 header.type |= PERF_RECORD_CPU;
2177 header.size += sizeof(cpu_entry);
2178
2179 cpu_entry.cpu = raw_smp_processor_id();
2180 }
2181
Peter Zijlstra8a057d82009-04-02 11:11:59 +02002182 if (record_type & PERF_RECORD_GROUP) {
Peter Zijlstra6b6e5482009-04-08 15:01:27 +02002183 header.type |= PERF_RECORD_GROUP;
Peter Zijlstra8a057d82009-04-02 11:11:59 +02002184 header.size += sizeof(u64) +
2185 counter->nr_siblings * sizeof(group_entry);
2186 }
2187
2188 if (record_type & PERF_RECORD_CALLCHAIN) {
Peter Zijlstra394ee072009-03-30 19:07:14 +02002189 callchain = perf_callchain(regs);
2190
2191 if (callchain) {
Peter Zijlstra9c03d882009-04-06 11:45:00 +02002192 callchain_size = (1 + callchain->nr) * sizeof(u64);
Peter Zijlstra394ee072009-03-30 19:07:14 +02002193
Peter Zijlstra6b6e5482009-04-08 15:01:27 +02002194 header.type |= PERF_RECORD_CALLCHAIN;
Peter Zijlstra394ee072009-03-30 19:07:14 +02002195 header.size += callchain_size;
2196 }
2197 }
2198
Peter Zijlstra4c9e2542009-04-06 11:45:09 +02002199 ret = perf_output_begin(&handle, counter, header.size, nmi, 1);
Peter Zijlstra5ed00412009-03-30 19:07:12 +02002200 if (ret)
2201 return;
Peter Zijlstraea5d20c2009-03-25 12:30:25 +01002202
Peter Zijlstra5ed00412009-03-30 19:07:12 +02002203 perf_output_put(&handle, header);
Peter Zijlstra5ed00412009-03-30 19:07:12 +02002204
Peter Zijlstra8a057d82009-04-02 11:11:59 +02002205 if (record_type & PERF_RECORD_IP)
2206 perf_output_put(&handle, ip);
2207
2208 if (record_type & PERF_RECORD_TID)
Peter Zijlstra5ed00412009-03-30 19:07:12 +02002209 perf_output_put(&handle, tid_entry);
2210
Peter Zijlstra4d855452009-04-08 15:01:32 +02002211 if (record_type & PERF_RECORD_TIME)
2212 perf_output_put(&handle, time);
2213
Peter Zijlstra78f13e92009-04-08 15:01:33 +02002214 if (record_type & PERF_RECORD_ADDR)
2215 perf_output_put(&handle, addr);
2216
Peter Zijlstraa85f61a2009-05-08 18:52:23 +02002217 if (record_type & PERF_RECORD_CONFIG)
2218 perf_output_put(&handle, counter->hw_event.config);
2219
Peter Zijlstraf370e1e2009-05-08 18:52:24 +02002220 if (record_type & PERF_RECORD_CPU)
2221 perf_output_put(&handle, cpu_entry);
2222
Peter Zijlstra2023b352009-05-05 17:50:26 +02002223 /*
2224 * XXX PERF_RECORD_GROUP vs inherited counters seems difficult.
2225 */
Peter Zijlstra8a057d82009-04-02 11:11:59 +02002226 if (record_type & PERF_RECORD_GROUP) {
2227 struct perf_counter *leader, *sub;
2228 u64 nr = counter->nr_siblings;
2229
2230 perf_output_put(&handle, nr);
2231
2232 leader = counter->group_leader;
2233 list_for_each_entry(sub, &leader->sibling_list, list_entry) {
2234 if (sub != counter)
Robert Richter4aeb0b42009-04-29 12:47:03 +02002235 sub->pmu->read(sub);
Peter Zijlstra8a057d82009-04-02 11:11:59 +02002236
2237 group_entry.event = sub->hw_event.config;
2238 group_entry.counter = atomic64_read(&sub->count);
2239
2240 perf_output_put(&handle, group_entry);
2241 }
2242 }
2243
Peter Zijlstra394ee072009-03-30 19:07:14 +02002244 if (callchain)
2245 perf_output_copy(&handle, callchain, callchain_size);
2246
Peter Zijlstra5ed00412009-03-30 19:07:12 +02002247 perf_output_end(&handle);
Peter Zijlstra7b732a72009-03-23 18:22:10 +01002248}
2249
Peter Zijlstra0322cd62009-03-19 20:26:19 +01002250/*
Peter Zijlstra8d1b2d92009-04-08 15:01:30 +02002251 * comm tracking
2252 */
2253
2254struct perf_comm_event {
2255 struct task_struct *task;
2256 char *comm;
2257 int comm_size;
2258
2259 struct {
2260 struct perf_event_header header;
2261
2262 u32 pid;
2263 u32 tid;
2264 } event;
2265};
2266
2267static void perf_counter_comm_output(struct perf_counter *counter,
2268 struct perf_comm_event *comm_event)
2269{
2270 struct perf_output_handle handle;
2271 int size = comm_event->event.header.size;
2272 int ret = perf_output_begin(&handle, counter, size, 0, 0);
2273
2274 if (ret)
2275 return;
2276
2277 perf_output_put(&handle, comm_event->event);
2278 perf_output_copy(&handle, comm_event->comm,
2279 comm_event->comm_size);
2280 perf_output_end(&handle);
2281}
2282
2283static int perf_counter_comm_match(struct perf_counter *counter,
2284 struct perf_comm_event *comm_event)
2285{
2286 if (counter->hw_event.comm &&
2287 comm_event->event.header.type == PERF_EVENT_COMM)
2288 return 1;
2289
2290 return 0;
2291}
2292
2293static void perf_counter_comm_ctx(struct perf_counter_context *ctx,
2294 struct perf_comm_event *comm_event)
2295{
2296 struct perf_counter *counter;
2297
2298 if (system_state != SYSTEM_RUNNING || list_empty(&ctx->event_list))
2299 return;
2300
2301 rcu_read_lock();
2302 list_for_each_entry_rcu(counter, &ctx->event_list, event_entry) {
2303 if (perf_counter_comm_match(counter, comm_event))
2304 perf_counter_comm_output(counter, comm_event);
2305 }
2306 rcu_read_unlock();
2307}
2308
2309static void perf_counter_comm_event(struct perf_comm_event *comm_event)
2310{
2311 struct perf_cpu_context *cpuctx;
2312 unsigned int size;
2313 char *comm = comm_event->task->comm;
2314
Ingo Molnar888fcee2009-04-09 09:48:22 +02002315 size = ALIGN(strlen(comm)+1, sizeof(u64));
Peter Zijlstra8d1b2d92009-04-08 15:01:30 +02002316
2317 comm_event->comm = comm;
2318 comm_event->comm_size = size;
2319
2320 comm_event->event.header.size = sizeof(comm_event->event) + size;
2321
2322 cpuctx = &get_cpu_var(perf_cpu_context);
2323 perf_counter_comm_ctx(&cpuctx->ctx, comm_event);
2324 put_cpu_var(perf_cpu_context);
2325
Paul Mackerrasa63eaf32009-05-22 14:17:31 +10002326 perf_counter_comm_ctx(current->perf_counter_ctxp, comm_event);
Peter Zijlstra8d1b2d92009-04-08 15:01:30 +02002327}
2328
2329void perf_counter_comm(struct task_struct *task)
2330{
Peter Zijlstra9ee318a2009-04-09 10:53:44 +02002331 struct perf_comm_event comm_event;
2332
2333 if (!atomic_read(&nr_comm_tracking))
2334 return;
Paul Mackerrasa63eaf32009-05-22 14:17:31 +10002335 if (!current->perf_counter_ctxp)
2336 return;
2337
Peter Zijlstra9ee318a2009-04-09 10:53:44 +02002338 comm_event = (struct perf_comm_event){
Peter Zijlstra8d1b2d92009-04-08 15:01:30 +02002339 .task = task,
2340 .event = {
2341 .header = { .type = PERF_EVENT_COMM, },
2342 .pid = task->group_leader->pid,
2343 .tid = task->pid,
2344 },
2345 };
2346
2347 perf_counter_comm_event(&comm_event);
2348}
2349
2350/*
Peter Zijlstra0a4a9392009-03-30 19:07:05 +02002351 * mmap tracking
2352 */
2353
2354struct perf_mmap_event {
2355 struct file *file;
2356 char *file_name;
2357 int file_size;
2358
2359 struct {
2360 struct perf_event_header header;
2361
2362 u32 pid;
2363 u32 tid;
2364 u64 start;
2365 u64 len;
2366 u64 pgoff;
2367 } event;
2368};
2369
2370static void perf_counter_mmap_output(struct perf_counter *counter,
2371 struct perf_mmap_event *mmap_event)
2372{
2373 struct perf_output_handle handle;
2374 int size = mmap_event->event.header.size;
Peter Zijlstra4c9e2542009-04-06 11:45:09 +02002375 int ret = perf_output_begin(&handle, counter, size, 0, 0);
Peter Zijlstra0a4a9392009-03-30 19:07:05 +02002376
2377 if (ret)
2378 return;
2379
2380 perf_output_put(&handle, mmap_event->event);
2381 perf_output_copy(&handle, mmap_event->file_name,
2382 mmap_event->file_size);
Peter Zijlstra78d613e2009-03-30 19:07:11 +02002383 perf_output_end(&handle);
Peter Zijlstra0a4a9392009-03-30 19:07:05 +02002384}
2385
2386static int perf_counter_mmap_match(struct perf_counter *counter,
2387 struct perf_mmap_event *mmap_event)
2388{
2389 if (counter->hw_event.mmap &&
2390 mmap_event->event.header.type == PERF_EVENT_MMAP)
2391 return 1;
2392
2393 if (counter->hw_event.munmap &&
2394 mmap_event->event.header.type == PERF_EVENT_MUNMAP)
2395 return 1;
2396
2397 return 0;
2398}
2399
2400static void perf_counter_mmap_ctx(struct perf_counter_context *ctx,
2401 struct perf_mmap_event *mmap_event)
2402{
2403 struct perf_counter *counter;
2404
2405 if (system_state != SYSTEM_RUNNING || list_empty(&ctx->event_list))
2406 return;
2407
2408 rcu_read_lock();
2409 list_for_each_entry_rcu(counter, &ctx->event_list, event_entry) {
2410 if (perf_counter_mmap_match(counter, mmap_event))
2411 perf_counter_mmap_output(counter, mmap_event);
2412 }
2413 rcu_read_unlock();
2414}
2415
2416static void perf_counter_mmap_event(struct perf_mmap_event *mmap_event)
2417{
2418 struct perf_cpu_context *cpuctx;
2419 struct file *file = mmap_event->file;
2420 unsigned int size;
2421 char tmp[16];
2422 char *buf = NULL;
2423 char *name;
2424
2425 if (file) {
2426 buf = kzalloc(PATH_MAX, GFP_KERNEL);
2427 if (!buf) {
2428 name = strncpy(tmp, "//enomem", sizeof(tmp));
2429 goto got_name;
2430 }
Peter Zijlstrad3d21c42009-04-09 10:53:46 +02002431 name = d_path(&file->f_path, buf, PATH_MAX);
Peter Zijlstra0a4a9392009-03-30 19:07:05 +02002432 if (IS_ERR(name)) {
2433 name = strncpy(tmp, "//toolong", sizeof(tmp));
2434 goto got_name;
2435 }
2436 } else {
2437 name = strncpy(tmp, "//anon", sizeof(tmp));
2438 goto got_name;
2439 }
2440
2441got_name:
Ingo Molnar888fcee2009-04-09 09:48:22 +02002442 size = ALIGN(strlen(name)+1, sizeof(u64));
Peter Zijlstra0a4a9392009-03-30 19:07:05 +02002443
2444 mmap_event->file_name = name;
2445 mmap_event->file_size = size;
2446
2447 mmap_event->event.header.size = sizeof(mmap_event->event) + size;
2448
2449 cpuctx = &get_cpu_var(perf_cpu_context);
2450 perf_counter_mmap_ctx(&cpuctx->ctx, mmap_event);
2451 put_cpu_var(perf_cpu_context);
2452
Paul Mackerrasa63eaf32009-05-22 14:17:31 +10002453 perf_counter_mmap_ctx(current->perf_counter_ctxp, mmap_event);
Peter Zijlstra0a4a9392009-03-30 19:07:05 +02002454
2455 kfree(buf);
2456}
2457
2458void perf_counter_mmap(unsigned long addr, unsigned long len,
2459 unsigned long pgoff, struct file *file)
2460{
Peter Zijlstra9ee318a2009-04-09 10:53:44 +02002461 struct perf_mmap_event mmap_event;
2462
2463 if (!atomic_read(&nr_mmap_tracking))
2464 return;
Paul Mackerrasa63eaf32009-05-22 14:17:31 +10002465 if (!current->perf_counter_ctxp)
2466 return;
Peter Zijlstra9ee318a2009-04-09 10:53:44 +02002467
2468 mmap_event = (struct perf_mmap_event){
Peter Zijlstra0a4a9392009-03-30 19:07:05 +02002469 .file = file,
2470 .event = {
2471 .header = { .type = PERF_EVENT_MMAP, },
2472 .pid = current->group_leader->pid,
2473 .tid = current->pid,
2474 .start = addr,
2475 .len = len,
2476 .pgoff = pgoff,
2477 },
2478 };
2479
2480 perf_counter_mmap_event(&mmap_event);
2481}
2482
2483void perf_counter_munmap(unsigned long addr, unsigned long len,
2484 unsigned long pgoff, struct file *file)
2485{
Peter Zijlstra9ee318a2009-04-09 10:53:44 +02002486 struct perf_mmap_event mmap_event;
2487
2488 if (!atomic_read(&nr_munmap_tracking))
2489 return;
2490
2491 mmap_event = (struct perf_mmap_event){
Peter Zijlstra0a4a9392009-03-30 19:07:05 +02002492 .file = file,
2493 .event = {
2494 .header = { .type = PERF_EVENT_MUNMAP, },
2495 .pid = current->group_leader->pid,
2496 .tid = current->pid,
2497 .start = addr,
2498 .len = len,
2499 .pgoff = pgoff,
2500 },
2501 };
2502
2503 perf_counter_mmap_event(&mmap_event);
2504}
2505
2506/*
Peter Zijlstrae220d2d2009-05-23 18:28:55 +02002507 * Log irq_period changes so that analyzing tools can re-normalize the
2508 * event flow.
Peter Zijlstra26b119b2009-05-20 12:21:20 +02002509 */
2510
2511static void perf_log_period(struct perf_counter *counter, u64 period)
2512{
2513 struct perf_output_handle handle;
2514 int ret;
2515
2516 struct {
2517 struct perf_event_header header;
2518 u64 time;
2519 u64 period;
2520 } freq_event = {
2521 .header = {
2522 .type = PERF_EVENT_PERIOD,
2523 .misc = 0,
2524 .size = sizeof(freq_event),
2525 },
2526 .time = sched_clock(),
2527 .period = period,
2528 };
2529
2530 if (counter->hw.irq_period == period)
2531 return;
2532
2533 ret = perf_output_begin(&handle, counter, sizeof(freq_event), 0, 0);
2534 if (ret)
2535 return;
2536
2537 perf_output_put(&handle, freq_event);
2538 perf_output_end(&handle);
2539}
2540
2541/*
Peter Zijlstraf6c7d5f2009-04-06 11:45:04 +02002542 * Generic counter overflow handling.
2543 */
2544
2545int perf_counter_overflow(struct perf_counter *counter,
Peter Zijlstra78f13e92009-04-08 15:01:33 +02002546 int nmi, struct pt_regs *regs, u64 addr)
Peter Zijlstraf6c7d5f2009-04-06 11:45:04 +02002547{
Peter Zijlstra79f14642009-04-06 11:45:07 +02002548 int events = atomic_read(&counter->event_limit);
2549 int ret = 0;
2550
Peter Zijlstra60db5e02009-05-15 15:19:28 +02002551 counter->hw.interrupts++;
2552
Peter Zijlstra2023b352009-05-05 17:50:26 +02002553 /*
2554 * XXX event_limit might not quite work as expected on inherited
2555 * counters
2556 */
2557
Peter Zijlstra4c9e2542009-04-06 11:45:09 +02002558 counter->pending_kill = POLL_IN;
Peter Zijlstra79f14642009-04-06 11:45:07 +02002559 if (events && atomic_dec_and_test(&counter->event_limit)) {
2560 ret = 1;
Peter Zijlstra4c9e2542009-04-06 11:45:09 +02002561 counter->pending_kill = POLL_HUP;
Peter Zijlstra79f14642009-04-06 11:45:07 +02002562 if (nmi) {
2563 counter->pending_disable = 1;
2564 perf_pending_queue(&counter->pending,
2565 perf_pending_counter);
2566 } else
2567 perf_counter_disable(counter);
2568 }
2569
Peter Zijlstra78f13e92009-04-08 15:01:33 +02002570 perf_counter_output(counter, nmi, regs, addr);
Peter Zijlstra79f14642009-04-06 11:45:07 +02002571 return ret;
Peter Zijlstraf6c7d5f2009-04-06 11:45:04 +02002572}
2573
2574/*
Peter Zijlstra15dbf272009-03-13 12:21:32 +01002575 * Generic software counter infrastructure
2576 */
2577
2578static void perf_swcounter_update(struct perf_counter *counter)
2579{
2580 struct hw_perf_counter *hwc = &counter->hw;
2581 u64 prev, now;
2582 s64 delta;
2583
2584again:
2585 prev = atomic64_read(&hwc->prev_count);
2586 now = atomic64_read(&hwc->count);
2587 if (atomic64_cmpxchg(&hwc->prev_count, prev, now) != prev)
2588 goto again;
2589
2590 delta = now - prev;
2591
2592 atomic64_add(delta, &counter->count);
2593 atomic64_sub(delta, &hwc->period_left);
2594}
2595
2596static void perf_swcounter_set_period(struct perf_counter *counter)
2597{
2598 struct hw_perf_counter *hwc = &counter->hw;
2599 s64 left = atomic64_read(&hwc->period_left);
2600 s64 period = hwc->irq_period;
2601
2602 if (unlikely(left <= -period)) {
2603 left = period;
2604 atomic64_set(&hwc->period_left, left);
2605 }
2606
2607 if (unlikely(left <= 0)) {
2608 left += period;
2609 atomic64_add(period, &hwc->period_left);
2610 }
2611
2612 atomic64_set(&hwc->prev_count, -left);
2613 atomic64_set(&hwc->count, -left);
2614}
2615
Peter Zijlstrad6d020e2009-03-13 12:21:35 +01002616static enum hrtimer_restart perf_swcounter_hrtimer(struct hrtimer *hrtimer)
2617{
Peter Zijlstraf6c7d5f2009-04-06 11:45:04 +02002618 enum hrtimer_restart ret = HRTIMER_RESTART;
Peter Zijlstrad6d020e2009-03-13 12:21:35 +01002619 struct perf_counter *counter;
2620 struct pt_regs *regs;
Peter Zijlstra60db5e02009-05-15 15:19:28 +02002621 u64 period;
Peter Zijlstrad6d020e2009-03-13 12:21:35 +01002622
2623 counter = container_of(hrtimer, struct perf_counter, hw.hrtimer);
Robert Richter4aeb0b42009-04-29 12:47:03 +02002624 counter->pmu->read(counter);
Peter Zijlstrad6d020e2009-03-13 12:21:35 +01002625
2626 regs = get_irq_regs();
2627 /*
2628 * In case we exclude kernel IPs or are somehow not in interrupt
2629 * context, provide the next best thing, the user IP.
2630 */
2631 if ((counter->hw_event.exclude_kernel || !regs) &&
2632 !counter->hw_event.exclude_user)
2633 regs = task_pt_regs(current);
2634
Peter Zijlstraf6c7d5f2009-04-06 11:45:04 +02002635 if (regs) {
Peter Zijlstra78f13e92009-04-08 15:01:33 +02002636 if (perf_counter_overflow(counter, 0, regs, 0))
Peter Zijlstraf6c7d5f2009-04-06 11:45:04 +02002637 ret = HRTIMER_NORESTART;
2638 }
Peter Zijlstrad6d020e2009-03-13 12:21:35 +01002639
Peter Zijlstra60db5e02009-05-15 15:19:28 +02002640 period = max_t(u64, 10000, counter->hw.irq_period);
2641 hrtimer_forward_now(hrtimer, ns_to_ktime(period));
Peter Zijlstrad6d020e2009-03-13 12:21:35 +01002642
Peter Zijlstraf6c7d5f2009-04-06 11:45:04 +02002643 return ret;
Peter Zijlstrad6d020e2009-03-13 12:21:35 +01002644}
2645
2646static void perf_swcounter_overflow(struct perf_counter *counter,
Peter Zijlstra78f13e92009-04-08 15:01:33 +02002647 int nmi, struct pt_regs *regs, u64 addr)
Peter Zijlstrad6d020e2009-03-13 12:21:35 +01002648{
Peter Zijlstrab8e83512009-03-19 20:26:18 +01002649 perf_swcounter_update(counter);
2650 perf_swcounter_set_period(counter);
Peter Zijlstra78f13e92009-04-08 15:01:33 +02002651 if (perf_counter_overflow(counter, nmi, regs, addr))
Peter Zijlstraf6c7d5f2009-04-06 11:45:04 +02002652 /* soft-disable the counter */
2653 ;
2654
Peter Zijlstrad6d020e2009-03-13 12:21:35 +01002655}
2656
Peter Zijlstra15dbf272009-03-13 12:21:32 +01002657static int perf_swcounter_match(struct perf_counter *counter,
Peter Zijlstrab8e83512009-03-19 20:26:18 +01002658 enum perf_event_types type,
2659 u32 event, struct pt_regs *regs)
Peter Zijlstra15dbf272009-03-13 12:21:32 +01002660{
2661 if (counter->state != PERF_COUNTER_STATE_ACTIVE)
2662 return 0;
2663
Peter Zijlstraf4a2deb2009-03-23 18:22:06 +01002664 if (perf_event_raw(&counter->hw_event))
Peter Zijlstra15dbf272009-03-13 12:21:32 +01002665 return 0;
2666
Peter Zijlstraf4a2deb2009-03-23 18:22:06 +01002667 if (perf_event_type(&counter->hw_event) != type)
Peter Zijlstrab8e83512009-03-19 20:26:18 +01002668 return 0;
2669
Peter Zijlstraf4a2deb2009-03-23 18:22:06 +01002670 if (perf_event_id(&counter->hw_event) != event)
Peter Zijlstra15dbf272009-03-13 12:21:32 +01002671 return 0;
2672
2673 if (counter->hw_event.exclude_user && user_mode(regs))
2674 return 0;
2675
2676 if (counter->hw_event.exclude_kernel && !user_mode(regs))
2677 return 0;
2678
2679 return 1;
2680}
2681
Peter Zijlstrad6d020e2009-03-13 12:21:35 +01002682static void perf_swcounter_add(struct perf_counter *counter, u64 nr,
Peter Zijlstra78f13e92009-04-08 15:01:33 +02002683 int nmi, struct pt_regs *regs, u64 addr)
Peter Zijlstrad6d020e2009-03-13 12:21:35 +01002684{
2685 int neg = atomic64_add_negative(nr, &counter->hw.count);
2686 if (counter->hw.irq_period && !neg)
Peter Zijlstra78f13e92009-04-08 15:01:33 +02002687 perf_swcounter_overflow(counter, nmi, regs, addr);
Peter Zijlstrad6d020e2009-03-13 12:21:35 +01002688}
2689
Peter Zijlstra15dbf272009-03-13 12:21:32 +01002690static void perf_swcounter_ctx_event(struct perf_counter_context *ctx,
Peter Zijlstrab8e83512009-03-19 20:26:18 +01002691 enum perf_event_types type, u32 event,
Peter Zijlstra78f13e92009-04-08 15:01:33 +02002692 u64 nr, int nmi, struct pt_regs *regs,
2693 u64 addr)
Peter Zijlstra15dbf272009-03-13 12:21:32 +01002694{
2695 struct perf_counter *counter;
Peter Zijlstra15dbf272009-03-13 12:21:32 +01002696
Peter Zijlstra01ef09d2009-03-19 20:26:11 +01002697 if (system_state != SYSTEM_RUNNING || list_empty(&ctx->event_list))
Peter Zijlstra15dbf272009-03-13 12:21:32 +01002698 return;
2699
Peter Zijlstra592903c2009-03-13 12:21:36 +01002700 rcu_read_lock();
2701 list_for_each_entry_rcu(counter, &ctx->event_list, event_entry) {
Peter Zijlstrab8e83512009-03-19 20:26:18 +01002702 if (perf_swcounter_match(counter, type, event, regs))
Peter Zijlstra78f13e92009-04-08 15:01:33 +02002703 perf_swcounter_add(counter, nr, nmi, regs, addr);
Peter Zijlstra15dbf272009-03-13 12:21:32 +01002704 }
Peter Zijlstra592903c2009-03-13 12:21:36 +01002705 rcu_read_unlock();
Peter Zijlstra15dbf272009-03-13 12:21:32 +01002706}
2707
Peter Zijlstra96f6d442009-03-23 18:22:07 +01002708static int *perf_swcounter_recursion_context(struct perf_cpu_context *cpuctx)
2709{
2710 if (in_nmi())
2711 return &cpuctx->recursion[3];
2712
2713 if (in_irq())
2714 return &cpuctx->recursion[2];
2715
2716 if (in_softirq())
2717 return &cpuctx->recursion[1];
2718
2719 return &cpuctx->recursion[0];
2720}
2721
Peter Zijlstrab8e83512009-03-19 20:26:18 +01002722static void __perf_swcounter_event(enum perf_event_types type, u32 event,
Peter Zijlstra78f13e92009-04-08 15:01:33 +02002723 u64 nr, int nmi, struct pt_regs *regs,
2724 u64 addr)
Peter Zijlstra15dbf272009-03-13 12:21:32 +01002725{
2726 struct perf_cpu_context *cpuctx = &get_cpu_var(perf_cpu_context);
Peter Zijlstra96f6d442009-03-23 18:22:07 +01002727 int *recursion = perf_swcounter_recursion_context(cpuctx);
2728
2729 if (*recursion)
2730 goto out;
2731
2732 (*recursion)++;
2733 barrier();
Peter Zijlstra15dbf272009-03-13 12:21:32 +01002734
Peter Zijlstra78f13e92009-04-08 15:01:33 +02002735 perf_swcounter_ctx_event(&cpuctx->ctx, type, event,
2736 nr, nmi, regs, addr);
Peter Zijlstrab8e83512009-03-19 20:26:18 +01002737 if (cpuctx->task_ctx) {
2738 perf_swcounter_ctx_event(cpuctx->task_ctx, type, event,
Peter Zijlstra78f13e92009-04-08 15:01:33 +02002739 nr, nmi, regs, addr);
Peter Zijlstrab8e83512009-03-19 20:26:18 +01002740 }
Peter Zijlstra15dbf272009-03-13 12:21:32 +01002741
Peter Zijlstra96f6d442009-03-23 18:22:07 +01002742 barrier();
2743 (*recursion)--;
2744
2745out:
Peter Zijlstra15dbf272009-03-13 12:21:32 +01002746 put_cpu_var(perf_cpu_context);
2747}
2748
Peter Zijlstra78f13e92009-04-08 15:01:33 +02002749void
2750perf_swcounter_event(u32 event, u64 nr, int nmi, struct pt_regs *regs, u64 addr)
Peter Zijlstrab8e83512009-03-19 20:26:18 +01002751{
Peter Zijlstra78f13e92009-04-08 15:01:33 +02002752 __perf_swcounter_event(PERF_TYPE_SOFTWARE, event, nr, nmi, regs, addr);
Peter Zijlstrab8e83512009-03-19 20:26:18 +01002753}
2754
Peter Zijlstra15dbf272009-03-13 12:21:32 +01002755static void perf_swcounter_read(struct perf_counter *counter)
2756{
2757 perf_swcounter_update(counter);
2758}
2759
2760static int perf_swcounter_enable(struct perf_counter *counter)
2761{
2762 perf_swcounter_set_period(counter);
2763 return 0;
2764}
2765
2766static void perf_swcounter_disable(struct perf_counter *counter)
2767{
2768 perf_swcounter_update(counter);
2769}
2770
Robert Richter4aeb0b42009-04-29 12:47:03 +02002771static const struct pmu perf_ops_generic = {
Peter Zijlstraac17dc82009-03-13 12:21:34 +01002772 .enable = perf_swcounter_enable,
2773 .disable = perf_swcounter_disable,
2774 .read = perf_swcounter_read,
2775};
2776
Peter Zijlstra15dbf272009-03-13 12:21:32 +01002777/*
2778 * Software counter: cpu wall time clock
2779 */
2780
Paul Mackerras9abf8a02009-01-09 16:26:43 +11002781static void cpu_clock_perf_counter_update(struct perf_counter *counter)
2782{
2783 int cpu = raw_smp_processor_id();
2784 s64 prev;
2785 u64 now;
2786
2787 now = cpu_clock(cpu);
2788 prev = atomic64_read(&counter->hw.prev_count);
2789 atomic64_set(&counter->hw.prev_count, now);
2790 atomic64_add(now - prev, &counter->count);
2791}
2792
Peter Zijlstrad6d020e2009-03-13 12:21:35 +01002793static int cpu_clock_perf_counter_enable(struct perf_counter *counter)
2794{
2795 struct hw_perf_counter *hwc = &counter->hw;
2796 int cpu = raw_smp_processor_id();
2797
2798 atomic64_set(&hwc->prev_count, cpu_clock(cpu));
Peter Zijlstra039fc912009-03-13 16:43:47 +01002799 hrtimer_init(&hwc->hrtimer, CLOCK_MONOTONIC, HRTIMER_MODE_REL);
2800 hwc->hrtimer.function = perf_swcounter_hrtimer;
Peter Zijlstrad6d020e2009-03-13 12:21:35 +01002801 if (hwc->irq_period) {
Peter Zijlstra60db5e02009-05-15 15:19:28 +02002802 u64 period = max_t(u64, 10000, hwc->irq_period);
Peter Zijlstrad6d020e2009-03-13 12:21:35 +01002803 __hrtimer_start_range_ns(&hwc->hrtimer,
Peter Zijlstra60db5e02009-05-15 15:19:28 +02002804 ns_to_ktime(period), 0,
Peter Zijlstrad6d020e2009-03-13 12:21:35 +01002805 HRTIMER_MODE_REL, 0);
2806 }
2807
2808 return 0;
2809}
2810
Ingo Molnar5c92d122008-12-11 13:21:10 +01002811static void cpu_clock_perf_counter_disable(struct perf_counter *counter)
2812{
Peter Zijlstrab986d7e2009-05-20 12:21:21 +02002813 if (counter->hw.irq_period)
2814 hrtimer_cancel(&counter->hw.hrtimer);
Paul Mackerras9abf8a02009-01-09 16:26:43 +11002815 cpu_clock_perf_counter_update(counter);
Ingo Molnar5c92d122008-12-11 13:21:10 +01002816}
2817
2818static void cpu_clock_perf_counter_read(struct perf_counter *counter)
2819{
Paul Mackerras9abf8a02009-01-09 16:26:43 +11002820 cpu_clock_perf_counter_update(counter);
Ingo Molnar5c92d122008-12-11 13:21:10 +01002821}
2822
Robert Richter4aeb0b42009-04-29 12:47:03 +02002823static const struct pmu perf_ops_cpu_clock = {
Ingo Molnar76715812008-12-17 14:20:28 +01002824 .enable = cpu_clock_perf_counter_enable,
2825 .disable = cpu_clock_perf_counter_disable,
2826 .read = cpu_clock_perf_counter_read,
Ingo Molnar5c92d122008-12-11 13:21:10 +01002827};
2828
Ingo Molnaraa9c4c02008-12-17 14:10:57 +01002829/*
Peter Zijlstra15dbf272009-03-13 12:21:32 +01002830 * Software counter: task time clock
2831 */
2832
Peter Zijlstrae30e08f2009-04-08 15:01:25 +02002833static void task_clock_perf_counter_update(struct perf_counter *counter, u64 now)
Ingo Molnarbae43c92008-12-11 14:03:20 +01002834{
Peter Zijlstrae30e08f2009-04-08 15:01:25 +02002835 u64 prev;
Ingo Molnar8cb391e2008-12-14 12:22:31 +01002836 s64 delta;
Ingo Molnarbae43c92008-12-11 14:03:20 +01002837
Peter Zijlstraa39d6f22009-04-06 11:45:11 +02002838 prev = atomic64_xchg(&counter->hw.prev_count, now);
Ingo Molnar8cb391e2008-12-14 12:22:31 +01002839 delta = now - prev;
Ingo Molnar8cb391e2008-12-14 12:22:31 +01002840 atomic64_add(delta, &counter->count);
Ingo Molnarbae43c92008-12-11 14:03:20 +01002841}
2842
Ingo Molnar95cdd2e2008-12-21 13:50:42 +01002843static int task_clock_perf_counter_enable(struct perf_counter *counter)
Ingo Molnar8cb391e2008-12-14 12:22:31 +01002844{
Peter Zijlstrad6d020e2009-03-13 12:21:35 +01002845 struct hw_perf_counter *hwc = &counter->hw;
Peter Zijlstraa39d6f22009-04-06 11:45:11 +02002846 u64 now;
Peter Zijlstrad6d020e2009-03-13 12:21:35 +01002847
Peter Zijlstraa39d6f22009-04-06 11:45:11 +02002848 now = counter->ctx->time;
2849
2850 atomic64_set(&hwc->prev_count, now);
Peter Zijlstra039fc912009-03-13 16:43:47 +01002851 hrtimer_init(&hwc->hrtimer, CLOCK_MONOTONIC, HRTIMER_MODE_REL);
2852 hwc->hrtimer.function = perf_swcounter_hrtimer;
Peter Zijlstrad6d020e2009-03-13 12:21:35 +01002853 if (hwc->irq_period) {
Peter Zijlstra60db5e02009-05-15 15:19:28 +02002854 u64 period = max_t(u64, 10000, hwc->irq_period);
Peter Zijlstrad6d020e2009-03-13 12:21:35 +01002855 __hrtimer_start_range_ns(&hwc->hrtimer,
Peter Zijlstra60db5e02009-05-15 15:19:28 +02002856 ns_to_ktime(period), 0,
Peter Zijlstrad6d020e2009-03-13 12:21:35 +01002857 HRTIMER_MODE_REL, 0);
2858 }
Ingo Molnar95cdd2e2008-12-21 13:50:42 +01002859
2860 return 0;
Ingo Molnar8cb391e2008-12-14 12:22:31 +01002861}
2862
2863static void task_clock_perf_counter_disable(struct perf_counter *counter)
2864{
Peter Zijlstrab986d7e2009-05-20 12:21:21 +02002865 if (counter->hw.irq_period)
2866 hrtimer_cancel(&counter->hw.hrtimer);
Peter Zijlstrae30e08f2009-04-08 15:01:25 +02002867 task_clock_perf_counter_update(counter, counter->ctx->time);
2868
Peter Zijlstrad6d020e2009-03-13 12:21:35 +01002869}
Ingo Molnaraa9c4c02008-12-17 14:10:57 +01002870
Peter Zijlstrad6d020e2009-03-13 12:21:35 +01002871static void task_clock_perf_counter_read(struct perf_counter *counter)
2872{
Peter Zijlstrae30e08f2009-04-08 15:01:25 +02002873 u64 time;
2874
2875 if (!in_nmi()) {
2876 update_context_time(counter->ctx);
2877 time = counter->ctx->time;
2878 } else {
2879 u64 now = perf_clock();
2880 u64 delta = now - counter->ctx->timestamp;
2881 time = counter->ctx->time + delta;
2882 }
2883
2884 task_clock_perf_counter_update(counter, time);
Ingo Molnarbae43c92008-12-11 14:03:20 +01002885}
2886
Robert Richter4aeb0b42009-04-29 12:47:03 +02002887static const struct pmu perf_ops_task_clock = {
Ingo Molnar76715812008-12-17 14:20:28 +01002888 .enable = task_clock_perf_counter_enable,
2889 .disable = task_clock_perf_counter_disable,
2890 .read = task_clock_perf_counter_read,
Ingo Molnarbae43c92008-12-11 14:03:20 +01002891};
2892
Peter Zijlstra15dbf272009-03-13 12:21:32 +01002893/*
Peter Zijlstra15dbf272009-03-13 12:21:32 +01002894 * Software counter: cpu migrations
2895 */
2896
Paul Mackerras23a185c2009-02-09 22:42:47 +11002897static inline u64 get_cpu_migrations(struct perf_counter *counter)
Ingo Molnar6c594c22008-12-14 12:34:15 +01002898{
Paul Mackerras23a185c2009-02-09 22:42:47 +11002899 struct task_struct *curr = counter->ctx->task;
2900
2901 if (curr)
2902 return curr->se.nr_migrations;
2903 return cpu_nr_migrations(smp_processor_id());
Ingo Molnar6c594c22008-12-14 12:34:15 +01002904}
2905
2906static void cpu_migrations_perf_counter_update(struct perf_counter *counter)
2907{
2908 u64 prev, now;
2909 s64 delta;
2910
2911 prev = atomic64_read(&counter->hw.prev_count);
Paul Mackerras23a185c2009-02-09 22:42:47 +11002912 now = get_cpu_migrations(counter);
Ingo Molnar6c594c22008-12-14 12:34:15 +01002913
2914 atomic64_set(&counter->hw.prev_count, now);
2915
2916 delta = now - prev;
Ingo Molnar6c594c22008-12-14 12:34:15 +01002917
2918 atomic64_add(delta, &counter->count);
2919}
2920
2921static void cpu_migrations_perf_counter_read(struct perf_counter *counter)
2922{
2923 cpu_migrations_perf_counter_update(counter);
2924}
2925
Ingo Molnar95cdd2e2008-12-21 13:50:42 +01002926static int cpu_migrations_perf_counter_enable(struct perf_counter *counter)
Ingo Molnar6c594c22008-12-14 12:34:15 +01002927{
Paul Mackerrasc07c99b2009-02-13 22:10:34 +11002928 if (counter->prev_state <= PERF_COUNTER_STATE_OFF)
2929 atomic64_set(&counter->hw.prev_count,
2930 get_cpu_migrations(counter));
Ingo Molnar95cdd2e2008-12-21 13:50:42 +01002931 return 0;
Ingo Molnar6c594c22008-12-14 12:34:15 +01002932}
2933
2934static void cpu_migrations_perf_counter_disable(struct perf_counter *counter)
2935{
2936 cpu_migrations_perf_counter_update(counter);
2937}
2938
Robert Richter4aeb0b42009-04-29 12:47:03 +02002939static const struct pmu perf_ops_cpu_migrations = {
Ingo Molnar76715812008-12-17 14:20:28 +01002940 .enable = cpu_migrations_perf_counter_enable,
2941 .disable = cpu_migrations_perf_counter_disable,
2942 .read = cpu_migrations_perf_counter_read,
Ingo Molnar6c594c22008-12-14 12:34:15 +01002943};
2944
Peter Zijlstrae077df42009-03-19 20:26:17 +01002945#ifdef CONFIG_EVENT_PROFILE
2946void perf_tpcounter_event(int event_id)
2947{
Peter Zijlstrab8e83512009-03-19 20:26:18 +01002948 struct pt_regs *regs = get_irq_regs();
2949
2950 if (!regs)
2951 regs = task_pt_regs(current);
2952
Peter Zijlstra78f13e92009-04-08 15:01:33 +02002953 __perf_swcounter_event(PERF_TYPE_TRACEPOINT, event_id, 1, 1, regs, 0);
Peter Zijlstrae077df42009-03-19 20:26:17 +01002954}
Steven Whitehouseff7b1b42009-04-15 16:55:05 +01002955EXPORT_SYMBOL_GPL(perf_tpcounter_event);
Peter Zijlstrae077df42009-03-19 20:26:17 +01002956
2957extern int ftrace_profile_enable(int);
2958extern void ftrace_profile_disable(int);
2959
2960static void tp_perf_counter_destroy(struct perf_counter *counter)
2961{
Peter Zijlstraf4a2deb2009-03-23 18:22:06 +01002962 ftrace_profile_disable(perf_event_id(&counter->hw_event));
Peter Zijlstrae077df42009-03-19 20:26:17 +01002963}
2964
Robert Richter4aeb0b42009-04-29 12:47:03 +02002965static const struct pmu *tp_perf_counter_init(struct perf_counter *counter)
Peter Zijlstrae077df42009-03-19 20:26:17 +01002966{
Peter Zijlstraf4a2deb2009-03-23 18:22:06 +01002967 int event_id = perf_event_id(&counter->hw_event);
Peter Zijlstrae077df42009-03-19 20:26:17 +01002968 int ret;
2969
2970 ret = ftrace_profile_enable(event_id);
2971 if (ret)
2972 return NULL;
2973
2974 counter->destroy = tp_perf_counter_destroy;
Peter Zijlstrab8e83512009-03-19 20:26:18 +01002975 counter->hw.irq_period = counter->hw_event.irq_period;
Peter Zijlstrae077df42009-03-19 20:26:17 +01002976
2977 return &perf_ops_generic;
2978}
2979#else
Robert Richter4aeb0b42009-04-29 12:47:03 +02002980static const struct pmu *tp_perf_counter_init(struct perf_counter *counter)
Peter Zijlstrae077df42009-03-19 20:26:17 +01002981{
2982 return NULL;
2983}
2984#endif
2985
Robert Richter4aeb0b42009-04-29 12:47:03 +02002986static const struct pmu *sw_perf_counter_init(struct perf_counter *counter)
Ingo Molnar5c92d122008-12-11 13:21:10 +01002987{
Robert Richter4aeb0b42009-04-29 12:47:03 +02002988 const struct pmu *pmu = NULL;
Ingo Molnar5c92d122008-12-11 13:21:10 +01002989
Paul Mackerras0475f9e2009-02-11 14:35:35 +11002990 /*
2991 * Software counters (currently) can't in general distinguish
2992 * between user, kernel and hypervisor events.
2993 * However, context switches and cpu migrations are considered
2994 * to be kernel events, and page faults are never hypervisor
2995 * events.
2996 */
Peter Zijlstraf4a2deb2009-03-23 18:22:06 +01002997 switch (perf_event_id(&counter->hw_event)) {
Ingo Molnar5c92d122008-12-11 13:21:10 +01002998 case PERF_COUNT_CPU_CLOCK:
Robert Richter4aeb0b42009-04-29 12:47:03 +02002999 pmu = &perf_ops_cpu_clock;
Peter Zijlstrad6d020e2009-03-13 12:21:35 +01003000
Ingo Molnar5c92d122008-12-11 13:21:10 +01003001 break;
Ingo Molnarbae43c92008-12-11 14:03:20 +01003002 case PERF_COUNT_TASK_CLOCK:
Paul Mackerras23a185c2009-02-09 22:42:47 +11003003 /*
3004 * If the user instantiates this as a per-cpu counter,
3005 * use the cpu_clock counter instead.
3006 */
3007 if (counter->ctx->task)
Robert Richter4aeb0b42009-04-29 12:47:03 +02003008 pmu = &perf_ops_task_clock;
Paul Mackerras23a185c2009-02-09 22:42:47 +11003009 else
Robert Richter4aeb0b42009-04-29 12:47:03 +02003010 pmu = &perf_ops_cpu_clock;
Peter Zijlstrad6d020e2009-03-13 12:21:35 +01003011
Ingo Molnarbae43c92008-12-11 14:03:20 +01003012 break;
Ingo Molnare06c61a2008-12-14 14:44:31 +01003013 case PERF_COUNT_PAGE_FAULTS:
Peter Zijlstraac17dc82009-03-13 12:21:34 +01003014 case PERF_COUNT_PAGE_FAULTS_MIN:
3015 case PERF_COUNT_PAGE_FAULTS_MAJ:
Ingo Molnar5d6a27d2008-12-14 12:28:33 +01003016 case PERF_COUNT_CONTEXT_SWITCHES:
Robert Richter4aeb0b42009-04-29 12:47:03 +02003017 pmu = &perf_ops_generic;
Ingo Molnar5d6a27d2008-12-14 12:28:33 +01003018 break;
Ingo Molnar6c594c22008-12-14 12:34:15 +01003019 case PERF_COUNT_CPU_MIGRATIONS:
Paul Mackerras0475f9e2009-02-11 14:35:35 +11003020 if (!counter->hw_event.exclude_kernel)
Robert Richter4aeb0b42009-04-29 12:47:03 +02003021 pmu = &perf_ops_cpu_migrations;
Ingo Molnar6c594c22008-12-14 12:34:15 +01003022 break;
Ingo Molnar5c92d122008-12-11 13:21:10 +01003023 }
Peter Zijlstra15dbf272009-03-13 12:21:32 +01003024
Robert Richter4aeb0b42009-04-29 12:47:03 +02003025 return pmu;
Ingo Molnar5c92d122008-12-11 13:21:10 +01003026}
3027
Thomas Gleixner0793a612008-12-04 20:12:29 +01003028/*
3029 * Allocate and initialize a counter structure
3030 */
3031static struct perf_counter *
Ingo Molnar04289bb2008-12-11 08:38:42 +01003032perf_counter_alloc(struct perf_counter_hw_event *hw_event,
3033 int cpu,
Paul Mackerras23a185c2009-02-09 22:42:47 +11003034 struct perf_counter_context *ctx,
Ingo Molnar9b51f662008-12-12 13:49:45 +01003035 struct perf_counter *group_leader,
3036 gfp_t gfpflags)
Thomas Gleixner0793a612008-12-04 20:12:29 +01003037{
Robert Richter4aeb0b42009-04-29 12:47:03 +02003038 const struct pmu *pmu;
Ingo Molnar621a01e2008-12-11 12:46:46 +01003039 struct perf_counter *counter;
Peter Zijlstra60db5e02009-05-15 15:19:28 +02003040 struct hw_perf_counter *hwc;
Paul Mackerrasd5d2bc0d2009-03-30 19:07:08 +02003041 long err;
Thomas Gleixner0793a612008-12-04 20:12:29 +01003042
Ingo Molnar9b51f662008-12-12 13:49:45 +01003043 counter = kzalloc(sizeof(*counter), gfpflags);
Thomas Gleixner0793a612008-12-04 20:12:29 +01003044 if (!counter)
Paul Mackerrasd5d2bc0d2009-03-30 19:07:08 +02003045 return ERR_PTR(-ENOMEM);
Thomas Gleixner0793a612008-12-04 20:12:29 +01003046
Ingo Molnar04289bb2008-12-11 08:38:42 +01003047 /*
3048 * Single counters are their own group leaders, with an
3049 * empty sibling list:
3050 */
3051 if (!group_leader)
3052 group_leader = counter;
3053
Peter Zijlstrafccc7142009-05-23 18:28:56 +02003054 mutex_init(&counter->child_mutex);
3055 INIT_LIST_HEAD(&counter->child_list);
3056
Ingo Molnar04289bb2008-12-11 08:38:42 +01003057 INIT_LIST_HEAD(&counter->list_entry);
Peter Zijlstra592903c2009-03-13 12:21:36 +01003058 INIT_LIST_HEAD(&counter->event_entry);
Ingo Molnar04289bb2008-12-11 08:38:42 +01003059 INIT_LIST_HEAD(&counter->sibling_list);
Thomas Gleixner0793a612008-12-04 20:12:29 +01003060 init_waitqueue_head(&counter->waitq);
3061
Peter Zijlstra7b732a72009-03-23 18:22:10 +01003062 mutex_init(&counter->mmap_mutex);
3063
Ingo Molnar9f66a382008-12-10 12:33:23 +01003064 counter->cpu = cpu;
3065 counter->hw_event = *hw_event;
Ingo Molnar04289bb2008-12-11 08:38:42 +01003066 counter->group_leader = group_leader;
Robert Richter4aeb0b42009-04-29 12:47:03 +02003067 counter->pmu = NULL;
Paul Mackerras23a185c2009-02-09 22:42:47 +11003068 counter->ctx = ctx;
Paul Mackerrasa63eaf32009-05-22 14:17:31 +10003069 get_ctx(ctx);
Ingo Molnar621a01e2008-12-11 12:46:46 +01003070
Ingo Molnar235c7fc2008-12-21 14:43:25 +01003071 counter->state = PERF_COUNTER_STATE_INACTIVE;
Ingo Molnara86ed502008-12-17 00:43:10 +01003072 if (hw_event->disabled)
3073 counter->state = PERF_COUNTER_STATE_OFF;
3074
Robert Richter4aeb0b42009-04-29 12:47:03 +02003075 pmu = NULL;
Peter Zijlstrab8e83512009-03-19 20:26:18 +01003076
Peter Zijlstra60db5e02009-05-15 15:19:28 +02003077 hwc = &counter->hw;
3078 if (hw_event->freq && hw_event->irq_freq)
Peter Zijlstra2e569d32009-05-15 15:37:47 +02003079 hwc->irq_period = div64_u64(TICK_NSEC, hw_event->irq_freq);
Peter Zijlstra60db5e02009-05-15 15:19:28 +02003080 else
3081 hwc->irq_period = hw_event->irq_period;
3082
Peter Zijlstra2023b352009-05-05 17:50:26 +02003083 /*
3084 * we currently do not support PERF_RECORD_GROUP on inherited counters
3085 */
3086 if (hw_event->inherit && (hw_event->record_type & PERF_RECORD_GROUP))
3087 goto done;
3088
Peter Zijlstraf4a2deb2009-03-23 18:22:06 +01003089 if (perf_event_raw(hw_event)) {
Robert Richter4aeb0b42009-04-29 12:47:03 +02003090 pmu = hw_perf_counter_init(counter);
Peter Zijlstraf4a2deb2009-03-23 18:22:06 +01003091 goto done;
3092 }
3093
3094 switch (perf_event_type(hw_event)) {
Peter Zijlstrab8e83512009-03-19 20:26:18 +01003095 case PERF_TYPE_HARDWARE:
Robert Richter4aeb0b42009-04-29 12:47:03 +02003096 pmu = hw_perf_counter_init(counter);
Peter Zijlstrab8e83512009-03-19 20:26:18 +01003097 break;
3098
3099 case PERF_TYPE_SOFTWARE:
Robert Richter4aeb0b42009-04-29 12:47:03 +02003100 pmu = sw_perf_counter_init(counter);
Peter Zijlstrab8e83512009-03-19 20:26:18 +01003101 break;
3102
3103 case PERF_TYPE_TRACEPOINT:
Robert Richter4aeb0b42009-04-29 12:47:03 +02003104 pmu = tp_perf_counter_init(counter);
Peter Zijlstrab8e83512009-03-19 20:26:18 +01003105 break;
3106 }
Peter Zijlstraf4a2deb2009-03-23 18:22:06 +01003107done:
Paul Mackerrasd5d2bc0d2009-03-30 19:07:08 +02003108 err = 0;
Robert Richter4aeb0b42009-04-29 12:47:03 +02003109 if (!pmu)
Paul Mackerrasd5d2bc0d2009-03-30 19:07:08 +02003110 err = -EINVAL;
Robert Richter4aeb0b42009-04-29 12:47:03 +02003111 else if (IS_ERR(pmu))
3112 err = PTR_ERR(pmu);
Paul Mackerrasd5d2bc0d2009-03-30 19:07:08 +02003113
3114 if (err) {
3115 kfree(counter);
3116 return ERR_PTR(err);
3117 }
3118
Robert Richter4aeb0b42009-04-29 12:47:03 +02003119 counter->pmu = pmu;
Thomas Gleixner0793a612008-12-04 20:12:29 +01003120
Peter Zijlstra7fc23a52009-05-08 18:52:21 +02003121 atomic_inc(&nr_counters);
Peter Zijlstra9ee318a2009-04-09 10:53:44 +02003122 if (counter->hw_event.mmap)
3123 atomic_inc(&nr_mmap_tracking);
3124 if (counter->hw_event.munmap)
3125 atomic_inc(&nr_munmap_tracking);
3126 if (counter->hw_event.comm)
3127 atomic_inc(&nr_comm_tracking);
3128
Thomas Gleixner0793a612008-12-04 20:12:29 +01003129 return counter;
3130}
3131
3132/**
Paul Mackerras2743a5b2009-03-04 20:36:51 +11003133 * sys_perf_counter_open - open a performance counter, associate it to a task/cpu
Ingo Molnar9f66a382008-12-10 12:33:23 +01003134 *
3135 * @hw_event_uptr: event type attributes for monitoring/sampling
Thomas Gleixner0793a612008-12-04 20:12:29 +01003136 * @pid: target pid
Ingo Molnar9f66a382008-12-10 12:33:23 +01003137 * @cpu: target cpu
3138 * @group_fd: group leader counter fd
Thomas Gleixner0793a612008-12-04 20:12:29 +01003139 */
Paul Mackerras2743a5b2009-03-04 20:36:51 +11003140SYSCALL_DEFINE5(perf_counter_open,
Paul Mackerrasf3dfd262009-02-26 22:43:46 +11003141 const struct perf_counter_hw_event __user *, hw_event_uptr,
Paul Mackerras2743a5b2009-03-04 20:36:51 +11003142 pid_t, pid, int, cpu, int, group_fd, unsigned long, flags)
Thomas Gleixner0793a612008-12-04 20:12:29 +01003143{
Ingo Molnar04289bb2008-12-11 08:38:42 +01003144 struct perf_counter *counter, *group_leader;
Ingo Molnar9f66a382008-12-10 12:33:23 +01003145 struct perf_counter_hw_event hw_event;
Ingo Molnar04289bb2008-12-11 08:38:42 +01003146 struct perf_counter_context *ctx;
Ingo Molnar9b51f662008-12-12 13:49:45 +01003147 struct file *counter_file = NULL;
Ingo Molnar04289bb2008-12-11 08:38:42 +01003148 struct file *group_file = NULL;
3149 int fput_needed = 0;
Ingo Molnar9b51f662008-12-12 13:49:45 +01003150 int fput_needed2 = 0;
Thomas Gleixner0793a612008-12-04 20:12:29 +01003151 int ret;
3152
Paul Mackerras2743a5b2009-03-04 20:36:51 +11003153 /* for future expandability... */
3154 if (flags)
3155 return -EINVAL;
3156
Ingo Molnar9f66a382008-12-10 12:33:23 +01003157 if (copy_from_user(&hw_event, hw_event_uptr, sizeof(hw_event)) != 0)
Thomas Gleixnereab656a2008-12-08 19:26:59 +01003158 return -EFAULT;
3159
Ingo Molnar04289bb2008-12-11 08:38:42 +01003160 /*
Ingo Molnarccff2862008-12-11 11:26:29 +01003161 * Get the target context (task or percpu):
3162 */
3163 ctx = find_get_context(pid, cpu);
3164 if (IS_ERR(ctx))
3165 return PTR_ERR(ctx);
3166
3167 /*
3168 * Look up the group leader (we will attach this counter to it):
Ingo Molnar04289bb2008-12-11 08:38:42 +01003169 */
3170 group_leader = NULL;
3171 if (group_fd != -1) {
3172 ret = -EINVAL;
3173 group_file = fget_light(group_fd, &fput_needed);
3174 if (!group_file)
Ingo Molnarccff2862008-12-11 11:26:29 +01003175 goto err_put_context;
Ingo Molnar04289bb2008-12-11 08:38:42 +01003176 if (group_file->f_op != &perf_fops)
Ingo Molnarccff2862008-12-11 11:26:29 +01003177 goto err_put_context;
Ingo Molnar04289bb2008-12-11 08:38:42 +01003178
3179 group_leader = group_file->private_data;
3180 /*
Ingo Molnarccff2862008-12-11 11:26:29 +01003181 * Do not allow a recursive hierarchy (this new sibling
3182 * becoming part of another group-sibling):
Ingo Molnar04289bb2008-12-11 08:38:42 +01003183 */
Ingo Molnarccff2862008-12-11 11:26:29 +01003184 if (group_leader->group_leader != group_leader)
3185 goto err_put_context;
3186 /*
3187 * Do not allow to attach to a group in a different
3188 * task or CPU context:
3189 */
3190 if (group_leader->ctx != ctx)
3191 goto err_put_context;
Paul Mackerras3b6f9e52009-01-14 21:00:30 +11003192 /*
3193 * Only a group leader can be exclusive or pinned
3194 */
3195 if (hw_event.exclusive || hw_event.pinned)
3196 goto err_put_context;
Ingo Molnar04289bb2008-12-11 08:38:42 +01003197 }
3198
Paul Mackerras23a185c2009-02-09 22:42:47 +11003199 counter = perf_counter_alloc(&hw_event, cpu, ctx, group_leader,
3200 GFP_KERNEL);
Paul Mackerrasd5d2bc0d2009-03-30 19:07:08 +02003201 ret = PTR_ERR(counter);
3202 if (IS_ERR(counter))
Thomas Gleixner0793a612008-12-04 20:12:29 +01003203 goto err_put_context;
3204
Thomas Gleixner0793a612008-12-04 20:12:29 +01003205 ret = anon_inode_getfd("[perf_counter]", &perf_fops, counter, 0);
3206 if (ret < 0)
Ingo Molnar9b51f662008-12-12 13:49:45 +01003207 goto err_free_put_context;
3208
3209 counter_file = fget_light(ret, &fput_needed2);
3210 if (!counter_file)
3211 goto err_free_put_context;
3212
3213 counter->filp = counter_file;
Paul Mackerrasd859e292009-01-17 18:10:22 +11003214 mutex_lock(&ctx->mutex);
Ingo Molnar9b51f662008-12-12 13:49:45 +01003215 perf_install_in_context(ctx, counter, cpu);
Paul Mackerrasd859e292009-01-17 18:10:22 +11003216 mutex_unlock(&ctx->mutex);
Ingo Molnar9b51f662008-12-12 13:49:45 +01003217
Peter Zijlstra082ff5a2009-05-23 18:29:00 +02003218 counter->owner = current;
3219 get_task_struct(current);
3220 mutex_lock(&current->perf_counter_mutex);
3221 list_add_tail(&counter->owner_entry, &current->perf_counter_list);
3222 mutex_unlock(&current->perf_counter_mutex);
3223
Ingo Molnar9b51f662008-12-12 13:49:45 +01003224 fput_light(counter_file, fput_needed2);
Thomas Gleixner0793a612008-12-04 20:12:29 +01003225
Ingo Molnar04289bb2008-12-11 08:38:42 +01003226out_fput:
3227 fput_light(group_file, fput_needed);
3228
Thomas Gleixner0793a612008-12-04 20:12:29 +01003229 return ret;
3230
Ingo Molnar9b51f662008-12-12 13:49:45 +01003231err_free_put_context:
Thomas Gleixner0793a612008-12-04 20:12:29 +01003232 kfree(counter);
3233
3234err_put_context:
3235 put_context(ctx);
3236
Ingo Molnar04289bb2008-12-11 08:38:42 +01003237 goto out_fput;
Thomas Gleixner0793a612008-12-04 20:12:29 +01003238}
3239
Ingo Molnar9b51f662008-12-12 13:49:45 +01003240/*
Ingo Molnar9b51f662008-12-12 13:49:45 +01003241 * inherit a counter from parent task to child task:
3242 */
Paul Mackerrasd859e292009-01-17 18:10:22 +11003243static struct perf_counter *
Ingo Molnar9b51f662008-12-12 13:49:45 +01003244inherit_counter(struct perf_counter *parent_counter,
3245 struct task_struct *parent,
3246 struct perf_counter_context *parent_ctx,
3247 struct task_struct *child,
Paul Mackerrasd859e292009-01-17 18:10:22 +11003248 struct perf_counter *group_leader,
Ingo Molnar9b51f662008-12-12 13:49:45 +01003249 struct perf_counter_context *child_ctx)
3250{
3251 struct perf_counter *child_counter;
3252
Paul Mackerrasd859e292009-01-17 18:10:22 +11003253 /*
3254 * Instead of creating recursive hierarchies of counters,
3255 * we link inherited counters back to the original parent,
3256 * which has a filp for sure, which we use as the reference
3257 * count:
3258 */
3259 if (parent_counter->parent)
3260 parent_counter = parent_counter->parent;
3261
Ingo Molnar9b51f662008-12-12 13:49:45 +01003262 child_counter = perf_counter_alloc(&parent_counter->hw_event,
Paul Mackerras23a185c2009-02-09 22:42:47 +11003263 parent_counter->cpu, child_ctx,
3264 group_leader, GFP_KERNEL);
Paul Mackerrasd5d2bc0d2009-03-30 19:07:08 +02003265 if (IS_ERR(child_counter))
3266 return child_counter;
Ingo Molnar9b51f662008-12-12 13:49:45 +01003267
3268 /*
Paul Mackerras564c2b22009-05-22 14:27:22 +10003269 * Make the child state follow the state of the parent counter,
3270 * not its hw_event.disabled bit. We hold the parent's mutex,
3271 * so we won't race with perf_counter_{en,dis}able_family.
3272 */
3273 if (parent_counter->state >= PERF_COUNTER_STATE_INACTIVE)
3274 child_counter->state = PERF_COUNTER_STATE_INACTIVE;
3275 else
3276 child_counter->state = PERF_COUNTER_STATE_OFF;
3277
3278 /*
Ingo Molnar9b51f662008-12-12 13:49:45 +01003279 * Link it up in the child's context:
3280 */
Paul Mackerras53cfbf52009-03-25 22:46:58 +11003281 add_counter_to_ctx(child_counter, child_ctx);
Ingo Molnar9b51f662008-12-12 13:49:45 +01003282
3283 child_counter->parent = parent_counter;
Ingo Molnar9b51f662008-12-12 13:49:45 +01003284 /*
3285 * inherit into child's child as well:
3286 */
3287 child_counter->hw_event.inherit = 1;
3288
3289 /*
3290 * Get a reference to the parent filp - we will fput it
3291 * when the child counter exits. This is safe to do because
3292 * we are in the parent and we know that the filp still
3293 * exists and has a nonzero count:
3294 */
3295 atomic_long_inc(&parent_counter->filp->f_count);
3296
Paul Mackerrasd859e292009-01-17 18:10:22 +11003297 /*
3298 * Link this into the parent counter's child list
3299 */
Peter Zijlstrafccc7142009-05-23 18:28:56 +02003300 mutex_lock(&parent_counter->child_mutex);
Paul Mackerrasd859e292009-01-17 18:10:22 +11003301 list_add_tail(&child_counter->child_list, &parent_counter->child_list);
Peter Zijlstrafccc7142009-05-23 18:28:56 +02003302 mutex_unlock(&parent_counter->child_mutex);
Paul Mackerrasd859e292009-01-17 18:10:22 +11003303
3304 return child_counter;
3305}
3306
3307static int inherit_group(struct perf_counter *parent_counter,
3308 struct task_struct *parent,
3309 struct perf_counter_context *parent_ctx,
3310 struct task_struct *child,
3311 struct perf_counter_context *child_ctx)
3312{
3313 struct perf_counter *leader;
3314 struct perf_counter *sub;
Paul Mackerrasd5d2bc0d2009-03-30 19:07:08 +02003315 struct perf_counter *child_ctr;
Paul Mackerrasd859e292009-01-17 18:10:22 +11003316
3317 leader = inherit_counter(parent_counter, parent, parent_ctx,
3318 child, NULL, child_ctx);
Paul Mackerrasd5d2bc0d2009-03-30 19:07:08 +02003319 if (IS_ERR(leader))
3320 return PTR_ERR(leader);
Paul Mackerrasd859e292009-01-17 18:10:22 +11003321 list_for_each_entry(sub, &parent_counter->sibling_list, list_entry) {
Paul Mackerrasd5d2bc0d2009-03-30 19:07:08 +02003322 child_ctr = inherit_counter(sub, parent, parent_ctx,
3323 child, leader, child_ctx);
3324 if (IS_ERR(child_ctr))
3325 return PTR_ERR(child_ctr);
Paul Mackerrasd859e292009-01-17 18:10:22 +11003326 }
Ingo Molnar9b51f662008-12-12 13:49:45 +01003327 return 0;
3328}
3329
Paul Mackerrasd859e292009-01-17 18:10:22 +11003330static void sync_child_counter(struct perf_counter *child_counter,
3331 struct perf_counter *parent_counter)
3332{
Peter Zijlstra8bc20952009-05-15 20:45:59 +02003333 u64 child_val;
Paul Mackerrasd859e292009-01-17 18:10:22 +11003334
Paul Mackerrasd859e292009-01-17 18:10:22 +11003335 child_val = atomic64_read(&child_counter->count);
3336
3337 /*
3338 * Add back the child's count to the parent's count:
3339 */
3340 atomic64_add(child_val, &parent_counter->count);
Paul Mackerras53cfbf52009-03-25 22:46:58 +11003341 atomic64_add(child_counter->total_time_enabled,
3342 &parent_counter->child_total_time_enabled);
3343 atomic64_add(child_counter->total_time_running,
3344 &parent_counter->child_total_time_running);
Paul Mackerrasd859e292009-01-17 18:10:22 +11003345
3346 /*
3347 * Remove this counter from the parent's list
3348 */
Peter Zijlstrafccc7142009-05-23 18:28:56 +02003349 mutex_lock(&parent_counter->child_mutex);
Paul Mackerrasd859e292009-01-17 18:10:22 +11003350 list_del_init(&child_counter->child_list);
Peter Zijlstrafccc7142009-05-23 18:28:56 +02003351 mutex_unlock(&parent_counter->child_mutex);
Paul Mackerrasd859e292009-01-17 18:10:22 +11003352
3353 /*
3354 * Release the parent counter, if this was the last
3355 * reference to it.
3356 */
3357 fput(parent_counter->filp);
3358}
3359
Ingo Molnar9b51f662008-12-12 13:49:45 +01003360static void
3361__perf_counter_exit_task(struct task_struct *child,
3362 struct perf_counter *child_counter,
3363 struct perf_counter_context *child_ctx)
3364{
3365 struct perf_counter *parent_counter;
Ingo Molnar9b51f662008-12-12 13:49:45 +01003366
Paul Mackerrasa63eaf32009-05-22 14:17:31 +10003367 update_counter_times(child_counter);
Peter Zijlstraaa9c67f2009-05-23 18:28:59 +02003368 perf_counter_remove_from_context(child_counter);
Ingo Molnar0cc0c022008-12-14 23:20:36 +01003369
Ingo Molnar9b51f662008-12-12 13:49:45 +01003370 parent_counter = child_counter->parent;
3371 /*
3372 * It can happen that parent exits first, and has counters
3373 * that are still around due to the child reference. These
3374 * counters need to be zapped - but otherwise linger.
3375 */
Paul Mackerrasd859e292009-01-17 18:10:22 +11003376 if (parent_counter) {
3377 sync_child_counter(child_counter, parent_counter);
Peter Zijlstraf1600952009-03-19 20:26:16 +01003378 free_counter(child_counter);
Paul Mackerras4bcf3492009-02-11 13:53:19 +01003379 }
Ingo Molnar9b51f662008-12-12 13:49:45 +01003380}
3381
3382/*
Paul Mackerrasd859e292009-01-17 18:10:22 +11003383 * When a child task exits, feed back counter values to parent counters.
Ingo Molnar9b51f662008-12-12 13:49:45 +01003384 *
Paul Mackerrasd859e292009-01-17 18:10:22 +11003385 * Note: we may be running in child context, but the PID is not hashed
Ingo Molnar9b51f662008-12-12 13:49:45 +01003386 * anymore so new counters will not be added.
Paul Mackerrasa63eaf32009-05-22 14:17:31 +10003387 * (XXX not sure that is true when we get called from flush_old_exec.
3388 * -- paulus)
Ingo Molnar9b51f662008-12-12 13:49:45 +01003389 */
3390void perf_counter_exit_task(struct task_struct *child)
3391{
3392 struct perf_counter *child_counter, *tmp;
3393 struct perf_counter_context *child_ctx;
Paul Mackerrasa63eaf32009-05-22 14:17:31 +10003394 unsigned long flags;
Ingo Molnar9b51f662008-12-12 13:49:45 +01003395
Ingo Molnar33b2fb32009-05-17 11:08:41 +02003396 WARN_ON_ONCE(child != current);
3397
Paul Mackerrasa63eaf32009-05-22 14:17:31 +10003398 child_ctx = child->perf_counter_ctxp;
Ingo Molnar9b51f662008-12-12 13:49:45 +01003399
Paul Mackerrasa63eaf32009-05-22 14:17:31 +10003400 if (likely(!child_ctx))
Ingo Molnar9b51f662008-12-12 13:49:45 +01003401 return;
3402
Paul Mackerrasa63eaf32009-05-22 14:17:31 +10003403 local_irq_save(flags);
3404 __perf_counter_task_sched_out(child_ctx);
3405 child->perf_counter_ctxp = NULL;
3406 local_irq_restore(flags);
3407
3408 mutex_lock(&child_ctx->mutex);
3409
Peter Zijlstra8bc20952009-05-15 20:45:59 +02003410again:
Ingo Molnar9b51f662008-12-12 13:49:45 +01003411 list_for_each_entry_safe(child_counter, tmp, &child_ctx->counter_list,
3412 list_entry)
3413 __perf_counter_exit_task(child, child_counter, child_ctx);
Peter Zijlstra8bc20952009-05-15 20:45:59 +02003414
3415 /*
3416 * If the last counter was a group counter, it will have appended all
3417 * its siblings to the list, but we obtained 'tmp' before that which
3418 * will still point to the list head terminating the iteration.
3419 */
3420 if (!list_empty(&child_ctx->counter_list))
3421 goto again;
Paul Mackerrasa63eaf32009-05-22 14:17:31 +10003422
3423 mutex_unlock(&child_ctx->mutex);
3424
3425 put_ctx(child_ctx);
Ingo Molnar9b51f662008-12-12 13:49:45 +01003426}
3427
3428/*
3429 * Initialize the perf_counter context in task_struct
3430 */
3431void perf_counter_init_task(struct task_struct *child)
3432{
3433 struct perf_counter_context *child_ctx, *parent_ctx;
Paul Mackerrasd859e292009-01-17 18:10:22 +11003434 struct perf_counter *counter;
Ingo Molnar9b51f662008-12-12 13:49:45 +01003435 struct task_struct *parent = current;
Paul Mackerras564c2b22009-05-22 14:27:22 +10003436 int inherited_all = 1;
Ingo Molnar9b51f662008-12-12 13:49:45 +01003437
Paul Mackerrasa63eaf32009-05-22 14:17:31 +10003438 child->perf_counter_ctxp = NULL;
Ingo Molnar9b51f662008-12-12 13:49:45 +01003439
Peter Zijlstra082ff5a2009-05-23 18:29:00 +02003440 mutex_init(&child->perf_counter_mutex);
3441 INIT_LIST_HEAD(&child->perf_counter_list);
3442
Ingo Molnar9b51f662008-12-12 13:49:45 +01003443 /*
3444 * This is executed from the parent task context, so inherit
Paul Mackerrasa63eaf32009-05-22 14:17:31 +10003445 * counters that have been marked for cloning.
3446 * First allocate and initialize a context for the child.
Ingo Molnar9b51f662008-12-12 13:49:45 +01003447 */
3448
Paul Mackerrasa63eaf32009-05-22 14:17:31 +10003449 child_ctx = kmalloc(sizeof(struct perf_counter_context), GFP_KERNEL);
3450 if (!child_ctx)
Ingo Molnar9b51f662008-12-12 13:49:45 +01003451 return;
3452
Paul Mackerrasa63eaf32009-05-22 14:17:31 +10003453 parent_ctx = parent->perf_counter_ctxp;
3454 if (likely(!parent_ctx || !parent_ctx->nr_counters))
3455 return;
3456
3457 __perf_counter_init_context(child_ctx, child);
3458 child->perf_counter_ctxp = child_ctx;
3459
Ingo Molnar9b51f662008-12-12 13:49:45 +01003460 /*
3461 * Lock the parent list. No need to lock the child - not PID
3462 * hashed yet and not running, so nobody can access it.
3463 */
Paul Mackerrasd859e292009-01-17 18:10:22 +11003464 mutex_lock(&parent_ctx->mutex);
Ingo Molnar9b51f662008-12-12 13:49:45 +01003465
3466 /*
3467 * We dont have to disable NMIs - we are only looking at
3468 * the list, not manipulating it:
3469 */
Peter Zijlstrad7b629a2009-05-20 12:21:19 +02003470 list_for_each_entry_rcu(counter, &parent_ctx->event_list, event_entry) {
3471 if (counter != counter->group_leader)
3472 continue;
3473
Paul Mackerras564c2b22009-05-22 14:27:22 +10003474 if (!counter->hw_event.inherit) {
3475 inherited_all = 0;
Ingo Molnar9b51f662008-12-12 13:49:45 +01003476 continue;
Paul Mackerras564c2b22009-05-22 14:27:22 +10003477 }
Ingo Molnar9b51f662008-12-12 13:49:45 +01003478
Paul Mackerrasd859e292009-01-17 18:10:22 +11003479 if (inherit_group(counter, parent,
Paul Mackerras564c2b22009-05-22 14:27:22 +10003480 parent_ctx, child, child_ctx)) {
3481 inherited_all = 0;
Ingo Molnar9b51f662008-12-12 13:49:45 +01003482 break;
Paul Mackerras564c2b22009-05-22 14:27:22 +10003483 }
3484 }
3485
3486 if (inherited_all) {
3487 /*
3488 * Mark the child context as a clone of the parent
3489 * context, or of whatever the parent is a clone of.
3490 */
3491 if (parent_ctx->parent_ctx) {
3492 child_ctx->parent_ctx = parent_ctx->parent_ctx;
3493 child_ctx->parent_gen = parent_ctx->parent_gen;
3494 } else {
3495 child_ctx->parent_ctx = parent_ctx;
3496 child_ctx->parent_gen = parent_ctx->generation;
3497 }
3498 get_ctx(child_ctx->parent_ctx);
Ingo Molnar9b51f662008-12-12 13:49:45 +01003499 }
3500
Paul Mackerrasd859e292009-01-17 18:10:22 +11003501 mutex_unlock(&parent_ctx->mutex);
Ingo Molnar9b51f662008-12-12 13:49:45 +01003502}
3503
Ingo Molnar04289bb2008-12-11 08:38:42 +01003504static void __cpuinit perf_counter_init_cpu(int cpu)
Thomas Gleixner0793a612008-12-04 20:12:29 +01003505{
Ingo Molnar04289bb2008-12-11 08:38:42 +01003506 struct perf_cpu_context *cpuctx;
Thomas Gleixner0793a612008-12-04 20:12:29 +01003507
Ingo Molnar04289bb2008-12-11 08:38:42 +01003508 cpuctx = &per_cpu(perf_cpu_context, cpu);
3509 __perf_counter_init_context(&cpuctx->ctx, NULL);
Thomas Gleixner0793a612008-12-04 20:12:29 +01003510
Ingo Molnar1dce8d92009-05-04 19:23:18 +02003511 spin_lock(&perf_resource_lock);
Ingo Molnar04289bb2008-12-11 08:38:42 +01003512 cpuctx->max_pertask = perf_max_counters - perf_reserved_percpu;
Ingo Molnar1dce8d92009-05-04 19:23:18 +02003513 spin_unlock(&perf_resource_lock);
Ingo Molnar04289bb2008-12-11 08:38:42 +01003514
Paul Mackerras01d02872009-01-14 13:44:19 +11003515 hw_perf_counter_setup(cpu);
Thomas Gleixner0793a612008-12-04 20:12:29 +01003516}
3517
3518#ifdef CONFIG_HOTPLUG_CPU
Ingo Molnar04289bb2008-12-11 08:38:42 +01003519static void __perf_counter_exit_cpu(void *info)
Thomas Gleixner0793a612008-12-04 20:12:29 +01003520{
3521 struct perf_cpu_context *cpuctx = &__get_cpu_var(perf_cpu_context);
3522 struct perf_counter_context *ctx = &cpuctx->ctx;
3523 struct perf_counter *counter, *tmp;
3524
Ingo Molnar04289bb2008-12-11 08:38:42 +01003525 list_for_each_entry_safe(counter, tmp, &ctx->counter_list, list_entry)
3526 __perf_counter_remove_from_context(counter);
Thomas Gleixner0793a612008-12-04 20:12:29 +01003527}
Ingo Molnar04289bb2008-12-11 08:38:42 +01003528static void perf_counter_exit_cpu(int cpu)
Thomas Gleixner0793a612008-12-04 20:12:29 +01003529{
Paul Mackerrasd859e292009-01-17 18:10:22 +11003530 struct perf_cpu_context *cpuctx = &per_cpu(perf_cpu_context, cpu);
3531 struct perf_counter_context *ctx = &cpuctx->ctx;
3532
3533 mutex_lock(&ctx->mutex);
Ingo Molnar04289bb2008-12-11 08:38:42 +01003534 smp_call_function_single(cpu, __perf_counter_exit_cpu, NULL, 1);
Paul Mackerrasd859e292009-01-17 18:10:22 +11003535 mutex_unlock(&ctx->mutex);
Thomas Gleixner0793a612008-12-04 20:12:29 +01003536}
3537#else
Ingo Molnar04289bb2008-12-11 08:38:42 +01003538static inline void perf_counter_exit_cpu(int cpu) { }
Thomas Gleixner0793a612008-12-04 20:12:29 +01003539#endif
3540
3541static int __cpuinit
3542perf_cpu_notify(struct notifier_block *self, unsigned long action, void *hcpu)
3543{
3544 unsigned int cpu = (long)hcpu;
3545
3546 switch (action) {
3547
3548 case CPU_UP_PREPARE:
3549 case CPU_UP_PREPARE_FROZEN:
Ingo Molnar04289bb2008-12-11 08:38:42 +01003550 perf_counter_init_cpu(cpu);
Thomas Gleixner0793a612008-12-04 20:12:29 +01003551 break;
3552
3553 case CPU_DOWN_PREPARE:
3554 case CPU_DOWN_PREPARE_FROZEN:
Ingo Molnar04289bb2008-12-11 08:38:42 +01003555 perf_counter_exit_cpu(cpu);
Thomas Gleixner0793a612008-12-04 20:12:29 +01003556 break;
3557
3558 default:
3559 break;
3560 }
3561
3562 return NOTIFY_OK;
3563}
3564
3565static struct notifier_block __cpuinitdata perf_cpu_nb = {
3566 .notifier_call = perf_cpu_notify,
3567};
3568
Ingo Molnar0d905bc2009-05-04 19:13:30 +02003569void __init perf_counter_init(void)
Thomas Gleixner0793a612008-12-04 20:12:29 +01003570{
3571 perf_cpu_notify(&perf_cpu_nb, (unsigned long)CPU_UP_PREPARE,
3572 (void *)(long)smp_processor_id());
3573 register_cpu_notifier(&perf_cpu_nb);
Thomas Gleixner0793a612008-12-04 20:12:29 +01003574}
Thomas Gleixner0793a612008-12-04 20:12:29 +01003575
3576static ssize_t perf_show_reserve_percpu(struct sysdev_class *class, char *buf)
3577{
3578 return sprintf(buf, "%d\n", perf_reserved_percpu);
3579}
3580
3581static ssize_t
3582perf_set_reserve_percpu(struct sysdev_class *class,
3583 const char *buf,
3584 size_t count)
3585{
3586 struct perf_cpu_context *cpuctx;
3587 unsigned long val;
3588 int err, cpu, mpt;
3589
3590 err = strict_strtoul(buf, 10, &val);
3591 if (err)
3592 return err;
3593 if (val > perf_max_counters)
3594 return -EINVAL;
3595
Ingo Molnar1dce8d92009-05-04 19:23:18 +02003596 spin_lock(&perf_resource_lock);
Thomas Gleixner0793a612008-12-04 20:12:29 +01003597 perf_reserved_percpu = val;
3598 for_each_online_cpu(cpu) {
3599 cpuctx = &per_cpu(perf_cpu_context, cpu);
3600 spin_lock_irq(&cpuctx->ctx.lock);
3601 mpt = min(perf_max_counters - cpuctx->ctx.nr_counters,
3602 perf_max_counters - perf_reserved_percpu);
3603 cpuctx->max_pertask = mpt;
3604 spin_unlock_irq(&cpuctx->ctx.lock);
3605 }
Ingo Molnar1dce8d92009-05-04 19:23:18 +02003606 spin_unlock(&perf_resource_lock);
Thomas Gleixner0793a612008-12-04 20:12:29 +01003607
3608 return count;
3609}
3610
3611static ssize_t perf_show_overcommit(struct sysdev_class *class, char *buf)
3612{
3613 return sprintf(buf, "%d\n", perf_overcommit);
3614}
3615
3616static ssize_t
3617perf_set_overcommit(struct sysdev_class *class, const char *buf, size_t count)
3618{
3619 unsigned long val;
3620 int err;
3621
3622 err = strict_strtoul(buf, 10, &val);
3623 if (err)
3624 return err;
3625 if (val > 1)
3626 return -EINVAL;
3627
Ingo Molnar1dce8d92009-05-04 19:23:18 +02003628 spin_lock(&perf_resource_lock);
Thomas Gleixner0793a612008-12-04 20:12:29 +01003629 perf_overcommit = val;
Ingo Molnar1dce8d92009-05-04 19:23:18 +02003630 spin_unlock(&perf_resource_lock);
Thomas Gleixner0793a612008-12-04 20:12:29 +01003631
3632 return count;
3633}
3634
3635static SYSDEV_CLASS_ATTR(
3636 reserve_percpu,
3637 0644,
3638 perf_show_reserve_percpu,
3639 perf_set_reserve_percpu
3640 );
3641
3642static SYSDEV_CLASS_ATTR(
3643 overcommit,
3644 0644,
3645 perf_show_overcommit,
3646 perf_set_overcommit
3647 );
3648
3649static struct attribute *perfclass_attrs[] = {
3650 &attr_reserve_percpu.attr,
3651 &attr_overcommit.attr,
3652 NULL
3653};
3654
3655static struct attribute_group perfclass_attr_group = {
3656 .attrs = perfclass_attrs,
3657 .name = "perf_counters",
3658};
3659
3660static int __init perf_counter_sysfs_init(void)
3661{
3662 return sysfs_create_group(&cpu_sysdev_class.kset.kobj,
3663 &perfclass_attr_group);
3664}
3665device_initcall(perf_counter_sysfs_init);