perf core: Generalize max_stack sysctl handler
[deliverable/linux.git] / include / linux / perf_event.h
CommitLineData
0793a61d 1/*
57c0c15b 2 * Performance events:
0793a61d 3 *
a308444c 4 * Copyright (C) 2008-2009, Thomas Gleixner <tglx@linutronix.de>
e7e7ee2e
IM
5 * Copyright (C) 2008-2011, Red Hat, Inc., Ingo Molnar
6 * Copyright (C) 2008-2011, Red Hat, Inc., Peter Zijlstra
0793a61d 7 *
57c0c15b 8 * Data type definitions, declarations, prototypes.
0793a61d 9 *
a308444c 10 * Started by: Thomas Gleixner and Ingo Molnar
0793a61d 11 *
57c0c15b 12 * For licencing details see kernel-base/COPYING
0793a61d 13 */
cdd6c482
IM
14#ifndef _LINUX_PERF_EVENT_H
15#define _LINUX_PERF_EVENT_H
0793a61d 16
607ca46e 17#include <uapi/linux/perf_event.h>
0793a61d 18
9f66a381 19/*
f3dfd265 20 * Kernel-internal data types and definitions:
9f66a381
IM
21 */
22
cdd6c482
IM
23#ifdef CONFIG_PERF_EVENTS
24# include <asm/perf_event.h>
7be79236 25# include <asm/local64.h>
f3dfd265
PM
26#endif
27
39447b38 28struct perf_guest_info_callbacks {
e7e7ee2e
IM
29 int (*is_in_guest)(void);
30 int (*is_user_mode)(void);
31 unsigned long (*get_guest_ip)(void);
39447b38
ZY
32};
33
2ff6cfd7
AB
34#ifdef CONFIG_HAVE_HW_BREAKPOINT
35#include <asm/hw_breakpoint.h>
36#endif
37
f3dfd265
PM
38#include <linux/list.h>
39#include <linux/mutex.h>
40#include <linux/rculist.h>
41#include <linux/rcupdate.h>
42#include <linux/spinlock.h>
d6d020e9 43#include <linux/hrtimer.h>
3c446b3d 44#include <linux/fs.h>
709e50cf 45#include <linux/pid_namespace.h>
906010b2 46#include <linux/workqueue.h>
5331d7b8 47#include <linux/ftrace.h>
85cfabbc 48#include <linux/cpu.h>
e360adbe 49#include <linux/irq_work.h>
c5905afb 50#include <linux/static_key.h>
851cf6e7 51#include <linux/jump_label_ratelimit.h>
60063497 52#include <linux/atomic.h>
641cc938 53#include <linux/sysfs.h>
4018994f 54#include <linux/perf_regs.h>
fadfe7be 55#include <linux/workqueue.h>
39bed6cb 56#include <linux/cgroup.h>
fa588151 57#include <asm/local.h>
f3dfd265 58
f9188e02
PZ
59struct perf_callchain_entry {
60 __u64 nr;
c5dfd78e 61 __u64 ip[0]; /* /proc/sys/kernel/perf_event_max_stack */
f9188e02
PZ
62};
63
3a43ce68
FW
64struct perf_raw_record {
65 u32 size;
66 void *data;
f413cdb8
FW
67};
68
bce38cd5
SE
69/*
70 * branch stack layout:
71 * nr: number of taken branches stored in entries[]
72 *
73 * Note that nr can vary from sample to sample
74 * branches (to, from) are stored from most recent
75 * to least recent, i.e., entries[0] contains the most
76 * recent branch.
77 */
caff2bef
PZ
78struct perf_branch_stack {
79 __u64 nr;
80 struct perf_branch_entry entries[0];
81};
82
f3dfd265
PM
83struct task_struct;
84
efc9f05d
SE
85/*
86 * extra PMU register associated with an event
87 */
88struct hw_perf_event_extra {
89 u64 config; /* register value */
90 unsigned int reg; /* register address or index */
91 int alloc; /* extra register already allocated */
92 int idx; /* index in shared_regs->regs[] */
93};
94
0793a61d 95/**
cdd6c482 96 * struct hw_perf_event - performance event hardware details:
0793a61d 97 */
cdd6c482
IM
98struct hw_perf_event {
99#ifdef CONFIG_PERF_EVENTS
d6d020e9
PZ
100 union {
101 struct { /* hardware */
a308444c 102 u64 config;
447a194b 103 u64 last_tag;
a308444c 104 unsigned long config_base;
cdd6c482 105 unsigned long event_base;
c48b6053 106 int event_base_rdpmc;
a308444c 107 int idx;
447a194b 108 int last_cpu;
9fac2cf3 109 int flags;
bce38cd5 110
efc9f05d 111 struct hw_perf_event_extra extra_reg;
bce38cd5 112 struct hw_perf_event_extra branch_reg;
d6d020e9 113 };
721a669b 114 struct { /* software */
a308444c 115 struct hrtimer hrtimer;
d6d020e9 116 };
f22c1bb6 117 struct { /* tracepoint */
f22c1bb6
ON
118 /* for tp_event->class */
119 struct list_head tp_list;
120 };
4afbb24c
MF
121 struct { /* intel_cqm */
122 int cqm_state;
b3df4ec4 123 u32 cqm_rmid;
a223c1c7 124 int is_group_event;
4afbb24c
MF
125 struct list_head cqm_events_entry;
126 struct list_head cqm_groups_entry;
127 struct list_head cqm_group_entry;
128 };
ec0d7729
AS
129 struct { /* itrace */
130 int itrace_started;
131 };
c7ab62bf
HR
132 struct { /* amd_power */
133 u64 pwr_acc;
134 u64 ptsc;
135 };
24f1e32c 136#ifdef CONFIG_HAVE_HW_BREAKPOINT
45a73372 137 struct { /* breakpoint */
d580ff86
PZ
138 /*
139 * Crufty hack to avoid the chicken and egg
140 * problem hw_breakpoint has with context
141 * creation and event initalization.
142 */
f22c1bb6
ON
143 struct arch_hw_breakpoint info;
144 struct list_head bp_list;
45a73372 145 };
24f1e32c 146#endif
d6d020e9 147 };
b0e87875
PZ
148 /*
149 * If the event is a per task event, this will point to the task in
150 * question. See the comment in perf_event_alloc().
151 */
50f16a8b 152 struct task_struct *target;
b0e87875 153
375637bc
AS
154 /*
155 * PMU would store hardware filter configuration
156 * here.
157 */
158 void *addr_filters;
159
160 /* Last sync'ed generation of filters */
161 unsigned long addr_filters_gen;
162
b0e87875
PZ
163/*
164 * hw_perf_event::state flags; used to track the PERF_EF_* state.
165 */
166#define PERF_HES_STOPPED 0x01 /* the counter is stopped */
167#define PERF_HES_UPTODATE 0x02 /* event->count up-to-date */
168#define PERF_HES_ARCH 0x04
169
a4eaf7f1 170 int state;
b0e87875
PZ
171
172 /*
173 * The last observed hardware counter value, updated with a
174 * local64_cmpxchg() such that pmu::read() can be called nested.
175 */
e7850595 176 local64_t prev_count;
b0e87875
PZ
177
178 /*
179 * The period to start the next sample with.
180 */
b23f3325 181 u64 sample_period;
b0e87875
PZ
182
183 /*
184 * The period we started this sample with.
185 */
9e350de3 186 u64 last_period;
b0e87875
PZ
187
188 /*
189 * However much is left of the current period; note that this is
190 * a full 64bit value and allows for generation of periods longer
191 * than hardware might allow.
192 */
e7850595 193 local64_t period_left;
b0e87875
PZ
194
195 /*
196 * State for throttling the event, see __perf_event_overflow() and
197 * perf_adjust_freq_unthr_context().
198 */
e050e3f0 199 u64 interrupts_seq;
60db5e09 200 u64 interrupts;
6a24ed6c 201
b0e87875
PZ
202 /*
203 * State for freq target events, see __perf_event_overflow() and
204 * perf_adjust_freq_unthr_context().
205 */
abd50713
PZ
206 u64 freq_time_stamp;
207 u64 freq_count_stamp;
ee06094f 208#endif
0793a61d
TG
209};
210
cdd6c482 211struct perf_event;
621a01ea 212
8d2cacbb
PZ
213/*
214 * Common implementation detail of pmu::{start,commit,cancel}_txn
215 */
fbbe0701 216#define PERF_PMU_TXN_ADD 0x1 /* txn to add/schedule event on PMU */
4a00c16e 217#define PERF_PMU_TXN_READ 0x2 /* txn to read event group from PMU */
fbbe0701 218
53b25335
VW
219/**
220 * pmu::capabilities flags
221 */
222#define PERF_PMU_CAP_NO_INTERRUPT 0x01
34f43927 223#define PERF_PMU_CAP_NO_NMI 0x02
0a4e38e6 224#define PERF_PMU_CAP_AUX_NO_SG 0x04
6a279230 225#define PERF_PMU_CAP_AUX_SW_DOUBLEBUF 0x08
bed5b25a 226#define PERF_PMU_CAP_EXCLUSIVE 0x10
ec0d7729 227#define PERF_PMU_CAP_ITRACE 0x20
5101ef20 228#define PERF_PMU_CAP_HETEROGENEOUS_CPUS 0x40
53b25335 229
621a01ea 230/**
4aeb0b42 231 * struct pmu - generic performance monitoring unit
621a01ea 232 */
4aeb0b42 233struct pmu {
b0a873eb
PZ
234 struct list_head entry;
235
c464c76e 236 struct module *module;
abe43400 237 struct device *dev;
0c9d42ed 238 const struct attribute_group **attr_groups;
03d8e80b 239 const char *name;
2e80a82a
PZ
240 int type;
241
53b25335
VW
242 /*
243 * various common per-pmu feature flags
244 */
245 int capabilities;
246
108b02cf
PZ
247 int * __percpu pmu_disable_count;
248 struct perf_cpu_context * __percpu pmu_cpu_context;
bed5b25a 249 atomic_t exclusive_cnt; /* < 0: cpu; > 0: tsk */
8dc85d54 250 int task_ctx_nr;
62b85639 251 int hrtimer_interval_ms;
6bde9b6c 252
375637bc
AS
253 /* number of address filters this PMU can do */
254 unsigned int nr_addr_filters;
255
6bde9b6c 256 /*
a4eaf7f1
PZ
257 * Fully disable/enable this PMU, can be used to protect from the PMI
258 * as well as for lazy/batch writing of the MSRs.
6bde9b6c 259 */
ad5133b7
PZ
260 void (*pmu_enable) (struct pmu *pmu); /* optional */
261 void (*pmu_disable) (struct pmu *pmu); /* optional */
6bde9b6c 262
8d2cacbb 263 /*
a4eaf7f1 264 * Try and initialize the event for this PMU.
b0e87875
PZ
265 *
266 * Returns:
267 * -ENOENT -- @event is not for this PMU
268 *
269 * -ENODEV -- @event is for this PMU but PMU not present
270 * -EBUSY -- @event is for this PMU but PMU temporarily unavailable
271 * -EINVAL -- @event is for this PMU but @event is not valid
272 * -EOPNOTSUPP -- @event is for this PMU, @event is valid, but not supported
273 * -EACCESS -- @event is for this PMU, @event is valid, but no privilidges
274 *
275 * 0 -- @event is for this PMU and valid
276 *
277 * Other error return values are allowed.
8d2cacbb 278 */
b0a873eb
PZ
279 int (*event_init) (struct perf_event *event);
280
1e0fb9ec
AL
281 /*
282 * Notification that the event was mapped or unmapped. Called
283 * in the context of the mapping task.
284 */
285 void (*event_mapped) (struct perf_event *event); /*optional*/
286 void (*event_unmapped) (struct perf_event *event); /*optional*/
287
b0e87875
PZ
288 /*
289 * Flags for ->add()/->del()/ ->start()/->stop(). There are
290 * matching hw_perf_event::state flags.
291 */
a4eaf7f1
PZ
292#define PERF_EF_START 0x01 /* start the counter when adding */
293#define PERF_EF_RELOAD 0x02 /* reload the counter when starting */
294#define PERF_EF_UPDATE 0x04 /* update the counter when stopping */
295
8d2cacbb 296 /*
b0e87875
PZ
297 * Adds/Removes a counter to/from the PMU, can be done inside a
298 * transaction, see the ->*_txn() methods.
299 *
300 * The add/del callbacks will reserve all hardware resources required
301 * to service the event, this includes any counter constraint
302 * scheduling etc.
303 *
304 * Called with IRQs disabled and the PMU disabled on the CPU the event
305 * is on.
306 *
307 * ->add() called without PERF_EF_START should result in the same state
308 * as ->add() followed by ->stop().
309 *
310 * ->del() must always PERF_EF_UPDATE stop an event. If it calls
311 * ->stop() that must deal with already being stopped without
312 * PERF_EF_UPDATE.
a4eaf7f1
PZ
313 */
314 int (*add) (struct perf_event *event, int flags);
315 void (*del) (struct perf_event *event, int flags);
316
317 /*
b0e87875
PZ
318 * Starts/Stops a counter present on the PMU.
319 *
320 * The PMI handler should stop the counter when perf_event_overflow()
321 * returns !0. ->start() will be used to continue.
322 *
323 * Also used to change the sample period.
324 *
325 * Called with IRQs disabled and the PMU disabled on the CPU the event
326 * is on -- will be called from NMI context with the PMU generates
327 * NMIs.
328 *
329 * ->stop() with PERF_EF_UPDATE will read the counter and update
330 * period/count values like ->read() would.
331 *
332 * ->start() with PERF_EF_RELOAD will reprogram the the counter
333 * value, must be preceded by a ->stop() with PERF_EF_UPDATE.
a4eaf7f1
PZ
334 */
335 void (*start) (struct perf_event *event, int flags);
336 void (*stop) (struct perf_event *event, int flags);
337
338 /*
339 * Updates the counter value of the event.
b0e87875
PZ
340 *
341 * For sampling capable PMUs this will also update the software period
342 * hw_perf_event::period_left field.
a4eaf7f1 343 */
cdd6c482 344 void (*read) (struct perf_event *event);
6bde9b6c
LM
345
346 /*
24cd7f54
PZ
347 * Group events scheduling is treated as a transaction, add
348 * group events as a whole and perform one schedulability test.
349 * If the test fails, roll back the whole group
a4eaf7f1
PZ
350 *
351 * Start the transaction, after this ->add() doesn't need to
24cd7f54 352 * do schedulability tests.
fbbe0701
SB
353 *
354 * Optional.
8d2cacbb 355 */
fbbe0701 356 void (*start_txn) (struct pmu *pmu, unsigned int txn_flags);
8d2cacbb 357 /*
a4eaf7f1 358 * If ->start_txn() disabled the ->add() schedulability test
8d2cacbb
PZ
359 * then ->commit_txn() is required to perform one. On success
360 * the transaction is closed. On error the transaction is kept
361 * open until ->cancel_txn() is called.
fbbe0701
SB
362 *
363 * Optional.
8d2cacbb 364 */
fbbe0701 365 int (*commit_txn) (struct pmu *pmu);
8d2cacbb 366 /*
a4eaf7f1 367 * Will cancel the transaction, assumes ->del() is called
25985edc 368 * for each successful ->add() during the transaction.
fbbe0701
SB
369 *
370 * Optional.
8d2cacbb 371 */
fbbe0701 372 void (*cancel_txn) (struct pmu *pmu);
35edc2a5
PZ
373
374 /*
375 * Will return the value for perf_event_mmap_page::index for this event,
376 * if no implementation is provided it will default to: event->hw.idx + 1.
377 */
378 int (*event_idx) (struct perf_event *event); /*optional */
d010b332 379
ba532500
YZ
380 /*
381 * context-switches callback
382 */
383 void (*sched_task) (struct perf_event_context *ctx,
384 bool sched_in);
4af57ef2
YZ
385 /*
386 * PMU specific data size
387 */
388 size_t task_ctx_size;
ba532500 389
eacd3ecc
MF
390
391 /*
392 * Return the count value for a counter.
393 */
394 u64 (*count) (struct perf_event *event); /*optional*/
45bfb2e5
PZ
395
396 /*
397 * Set up pmu-private data structures for an AUX area
398 */
399 void *(*setup_aux) (int cpu, void **pages,
400 int nr_pages, bool overwrite);
401 /* optional */
402
403 /*
404 * Free pmu-private AUX data structures
405 */
406 void (*free_aux) (void *aux); /* optional */
66eb579e 407
375637bc
AS
408 /*
409 * Validate address range filters: make sure the HW supports the
410 * requested configuration and number of filters; return 0 if the
411 * supplied filters are valid, -errno otherwise.
412 *
413 * Runs in the context of the ioctl()ing process and is not serialized
414 * with the rest of the PMU callbacks.
415 */
416 int (*addr_filters_validate) (struct list_head *filters);
417 /* optional */
418
419 /*
420 * Synchronize address range filter configuration:
421 * translate hw-agnostic filters into hardware configuration in
422 * event::hw::addr_filters.
423 *
424 * Runs as a part of filter sync sequence that is done in ->start()
425 * callback by calling perf_event_addr_filters_sync().
426 *
427 * May (and should) traverse event::addr_filters::list, for which its
428 * caller provides necessary serialization.
429 */
430 void (*addr_filters_sync) (struct perf_event *event);
431 /* optional */
432
66eb579e
MR
433 /*
434 * Filter events for PMU-specific reasons.
435 */
436 int (*filter_match) (struct perf_event *event); /* optional */
621a01ea
IM
437};
438
375637bc
AS
439/**
440 * struct perf_addr_filter - address range filter definition
441 * @entry: event's filter list linkage
442 * @inode: object file's inode for file-based filters
443 * @offset: filter range offset
444 * @size: filter range size
445 * @range: 1: range, 0: address
446 * @filter: 1: filter/start, 0: stop
447 *
448 * This is a hardware-agnostic filter configuration as specified by the user.
449 */
450struct perf_addr_filter {
451 struct list_head entry;
452 struct inode *inode;
453 unsigned long offset;
454 unsigned long size;
455 unsigned int range : 1,
456 filter : 1;
457};
458
459/**
460 * struct perf_addr_filters_head - container for address range filters
461 * @list: list of filters for this event
462 * @lock: spinlock that serializes accesses to the @list and event's
463 * (and its children's) filter generations.
464 *
465 * A child event will use parent's @list (and therefore @lock), so they are
466 * bundled together; see perf_event_addr_filters().
467 */
468struct perf_addr_filters_head {
469 struct list_head list;
470 raw_spinlock_t lock;
471};
472
6a930700 473/**
cdd6c482 474 * enum perf_event_active_state - the states of a event
6a930700 475 */
cdd6c482 476enum perf_event_active_state {
a69b0ca4 477 PERF_EVENT_STATE_DEAD = -4,
179033b3 478 PERF_EVENT_STATE_EXIT = -3,
57c0c15b 479 PERF_EVENT_STATE_ERROR = -2,
cdd6c482
IM
480 PERF_EVENT_STATE_OFF = -1,
481 PERF_EVENT_STATE_INACTIVE = 0,
57c0c15b 482 PERF_EVENT_STATE_ACTIVE = 1,
6a930700
IM
483};
484
9b51f66d 485struct file;
453f19ee
PZ
486struct perf_sample_data;
487
a8b0ca17 488typedef void (*perf_overflow_handler_t)(struct perf_event *,
b326e956
FW
489 struct perf_sample_data *,
490 struct pt_regs *regs);
491
d6f962b5 492enum perf_group_flag {
e7e7ee2e 493 PERF_GROUP_SOFTWARE = 0x1,
d6f962b5
FW
494};
495
e7e7ee2e
IM
496#define SWEVENT_HLIST_BITS 8
497#define SWEVENT_HLIST_SIZE (1 << SWEVENT_HLIST_BITS)
76e1d904
FW
498
499struct swevent_hlist {
e7e7ee2e
IM
500 struct hlist_head heads[SWEVENT_HLIST_SIZE];
501 struct rcu_head rcu_head;
76e1d904
FW
502};
503
8a49542c
PZ
504#define PERF_ATTACH_CONTEXT 0x01
505#define PERF_ATTACH_GROUP 0x02
d580ff86 506#define PERF_ATTACH_TASK 0x04
4af57ef2 507#define PERF_ATTACH_TASK_DATA 0x08
8a49542c 508
877c6856 509struct perf_cgroup;
76369139
FW
510struct ring_buffer;
511
0793a61d 512/**
cdd6c482 513 * struct perf_event - performance event kernel representation:
0793a61d 514 */
cdd6c482
IM
515struct perf_event {
516#ifdef CONFIG_PERF_EVENTS
9886167d
PZ
517 /*
518 * entry onto perf_event_context::event_list;
519 * modifications require ctx->lock
520 * RCU safe iterations.
521 */
592903cd 522 struct list_head event_entry;
9886167d
PZ
523
524 /*
525 * XXX: group_entry and sibling_list should be mutually exclusive;
526 * either you're a sibling on a group, or you're the group leader.
527 * Rework the code to always use the same list element.
528 *
529 * Locked for modification by both ctx->mutex and ctx->lock; holding
530 * either sufficies for read.
531 */
532 struct list_head group_entry;
04289bb9 533 struct list_head sibling_list;
9886167d
PZ
534
535 /*
536 * We need storage to track the entries in perf_pmu_migrate_context; we
537 * cannot use the event_entry because of RCU and we want to keep the
538 * group in tact which avoids us using the other two entries.
539 */
540 struct list_head migrate_entry;
541
f3ae75de
SE
542 struct hlist_node hlist_entry;
543 struct list_head active_entry;
0127c3ea 544 int nr_siblings;
d6f962b5 545 int group_flags;
cdd6c482 546 struct perf_event *group_leader;
a4eaf7f1 547 struct pmu *pmu;
54d751d4 548 void *pmu_private;
04289bb9 549
cdd6c482 550 enum perf_event_active_state state;
8a49542c 551 unsigned int attach_state;
e7850595 552 local64_t count;
a6e6dea6 553 atomic64_t child_count;
ee06094f 554
53cfbf59 555 /*
cdd6c482 556 * These are the total time in nanoseconds that the event
53cfbf59 557 * has been enabled (i.e. eligible to run, and the task has
cdd6c482 558 * been scheduled in, if this is a per-task event)
53cfbf59
PM
559 * and running (scheduled onto the CPU), respectively.
560 *
561 * They are computed from tstamp_enabled, tstamp_running and
cdd6c482 562 * tstamp_stopped when the event is in INACTIVE or ACTIVE state.
53cfbf59
PM
563 */
564 u64 total_time_enabled;
565 u64 total_time_running;
566
567 /*
568 * These are timestamps used for computing total_time_enabled
cdd6c482 569 * and total_time_running when the event is in INACTIVE or
53cfbf59
PM
570 * ACTIVE state, measured in nanoseconds from an arbitrary point
571 * in time.
cdd6c482
IM
572 * tstamp_enabled: the notional time when the event was enabled
573 * tstamp_running: the notional time when the event was scheduled on
53cfbf59 574 * tstamp_stopped: in INACTIVE state, the notional time when the
cdd6c482 575 * event was scheduled off.
53cfbf59
PM
576 */
577 u64 tstamp_enabled;
578 u64 tstamp_running;
579 u64 tstamp_stopped;
580
eed01528
SE
581 /*
582 * timestamp shadows the actual context timing but it can
583 * be safely used in NMI interrupt context. It reflects the
584 * context time as it was when the event was last scheduled in.
585 *
586 * ctx_time already accounts for ctx->timestamp. Therefore to
587 * compute ctx_time for a sample, simply add perf_clock().
588 */
589 u64 shadow_ctx_time;
590
24f1e32c 591 struct perf_event_attr attr;
c320c7b7 592 u16 header_size;
6844c09d 593 u16 id_header_size;
c320c7b7 594 u16 read_size;
cdd6c482 595 struct hw_perf_event hw;
0793a61d 596
cdd6c482 597 struct perf_event_context *ctx;
a6fa941d 598 atomic_long_t refcount;
0793a61d 599
53cfbf59
PM
600 /*
601 * These accumulate total time (in nanoseconds) that children
cdd6c482 602 * events have been enabled and running, respectively.
53cfbf59
PM
603 */
604 atomic64_t child_total_time_enabled;
605 atomic64_t child_total_time_running;
606
0793a61d 607 /*
d859e29f 608 * Protect attach/detach and child_list:
0793a61d 609 */
fccc714b
PZ
610 struct mutex child_mutex;
611 struct list_head child_list;
cdd6c482 612 struct perf_event *parent;
0793a61d
TG
613
614 int oncpu;
615 int cpu;
616
082ff5a2
PZ
617 struct list_head owner_entry;
618 struct task_struct *owner;
619
7b732a75
PZ
620 /* mmap bits */
621 struct mutex mmap_mutex;
622 atomic_t mmap_count;
26cb63ad 623
76369139 624 struct ring_buffer *rb;
10c6db11 625 struct list_head rb_entry;
b69cf536
PZ
626 unsigned long rcu_batches;
627 int rcu_pending;
37d81828 628
7b732a75 629 /* poll related */
0793a61d 630 wait_queue_head_t waitq;
3c446b3d 631 struct fasync_struct *fasync;
79f14641
PZ
632
633 /* delayed work for NMIs and such */
634 int pending_wakeup;
4c9e2542 635 int pending_kill;
79f14641 636 int pending_disable;
e360adbe 637 struct irq_work pending;
592903cd 638
79f14641
PZ
639 atomic_t event_limit;
640
375637bc
AS
641 /* address range filters */
642 struct perf_addr_filters_head addr_filters;
643 /* vma address array for file-based filders */
644 unsigned long *addr_filters_offs;
645 unsigned long addr_filters_gen;
646
cdd6c482 647 void (*destroy)(struct perf_event *);
592903cd 648 struct rcu_head rcu_head;
709e50cf
PZ
649
650 struct pid_namespace *ns;
8e5799b1 651 u64 id;
6fb2915d 652
34f43927 653 u64 (*clock)(void);
b326e956 654 perf_overflow_handler_t overflow_handler;
4dc0da86 655 void *overflow_handler_context;
453f19ee 656
07b139c8 657#ifdef CONFIG_EVENT_TRACING
2425bcb9 658 struct trace_event_call *tp_event;
6fb2915d 659 struct event_filter *filter;
ced39002
JO
660#ifdef CONFIG_FUNCTION_TRACER
661 struct ftrace_ops ftrace_ops;
662#endif
ee06094f 663#endif
6fb2915d 664
e5d1367f
SE
665#ifdef CONFIG_CGROUP_PERF
666 struct perf_cgroup *cgrp; /* cgroup event is attach to */
667 int cgrp_defer_enabled;
668#endif
669
6fb2915d 670#endif /* CONFIG_PERF_EVENTS */
0793a61d
TG
671};
672
673/**
cdd6c482 674 * struct perf_event_context - event context structure
0793a61d 675 *
cdd6c482 676 * Used as a container for task events and CPU events as well:
0793a61d 677 */
cdd6c482 678struct perf_event_context {
108b02cf 679 struct pmu *pmu;
0793a61d 680 /*
cdd6c482 681 * Protect the states of the events in the list,
d859e29f 682 * nr_active, and the list:
0793a61d 683 */
e625cce1 684 raw_spinlock_t lock;
d859e29f 685 /*
cdd6c482 686 * Protect the list of events. Locking either mutex or lock
d859e29f
PM
687 * is sufficient to ensure the list doesn't change; to change
688 * the list you need to lock both the mutex and the spinlock.
689 */
a308444c 690 struct mutex mutex;
04289bb9 691
2fde4f94 692 struct list_head active_ctx_list;
889ff015
FW
693 struct list_head pinned_groups;
694 struct list_head flexible_groups;
a308444c 695 struct list_head event_list;
cdd6c482 696 int nr_events;
a308444c
IM
697 int nr_active;
698 int is_active;
bfbd3381 699 int nr_stat;
0f5a2601 700 int nr_freq;
dddd3379 701 int rotate_disable;
a308444c
IM
702 atomic_t refcount;
703 struct task_struct *task;
53cfbf59
PM
704
705 /*
4af4998b 706 * Context clock, runs when context enabled.
53cfbf59 707 */
a308444c
IM
708 u64 time;
709 u64 timestamp;
564c2b21
PM
710
711 /*
712 * These fields let us detect when two contexts have both
713 * been cloned (inherited) from a common ancestor.
714 */
cdd6c482 715 struct perf_event_context *parent_ctx;
a308444c
IM
716 u64 parent_gen;
717 u64 generation;
718 int pin_count;
d010b332 719 int nr_cgroups; /* cgroup evts */
4af57ef2 720 void *task_ctx_data; /* pmu specific data */
28009ce4 721 struct rcu_head rcu_head;
0793a61d
TG
722};
723
7ae07ea3
FW
724/*
725 * Number of contexts where an event can trigger:
e7e7ee2e 726 * task, softirq, hardirq, nmi.
7ae07ea3
FW
727 */
728#define PERF_NR_CONTEXTS 4
729
0793a61d 730/**
cdd6c482 731 * struct perf_event_cpu_context - per cpu event context structure
0793a61d
TG
732 */
733struct perf_cpu_context {
cdd6c482
IM
734 struct perf_event_context ctx;
735 struct perf_event_context *task_ctx;
0793a61d 736 int active_oncpu;
3b6f9e5c 737 int exclusive;
4cfafd30
PZ
738
739 raw_spinlock_t hrtimer_lock;
9e630205
SE
740 struct hrtimer hrtimer;
741 ktime_t hrtimer_interval;
4cfafd30
PZ
742 unsigned int hrtimer_active;
743
3f1f3320 744 struct pmu *unique_pmu;
e5d1367f 745 struct perf_cgroup *cgrp;
0793a61d
TG
746};
747
5622f295 748struct perf_output_handle {
57c0c15b 749 struct perf_event *event;
76369139 750 struct ring_buffer *rb;
6d1acfd5 751 unsigned long wakeup;
5d967a8b 752 unsigned long size;
fdc26706
AS
753 union {
754 void *addr;
755 unsigned long head;
756 };
5d967a8b 757 int page;
5622f295
MM
758};
759
39bed6cb
MF
760#ifdef CONFIG_CGROUP_PERF
761
762/*
763 * perf_cgroup_info keeps track of time_enabled for a cgroup.
764 * This is a per-cpu dynamically allocated data structure.
765 */
766struct perf_cgroup_info {
767 u64 time;
768 u64 timestamp;
769};
770
771struct perf_cgroup {
772 struct cgroup_subsys_state css;
773 struct perf_cgroup_info __percpu *info;
774};
775
776/*
777 * Must ensure cgroup is pinned (css_get) before calling
778 * this function. In other words, we cannot call this function
779 * if there is no cgroup event for the current CPU context.
780 */
781static inline struct perf_cgroup *
614e4c4e 782perf_cgroup_from_task(struct task_struct *task, struct perf_event_context *ctx)
39bed6cb 783{
614e4c4e
SE
784 return container_of(task_css_check(task, perf_event_cgrp_id,
785 ctx ? lockdep_is_held(&ctx->lock)
786 : true),
39bed6cb
MF
787 struct perf_cgroup, css);
788}
789#endif /* CONFIG_CGROUP_PERF */
790
cdd6c482 791#ifdef CONFIG_PERF_EVENTS
829b42dd 792
fdc26706
AS
793extern void *perf_aux_output_begin(struct perf_output_handle *handle,
794 struct perf_event *event);
795extern void perf_aux_output_end(struct perf_output_handle *handle,
796 unsigned long size, bool truncated);
797extern int perf_aux_output_skip(struct perf_output_handle *handle,
798 unsigned long size);
799extern void *perf_get_aux(struct perf_output_handle *handle);
800
03d8e80b 801extern int perf_pmu_register(struct pmu *pmu, const char *name, int type);
b0a873eb 802extern void perf_pmu_unregister(struct pmu *pmu);
621a01ea 803
3bf101ba 804extern int perf_num_counters(void);
84c79910 805extern const char *perf_pmu_name(void);
ab0cce56
JO
806extern void __perf_event_task_sched_in(struct task_struct *prev,
807 struct task_struct *task);
808extern void __perf_event_task_sched_out(struct task_struct *prev,
809 struct task_struct *next);
cdd6c482
IM
810extern int perf_event_init_task(struct task_struct *child);
811extern void perf_event_exit_task(struct task_struct *child);
812extern void perf_event_free_task(struct task_struct *task);
4e231c79 813extern void perf_event_delayed_put(struct task_struct *task);
e03e7ee3 814extern struct file *perf_event_get(unsigned int fd);
ffe8690c 815extern const struct perf_event_attr *perf_event_attrs(struct perf_event *event);
cdd6c482 816extern void perf_event_print_debug(void);
33696fc0
PZ
817extern void perf_pmu_disable(struct pmu *pmu);
818extern void perf_pmu_enable(struct pmu *pmu);
ba532500
YZ
819extern void perf_sched_cb_dec(struct pmu *pmu);
820extern void perf_sched_cb_inc(struct pmu *pmu);
cdd6c482
IM
821extern int perf_event_task_disable(void);
822extern int perf_event_task_enable(void);
26ca5c11 823extern int perf_event_refresh(struct perf_event *event, int refresh);
cdd6c482 824extern void perf_event_update_userpage(struct perf_event *event);
fb0459d7
AV
825extern int perf_event_release_kernel(struct perf_event *event);
826extern struct perf_event *
827perf_event_create_kernel_counter(struct perf_event_attr *attr,
828 int cpu,
38a81da2 829 struct task_struct *task,
4dc0da86
AK
830 perf_overflow_handler_t callback,
831 void *context);
0cda4c02
YZ
832extern void perf_pmu_migrate_context(struct pmu *pmu,
833 int src_cpu, int dst_cpu);
ffe8690c 834extern u64 perf_event_read_local(struct perf_event *event);
59ed446f
PZ
835extern u64 perf_event_read_value(struct perf_event *event,
836 u64 *enabled, u64 *running);
5c92d124 837
d010b332 838
df1a132b 839struct perf_sample_data {
2565711f
PZ
840 /*
841 * Fields set by perf_sample_data_init(), group so as to
842 * minimize the cachelines touched.
843 */
844 u64 addr;
845 struct perf_raw_record *raw;
846 struct perf_branch_stack *br_stack;
847 u64 period;
848 u64 weight;
849 u64 txn;
850 union perf_mem_data_src data_src;
5622f295 851
2565711f
PZ
852 /*
853 * The other fields, optionally {set,used} by
854 * perf_{prepare,output}_sample().
855 */
856 u64 type;
5622f295
MM
857 u64 ip;
858 struct {
859 u32 pid;
860 u32 tid;
861 } tid_entry;
862 u64 time;
5622f295
MM
863 u64 id;
864 u64 stream_id;
865 struct {
866 u32 cpu;
867 u32 reserved;
868 } cpu_entry;
5622f295 869 struct perf_callchain_entry *callchain;
88a7c26a
AL
870
871 /*
872 * regs_user may point to task_pt_regs or to regs_user_copy, depending
873 * on arch details.
874 */
60e2364e 875 struct perf_regs regs_user;
88a7c26a
AL
876 struct pt_regs regs_user_copy;
877
60e2364e 878 struct perf_regs regs_intr;
c5ebcedb 879 u64 stack_user_size;
2565711f 880} ____cacheline_aligned;
df1a132b 881
770eee1f
SE
882/* default value for data source */
883#define PERF_MEM_NA (PERF_MEM_S(OP, NA) |\
884 PERF_MEM_S(LVL, NA) |\
885 PERF_MEM_S(SNOOP, NA) |\
886 PERF_MEM_S(LOCK, NA) |\
887 PERF_MEM_S(TLB, NA))
888
fd0d000b
RR
889static inline void perf_sample_data_init(struct perf_sample_data *data,
890 u64 addr, u64 period)
dc1d628a 891{
fd0d000b 892 /* remaining struct members initialized in perf_prepare_sample() */
dc1d628a
PZ
893 data->addr = addr;
894 data->raw = NULL;
bce38cd5 895 data->br_stack = NULL;
4018994f 896 data->period = period;
c3feedf2 897 data->weight = 0;
770eee1f 898 data->data_src.val = PERF_MEM_NA;
fdfbbd07 899 data->txn = 0;
dc1d628a
PZ
900}
901
5622f295
MM
902extern void perf_output_sample(struct perf_output_handle *handle,
903 struct perf_event_header *header,
904 struct perf_sample_data *data,
cdd6c482 905 struct perf_event *event);
5622f295
MM
906extern void perf_prepare_sample(struct perf_event_header *header,
907 struct perf_sample_data *data,
cdd6c482 908 struct perf_event *event,
5622f295
MM
909 struct pt_regs *regs);
910
a8b0ca17 911extern int perf_event_overflow(struct perf_event *event,
5622f295
MM
912 struct perf_sample_data *data,
913 struct pt_regs *regs);
df1a132b 914
9ecda41a
WN
915extern void perf_event_output_forward(struct perf_event *event,
916 struct perf_sample_data *data,
917 struct pt_regs *regs);
918extern void perf_event_output_backward(struct perf_event *event,
919 struct perf_sample_data *data,
920 struct pt_regs *regs);
21509084 921extern void perf_event_output(struct perf_event *event,
9ecda41a
WN
922 struct perf_sample_data *data,
923 struct pt_regs *regs);
21509084 924
1879445d
WN
925static inline bool
926is_default_overflow_handler(struct perf_event *event)
927{
9ecda41a
WN
928 if (likely(event->overflow_handler == perf_event_output_forward))
929 return true;
930 if (unlikely(event->overflow_handler == perf_event_output_backward))
931 return true;
932 return false;
1879445d
WN
933}
934
21509084
YZ
935extern void
936perf_event_header__init_id(struct perf_event_header *header,
937 struct perf_sample_data *data,
938 struct perf_event *event);
939extern void
940perf_event__output_id_sample(struct perf_event *event,
941 struct perf_output_handle *handle,
942 struct perf_sample_data *sample);
943
f38b0dbb
KL
944extern void
945perf_log_lost_samples(struct perf_event *event, u64 lost);
946
6c7e550f
FBH
947static inline bool is_sampling_event(struct perf_event *event)
948{
949 return event->attr.sample_period != 0;
950}
951
3b6f9e5c 952/*
cdd6c482 953 * Return 1 for a software event, 0 for a hardware event
3b6f9e5c 954 */
cdd6c482 955static inline int is_software_event(struct perf_event *event)
3b6f9e5c 956{
89a1e187 957 return event->pmu->task_ctx_nr == perf_sw_context;
3b6f9e5c
PM
958}
959
c5905afb 960extern struct static_key perf_swevent_enabled[PERF_COUNT_SW_MAX];
f29ac756 961
86038c5e 962extern void ___perf_sw_event(u32, u64, struct pt_regs *, u64);
a8b0ca17 963extern void __perf_sw_event(u32, u64, struct pt_regs *, u64);
f29ac756 964
b0f82b81 965#ifndef perf_arch_fetch_caller_regs
e7e7ee2e 966static inline void perf_arch_fetch_caller_regs(struct pt_regs *regs, unsigned long ip) { }
b0f82b81 967#endif
5331d7b8
FW
968
969/*
970 * Take a snapshot of the regs. Skip ip and frame pointer to
971 * the nth caller. We only need a few of the regs:
972 * - ip for PERF_SAMPLE_IP
973 * - cs for user_mode() tests
974 * - bp for callchains
975 * - eflags, for future purposes, just in case
976 */
b0f82b81 977static inline void perf_fetch_caller_regs(struct pt_regs *regs)
5331d7b8 978{
5331d7b8
FW
979 memset(regs, 0, sizeof(*regs));
980
b0f82b81 981 perf_arch_fetch_caller_regs(regs, CALLER_ADDR0);
5331d7b8
FW
982}
983
7e54a5a0 984static __always_inline void
a8b0ca17 985perf_sw_event(u32 event_id, u64 nr, struct pt_regs *regs, u64 addr)
e49a5bd3 986{
86038c5e
PZI
987 if (static_key_false(&perf_swevent_enabled[event_id]))
988 __perf_sw_event(event_id, nr, regs, addr);
989}
990
991DECLARE_PER_CPU(struct pt_regs, __perf_regs[4]);
7e54a5a0 992
86038c5e
PZI
993/*
994 * 'Special' version for the scheduler, it hard assumes no recursion,
995 * which is guaranteed by us not actually scheduling inside other swevents
996 * because those disable preemption.
997 */
998static __always_inline void
999perf_sw_event_sched(u32 event_id, u64 nr, u64 addr)
1000{
c5905afb 1001 if (static_key_false(&perf_swevent_enabled[event_id])) {
86038c5e
PZI
1002 struct pt_regs *regs = this_cpu_ptr(&__perf_regs[0]);
1003
1004 perf_fetch_caller_regs(regs);
1005 ___perf_sw_event(event_id, nr, regs, addr);
e49a5bd3
FW
1006 }
1007}
1008
9107c89e 1009extern struct static_key_false perf_sched_events;
ee6dcfa4 1010
ff303e66
PZ
1011static __always_inline bool
1012perf_sw_migrate_enabled(void)
1013{
1014 if (static_key_false(&perf_swevent_enabled[PERF_COUNT_SW_CPU_MIGRATIONS]))
1015 return true;
1016 return false;
1017}
1018
1019static inline void perf_event_task_migrate(struct task_struct *task)
1020{
1021 if (perf_sw_migrate_enabled())
1022 task->sched_migrated = 1;
1023}
1024
ab0cce56 1025static inline void perf_event_task_sched_in(struct task_struct *prev,
a8d757ef 1026 struct task_struct *task)
ab0cce56 1027{
9107c89e 1028 if (static_branch_unlikely(&perf_sched_events))
ab0cce56 1029 __perf_event_task_sched_in(prev, task);
ff303e66
PZ
1030
1031 if (perf_sw_migrate_enabled() && task->sched_migrated) {
1032 struct pt_regs *regs = this_cpu_ptr(&__perf_regs[0]);
1033
1034 perf_fetch_caller_regs(regs);
1035 ___perf_sw_event(PERF_COUNT_SW_CPU_MIGRATIONS, 1, regs, 0);
1036 task->sched_migrated = 0;
1037 }
ab0cce56
JO
1038}
1039
1040static inline void perf_event_task_sched_out(struct task_struct *prev,
1041 struct task_struct *next)
ee6dcfa4 1042{
86038c5e 1043 perf_sw_event_sched(PERF_COUNT_SW_CONTEXT_SWITCHES, 1, 0);
ee6dcfa4 1044
9107c89e 1045 if (static_branch_unlikely(&perf_sched_events))
ab0cce56 1046 __perf_event_task_sched_out(prev, next);
ee6dcfa4
PZ
1047}
1048
eacd3ecc
MF
1049static inline u64 __perf_event_count(struct perf_event *event)
1050{
1051 return local64_read(&event->count) + atomic64_read(&event->child_count);
1052}
1053
3af9e859 1054extern void perf_event_mmap(struct vm_area_struct *vma);
39447b38 1055extern struct perf_guest_info_callbacks *perf_guest_cbs;
dcf46b94
ZY
1056extern int perf_register_guest_info_callbacks(struct perf_guest_info_callbacks *callbacks);
1057extern int perf_unregister_guest_info_callbacks(struct perf_guest_info_callbacks *callbacks);
39447b38 1058
e041e328 1059extern void perf_event_exec(void);
82b89778 1060extern void perf_event_comm(struct task_struct *tsk, bool exec);
cdd6c482 1061extern void perf_event_fork(struct task_struct *tsk);
8d1b2d93 1062
56962b44
FW
1063/* Callchains */
1064DECLARE_PER_CPU(struct perf_callchain_entry, perf_callchain_entry);
1065
e7e7ee2e
IM
1066extern void perf_callchain_user(struct perf_callchain_entry *entry, struct pt_regs *regs);
1067extern void perf_callchain_kernel(struct perf_callchain_entry *entry, struct pt_regs *regs);
568b329a
AS
1068extern struct perf_callchain_entry *
1069get_perf_callchain(struct pt_regs *regs, u32 init_nr, bool kernel, bool user,
1070 bool crosstask, bool add_mark);
1071extern int get_callchain_buffers(void);
1072extern void put_callchain_buffers(void);
394ee076 1073
c5dfd78e
ACM
1074extern int sysctl_perf_event_max_stack;
1075
568b329a 1076static inline int perf_callchain_store(struct perf_callchain_entry *entry, u64 ip)
70791ce9 1077{
c5dfd78e 1078 if (entry->nr < sysctl_perf_event_max_stack) {
70791ce9 1079 entry->ip[entry->nr++] = ip;
568b329a
AS
1080 return 0;
1081 } else {
1082 return -1; /* no more room, stop walking the stack */
1083 }
70791ce9 1084}
394ee076 1085
cdd6c482
IM
1086extern int sysctl_perf_event_paranoid;
1087extern int sysctl_perf_event_mlock;
1088extern int sysctl_perf_event_sample_rate;
14c63f17
DH
1089extern int sysctl_perf_cpu_time_max_percent;
1090
1091extern void perf_sample_event_took(u64 sample_len_ns);
1ccd1549 1092
163ec435
PZ
1093extern int perf_proc_update_handler(struct ctl_table *table, int write,
1094 void __user *buffer, size_t *lenp,
1095 loff_t *ppos);
14c63f17
DH
1096extern int perf_cpu_time_max_percent_handler(struct ctl_table *table, int write,
1097 void __user *buffer, size_t *lenp,
1098 loff_t *ppos);
1099
c5dfd78e
ACM
1100int perf_event_max_stack_handler(struct ctl_table *table, int write,
1101 void __user *buffer, size_t *lenp, loff_t *ppos);
163ec435 1102
320ebf09
PZ
1103static inline bool perf_paranoid_tracepoint_raw(void)
1104{
1105 return sysctl_perf_event_paranoid > -1;
1106}
1107
1108static inline bool perf_paranoid_cpu(void)
1109{
1110 return sysctl_perf_event_paranoid > 0;
1111}
1112
1113static inline bool perf_paranoid_kernel(void)
1114{
1115 return sysctl_perf_event_paranoid > 1;
1116}
1117
cdd6c482 1118extern void perf_event_init(void);
1c024eca
PZ
1119extern void perf_tp_event(u64 addr, u64 count, void *record,
1120 int entry_size, struct pt_regs *regs,
e6dab5ff
AV
1121 struct hlist_head *head, int rctx,
1122 struct task_struct *task);
24f1e32c 1123extern void perf_bp_event(struct perf_event *event, void *data);
0d905bca 1124
9d23a90a 1125#ifndef perf_misc_flags
e7e7ee2e
IM
1126# define perf_misc_flags(regs) \
1127 (user_mode(regs) ? PERF_RECORD_MISC_USER : PERF_RECORD_MISC_KERNEL)
1128# define perf_instruction_pointer(regs) instruction_pointer(regs)
9d23a90a
PM
1129#endif
1130
bce38cd5
SE
1131static inline bool has_branch_stack(struct perf_event *event)
1132{
1133 return event->attr.sample_type & PERF_SAMPLE_BRANCH_STACK;
a46a2300
YZ
1134}
1135
1136static inline bool needs_branch_stack(struct perf_event *event)
1137{
1138 return event->attr.branch_sample_type != 0;
bce38cd5
SE
1139}
1140
45bfb2e5
PZ
1141static inline bool has_aux(struct perf_event *event)
1142{
1143 return event->pmu->setup_aux;
1144}
1145
9ecda41a
WN
1146static inline bool is_write_backward(struct perf_event *event)
1147{
1148 return !!event->attr.write_backward;
1149}
1150
375637bc
AS
1151static inline bool has_addr_filter(struct perf_event *event)
1152{
1153 return event->pmu->nr_addr_filters;
1154}
1155
1156/*
1157 * An inherited event uses parent's filters
1158 */
1159static inline struct perf_addr_filters_head *
1160perf_event_addr_filters(struct perf_event *event)
1161{
1162 struct perf_addr_filters_head *ifh = &event->addr_filters;
1163
1164 if (event->parent)
1165 ifh = &event->parent->addr_filters;
1166
1167 return ifh;
1168}
1169
1170extern void perf_event_addr_filters_sync(struct perf_event *event);
1171
5622f295 1172extern int perf_output_begin(struct perf_output_handle *handle,
a7ac67ea 1173 struct perf_event *event, unsigned int size);
9ecda41a
WN
1174extern int perf_output_begin_forward(struct perf_output_handle *handle,
1175 struct perf_event *event,
1176 unsigned int size);
1177extern int perf_output_begin_backward(struct perf_output_handle *handle,
1178 struct perf_event *event,
1179 unsigned int size);
1180
5622f295 1181extern void perf_output_end(struct perf_output_handle *handle);
91d7753a 1182extern unsigned int perf_output_copy(struct perf_output_handle *handle,
5622f295 1183 const void *buf, unsigned int len);
5685e0ff
JO
1184extern unsigned int perf_output_skip(struct perf_output_handle *handle,
1185 unsigned int len);
4ed7c92d
PZ
1186extern int perf_swevent_get_recursion_context(void);
1187extern void perf_swevent_put_recursion_context(int rctx);
ab573844 1188extern u64 perf_swevent_set_period(struct perf_event *event);
44234adc
FW
1189extern void perf_event_enable(struct perf_event *event);
1190extern void perf_event_disable(struct perf_event *event);
fae3fde6 1191extern void perf_event_disable_local(struct perf_event *event);
e9d2b064 1192extern void perf_event_task_tick(void);
e041e328 1193#else /* !CONFIG_PERF_EVENTS: */
fdc26706
AS
1194static inline void *
1195perf_aux_output_begin(struct perf_output_handle *handle,
1196 struct perf_event *event) { return NULL; }
1197static inline void
1198perf_aux_output_end(struct perf_output_handle *handle, unsigned long size,
1199 bool truncated) { }
1200static inline int
1201perf_aux_output_skip(struct perf_output_handle *handle,
1202 unsigned long size) { return -EINVAL; }
1203static inline void *
1204perf_get_aux(struct perf_output_handle *handle) { return NULL; }
0793a61d 1205static inline void
ff303e66
PZ
1206perf_event_task_migrate(struct task_struct *task) { }
1207static inline void
ab0cce56
JO
1208perf_event_task_sched_in(struct task_struct *prev,
1209 struct task_struct *task) { }
1210static inline void
1211perf_event_task_sched_out(struct task_struct *prev,
1212 struct task_struct *next) { }
cdd6c482
IM
1213static inline int perf_event_init_task(struct task_struct *child) { return 0; }
1214static inline void perf_event_exit_task(struct task_struct *child) { }
1215static inline void perf_event_free_task(struct task_struct *task) { }
4e231c79 1216static inline void perf_event_delayed_put(struct task_struct *task) { }
e03e7ee3 1217static inline struct file *perf_event_get(unsigned int fd) { return ERR_PTR(-EINVAL); }
ffe8690c
KX
1218static inline const struct perf_event_attr *perf_event_attrs(struct perf_event *event)
1219{
1220 return ERR_PTR(-EINVAL);
1221}
1222static inline u64 perf_event_read_local(struct perf_event *event) { return -EINVAL; }
57c0c15b 1223static inline void perf_event_print_debug(void) { }
57c0c15b
IM
1224static inline int perf_event_task_disable(void) { return -EINVAL; }
1225static inline int perf_event_task_enable(void) { return -EINVAL; }
26ca5c11
AK
1226static inline int perf_event_refresh(struct perf_event *event, int refresh)
1227{
1228 return -EINVAL;
1229}
15dbf27c 1230
925d519a 1231static inline void
a8b0ca17 1232perf_sw_event(u32 event_id, u64 nr, struct pt_regs *regs, u64 addr) { }
24f1e32c 1233static inline void
86038c5e
PZI
1234perf_sw_event_sched(u32 event_id, u64 nr, u64 addr) { }
1235static inline void
184f412c 1236perf_bp_event(struct perf_event *event, void *data) { }
0a4a9391 1237
39447b38 1238static inline int perf_register_guest_info_callbacks
e7e7ee2e 1239(struct perf_guest_info_callbacks *callbacks) { return 0; }
39447b38 1240static inline int perf_unregister_guest_info_callbacks
e7e7ee2e 1241(struct perf_guest_info_callbacks *callbacks) { return 0; }
39447b38 1242
57c0c15b 1243static inline void perf_event_mmap(struct vm_area_struct *vma) { }
e041e328 1244static inline void perf_event_exec(void) { }
82b89778 1245static inline void perf_event_comm(struct task_struct *tsk, bool exec) { }
cdd6c482
IM
1246static inline void perf_event_fork(struct task_struct *tsk) { }
1247static inline void perf_event_init(void) { }
184f412c 1248static inline int perf_swevent_get_recursion_context(void) { return -1; }
4ed7c92d 1249static inline void perf_swevent_put_recursion_context(int rctx) { }
ab573844 1250static inline u64 perf_swevent_set_period(struct perf_event *event) { return 0; }
44234adc
FW
1251static inline void perf_event_enable(struct perf_event *event) { }
1252static inline void perf_event_disable(struct perf_event *event) { }
500ad2d8 1253static inline int __perf_event_disable(void *info) { return -1; }
e9d2b064 1254static inline void perf_event_task_tick(void) { }
ffe8690c 1255static inline int perf_event_release_kernel(struct perf_event *event) { return 0; }
0793a61d
TG
1256#endif
1257
6c4d3bc9
DR
1258#if defined(CONFIG_PERF_EVENTS) && defined(CONFIG_CPU_SUP_INTEL)
1259extern void perf_restore_debug_store(void);
1260#else
1d9d8639 1261static inline void perf_restore_debug_store(void) { }
0793a61d
TG
1262#endif
1263
e7e7ee2e 1264#define perf_output_put(handle, x) perf_output_copy((handle), &(x), sizeof(x))
5622f295 1265
3f6da390 1266/*
0a0fca9d 1267 * This has to have a higher priority than migration_notifier in sched/core.c.
3f6da390 1268 */
e7e7ee2e
IM
1269#define perf_cpu_notifier(fn) \
1270do { \
0db0628d 1271 static struct notifier_block fn##_nb = \
e7e7ee2e 1272 { .notifier_call = fn, .priority = CPU_PRI_PERF }; \
c13d38e4 1273 unsigned long cpu = smp_processor_id(); \
6760bca9 1274 unsigned long flags; \
f0bdb5e0
SB
1275 \
1276 cpu_notifier_register_begin(); \
e7e7ee2e 1277 fn(&fn##_nb, (unsigned long)CPU_UP_PREPARE, \
c13d38e4 1278 (void *)(unsigned long)cpu); \
6760bca9 1279 local_irq_save(flags); \
e7e7ee2e 1280 fn(&fn##_nb, (unsigned long)CPU_STARTING, \
c13d38e4 1281 (void *)(unsigned long)cpu); \
6760bca9 1282 local_irq_restore(flags); \
e7e7ee2e 1283 fn(&fn##_nb, (unsigned long)CPU_ONLINE, \
c13d38e4 1284 (void *)(unsigned long)cpu); \
f0bdb5e0
SB
1285 __register_cpu_notifier(&fn##_nb); \
1286 cpu_notifier_register_done(); \
3f6da390
PZ
1287} while (0)
1288
f0bdb5e0
SB
1289/*
1290 * Bare-bones version of perf_cpu_notifier(), which doesn't invoke the
1291 * callback for already online CPUs.
1292 */
1293#define __perf_cpu_notifier(fn) \
1294do { \
1295 static struct notifier_block fn##_nb = \
1296 { .notifier_call = fn, .priority = CPU_PRI_PERF }; \
1297 \
1298 __register_cpu_notifier(&fn##_nb); \
1299} while (0)
641cc938 1300
2663960c
SB
1301struct perf_pmu_events_attr {
1302 struct device_attribute attr;
1303 u64 id;
3a54aaa0 1304 const char *event_str;
2663960c
SB
1305};
1306
fd979c01
CS
1307ssize_t perf_event_sysfs_show(struct device *dev, struct device_attribute *attr,
1308 char *page);
1309
2663960c
SB
1310#define PMU_EVENT_ATTR(_name, _var, _id, _show) \
1311static struct perf_pmu_events_attr _var = { \
1312 .attr = __ATTR(_name, 0444, _show, NULL), \
1313 .id = _id, \
1314};
1315
f0405b81
CS
1316#define PMU_EVENT_ATTR_STRING(_name, _var, _str) \
1317static struct perf_pmu_events_attr _var = { \
1318 .attr = __ATTR(_name, 0444, perf_event_sysfs_show, NULL), \
1319 .id = 0, \
1320 .event_str = _str, \
1321};
1322
641cc938
JO
1323#define PMU_FORMAT_ATTR(_name, _format) \
1324static ssize_t \
1325_name##_show(struct device *dev, \
1326 struct device_attribute *attr, \
1327 char *page) \
1328{ \
1329 BUILD_BUG_ON(sizeof(_format) >= PAGE_SIZE); \
1330 return sprintf(page, _format "\n"); \
1331} \
1332 \
1333static struct device_attribute format_attr_##_name = __ATTR_RO(_name)
1334
cdd6c482 1335#endif /* _LINUX_PERF_EVENT_H */
This page took 0.511442 seconds and 5 git commands to generate.