Merge branch 'linux-linaro-lsk-v4.4' into linux-linaro-lsk-v4.4-android
[firefly-linux-kernel-4.4.55.git] / tools / perf / util / auxtrace.h
1 /*
2  * auxtrace.h: AUX area trace support
3  * Copyright (c) 2013-2015, Intel Corporation.
4  *
5  * This program is free software; you can redistribute it and/or modify it
6  * under the terms and conditions of the GNU General Public License,
7  * version 2, as published by the Free Software Foundation.
8  *
9  * This program is distributed in the hope it will be useful, but WITHOUT
10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
12  * more details.
13  *
14  */
15
16 #ifndef __PERF_AUXTRACE_H
17 #define __PERF_AUXTRACE_H
18
19 #include <sys/types.h>
20 #include <stdbool.h>
21 #include <stddef.h>
22 #include <linux/list.h>
23 #include <linux/perf_event.h>
24 #include <linux/types.h>
25
26 #include "../perf.h"
27 #include "event.h"
28 #include "session.h"
29 #include "debug.h"
30
31 union perf_event;
32 struct perf_session;
33 struct perf_evlist;
34 struct perf_tool;
35 struct option;
36 struct record_opts;
37 struct auxtrace_info_event;
38 struct events_stats;
39
40 enum auxtrace_type {
41         PERF_AUXTRACE_UNKNOWN,
42         PERF_AUXTRACE_INTEL_PT,
43         PERF_AUXTRACE_INTEL_BTS,
44         PERF_AUXTRACE_CS_ETM,
45 };
46
47 enum itrace_period_type {
48         PERF_ITRACE_PERIOD_INSTRUCTIONS,
49         PERF_ITRACE_PERIOD_TICKS,
50         PERF_ITRACE_PERIOD_NANOSECS,
51 };
52
53 /**
54  * struct itrace_synth_opts - AUX area tracing synthesis options.
55  * @set: indicates whether or not options have been set
56  * @inject: indicates the event (not just the sample) must be fully synthesized
57  *          because 'perf inject' will write it out
58  * @instructions: whether to synthesize 'instructions' events
59  * @branches: whether to synthesize 'branches' events
60  * @transactions: whether to synthesize events for transactions
61  * @errors: whether to synthesize decoder error events
62  * @dont_decode: whether to skip decoding entirely
63  * @log: write a decoding log
64  * @calls: limit branch samples to calls (can be combined with @returns)
65  * @returns: limit branch samples to returns (can be combined with @calls)
66  * @callchain: add callchain to 'instructions' events
67  * @last_branch: add branch context to 'instruction' events
68  * @callchain_sz: maximum callchain size
69  * @last_branch_sz: branch context size
70  * @period: 'instructions' events period
71  * @period_type: 'instructions' events period type
72  */
73 struct itrace_synth_opts {
74         bool                    set;
75         bool                    inject;
76         bool                    instructions;
77         bool                    branches;
78         bool                    transactions;
79         bool                    errors;
80         bool                    dont_decode;
81         bool                    log;
82         bool                    calls;
83         bool                    returns;
84         bool                    callchain;
85         bool                    last_branch;
86         unsigned int            callchain_sz;
87         unsigned int            last_branch_sz;
88         unsigned long long      period;
89         enum itrace_period_type period_type;
90 };
91
92 /**
93  * struct auxtrace_index_entry - indexes a AUX area tracing event within a
94  *                               perf.data file.
95  * @file_offset: offset within the perf.data file
96  * @sz: size of the event
97  */
98 struct auxtrace_index_entry {
99         u64                     file_offset;
100         u64                     sz;
101 };
102
103 #define PERF_AUXTRACE_INDEX_ENTRY_COUNT 256
104
105 /**
106  * struct auxtrace_index - index of AUX area tracing events within a perf.data
107  *                         file.
108  * @list: linking a number of arrays of entries
109  * @nr: number of entries
110  * @entries: array of entries
111  */
112 struct auxtrace_index {
113         struct list_head        list;
114         size_t                  nr;
115         struct auxtrace_index_entry entries[PERF_AUXTRACE_INDEX_ENTRY_COUNT];
116 };
117
118 /**
119  * struct auxtrace - session callbacks to allow AUX area data decoding.
120  * @process_event: lets the decoder see all session events
121  * @flush_events: process any remaining data
122  * @free_events: free resources associated with event processing
123  * @free: free resources associated with the session
124  */
125 struct auxtrace {
126         int (*process_event)(struct perf_session *session,
127                              union perf_event *event,
128                              struct perf_sample *sample,
129                              struct perf_tool *tool);
130         int (*process_auxtrace_event)(struct perf_session *session,
131                                       union perf_event *event,
132                                       struct perf_tool *tool);
133         int (*flush_events)(struct perf_session *session,
134                             struct perf_tool *tool);
135         void (*free_events)(struct perf_session *session);
136         void (*free)(struct perf_session *session);
137 };
138
139 /**
140  * struct auxtrace_buffer - a buffer containing AUX area tracing data.
141  * @list: buffers are queued in a list held by struct auxtrace_queue
142  * @size: size of the buffer in bytes
143  * @pid: in per-thread mode, the pid this buffer is associated with
144  * @tid: in per-thread mode, the tid this buffer is associated with
145  * @cpu: in per-cpu mode, the cpu this buffer is associated with
146  * @data: actual buffer data (can be null if the data has not been loaded)
147  * @data_offset: file offset at which the buffer can be read
148  * @mmap_addr: mmap address at which the buffer can be read
149  * @mmap_size: size of the mmap at @mmap_addr
150  * @data_needs_freeing: @data was malloc'd so free it when it is no longer
151  *                      needed
152  * @consecutive: the original data was split up and this buffer is consecutive
153  *               to the previous buffer
154  * @offset: offset as determined by aux_head / aux_tail members of struct
155  *          perf_event_mmap_page
156  * @reference: an implementation-specific reference determined when the data is
157  *             recorded
158  * @buffer_nr: used to number each buffer
159  * @use_size: implementation actually only uses this number of bytes
160  * @use_data: implementation actually only uses data starting at this address
161  */
162 struct auxtrace_buffer {
163         struct list_head        list;
164         size_t                  size;
165         pid_t                   pid;
166         pid_t                   tid;
167         int                     cpu;
168         void                    *data;
169         off_t                   data_offset;
170         void                    *mmap_addr;
171         size_t                  mmap_size;
172         bool                    data_needs_freeing;
173         bool                    consecutive;
174         u64                     offset;
175         u64                     reference;
176         u64                     buffer_nr;
177         size_t                  use_size;
178         void                    *use_data;
179 };
180
181 /**
182  * struct auxtrace_queue - a queue of AUX area tracing data buffers.
183  * @head: head of buffer list
184  * @tid: in per-thread mode, the tid this queue is associated with
185  * @cpu: in per-cpu mode, the cpu this queue is associated with
186  * @set: %true once this queue has been dedicated to a specific thread or cpu
187  * @priv: implementation-specific data
188  */
189 struct auxtrace_queue {
190         struct list_head        head;
191         pid_t                   tid;
192         int                     cpu;
193         bool                    set;
194         void                    *priv;
195 };
196
197 /**
198  * struct auxtrace_queues - an array of AUX area tracing queues.
199  * @queue_array: array of queues
200  * @nr_queues: number of queues
201  * @new_data: set whenever new data is queued
202  * @populated: queues have been fully populated using the auxtrace_index
203  * @next_buffer_nr: used to number each buffer
204  */
205 struct auxtrace_queues {
206         struct auxtrace_queue   *queue_array;
207         unsigned int            nr_queues;
208         bool                    new_data;
209         bool                    populated;
210         u64                     next_buffer_nr;
211 };
212
213 /**
214  * struct auxtrace_heap_item - element of struct auxtrace_heap.
215  * @queue_nr: queue number
216  * @ordinal: value used for sorting (lowest ordinal is top of the heap) expected
217  *           to be a timestamp
218  */
219 struct auxtrace_heap_item {
220         unsigned int            queue_nr;
221         u64                     ordinal;
222 };
223
224 /**
225  * struct auxtrace_heap - a heap suitable for sorting AUX area tracing queues.
226  * @heap_array: the heap
227  * @heap_cnt: the number of elements in the heap
228  * @heap_sz: maximum number of elements (grows as needed)
229  */
230 struct auxtrace_heap {
231         struct auxtrace_heap_item       *heap_array;
232         unsigned int            heap_cnt;
233         unsigned int            heap_sz;
234 };
235
236 /**
237  * struct auxtrace_mmap - records an mmap of the auxtrace buffer.
238  * @base: address of mapped area
239  * @userpg: pointer to buffer's perf_event_mmap_page
240  * @mask: %0 if @len is not a power of two, otherwise (@len - %1)
241  * @len: size of mapped area
242  * @prev: previous aux_head
243  * @idx: index of this mmap
244  * @tid: tid for a per-thread mmap (also set if there is only 1 tid on a per-cpu
245  *       mmap) otherwise %0
246  * @cpu: cpu number for a per-cpu mmap otherwise %-1
247  */
248 struct auxtrace_mmap {
249         void            *base;
250         void            *userpg;
251         size_t          mask;
252         size_t          len;
253         u64             prev;
254         int             idx;
255         pid_t           tid;
256         int             cpu;
257 };
258
259 /**
260  * struct auxtrace_mmap_params - parameters to set up struct auxtrace_mmap.
261  * @mask: %0 if @len is not a power of two, otherwise (@len - %1)
262  * @offset: file offset of mapped area
263  * @len: size of mapped area
264  * @prot: mmap memory protection
265  * @idx: index of this mmap
266  * @tid: tid for a per-thread mmap (also set if there is only 1 tid on a per-cpu
267  *       mmap) otherwise %0
268  * @cpu: cpu number for a per-cpu mmap otherwise %-1
269  */
270 struct auxtrace_mmap_params {
271         size_t          mask;
272         off_t           offset;
273         size_t          len;
274         int             prot;
275         int             idx;
276         pid_t           tid;
277         int             cpu;
278 };
279
280 /**
281  * struct auxtrace_record - callbacks for recording AUX area data.
282  * @recording_options: validate and process recording options
283  * @info_priv_size: return the size of the private data in auxtrace_info_event
284  * @info_fill: fill-in the private data in auxtrace_info_event
285  * @free: free this auxtrace record structure
286  * @snapshot_start: starting a snapshot
287  * @snapshot_finish: finishing a snapshot
288  * @find_snapshot: find data to snapshot within auxtrace mmap
289  * @parse_snapshot_options: parse snapshot options
290  * @reference: provide a 64-bit reference number for auxtrace_event
291  * @read_finish: called after reading from an auxtrace mmap
292  */
293 struct auxtrace_record {
294         int (*recording_options)(struct auxtrace_record *itr,
295                                  struct perf_evlist *evlist,
296                                  struct record_opts *opts);
297         size_t (*info_priv_size)(struct auxtrace_record *itr,
298                                  struct perf_evlist *evlist);
299         int (*info_fill)(struct auxtrace_record *itr,
300                          struct perf_session *session,
301                          struct auxtrace_info_event *auxtrace_info,
302                          size_t priv_size);
303         void (*free)(struct auxtrace_record *itr);
304         int (*snapshot_start)(struct auxtrace_record *itr);
305         int (*snapshot_finish)(struct auxtrace_record *itr);
306         int (*find_snapshot)(struct auxtrace_record *itr, int idx,
307                              struct auxtrace_mmap *mm, unsigned char *data,
308                              u64 *head, u64 *old);
309         int (*parse_snapshot_options)(struct auxtrace_record *itr,
310                                       struct record_opts *opts,
311                                       const char *str);
312         u64 (*reference)(struct auxtrace_record *itr);
313         int (*read_finish)(struct auxtrace_record *itr, int idx);
314         unsigned int alignment;
315 };
316
317 #ifdef HAVE_AUXTRACE_SUPPORT
318
319 /*
320  * In snapshot mode the mmapped page is read-only which makes using
321  * __sync_val_compare_and_swap() problematic.  However, snapshot mode expects
322  * the buffer is not updated while the snapshot is made (e.g. Intel PT disables
323  * the event) so there is not a race anyway.
324  */
325 static inline u64 auxtrace_mmap__read_snapshot_head(struct auxtrace_mmap *mm)
326 {
327         struct perf_event_mmap_page *pc = mm->userpg;
328         u64 head = ACCESS_ONCE(pc->aux_head);
329
330         /* Ensure all reads are done after we read the head */
331         rmb();
332         return head;
333 }
334
335 static inline u64 auxtrace_mmap__read_head(struct auxtrace_mmap *mm)
336 {
337         struct perf_event_mmap_page *pc = mm->userpg;
338 #if BITS_PER_LONG == 64 || !defined(HAVE_SYNC_COMPARE_AND_SWAP_SUPPORT)
339         u64 head = ACCESS_ONCE(pc->aux_head);
340 #else
341         u64 head = __sync_val_compare_and_swap(&pc->aux_head, 0, 0);
342 #endif
343
344         /* Ensure all reads are done after we read the head */
345         rmb();
346         return head;
347 }
348
349 static inline void auxtrace_mmap__write_tail(struct auxtrace_mmap *mm, u64 tail)
350 {
351         struct perf_event_mmap_page *pc = mm->userpg;
352 #if BITS_PER_LONG != 64 && defined(HAVE_SYNC_COMPARE_AND_SWAP_SUPPORT)
353         u64 old_tail;
354 #endif
355
356         /* Ensure all reads are done before we write the tail out */
357         mb();
358 #if BITS_PER_LONG == 64 || !defined(HAVE_SYNC_COMPARE_AND_SWAP_SUPPORT)
359         pc->aux_tail = tail;
360 #else
361         do {
362                 old_tail = __sync_val_compare_and_swap(&pc->aux_tail, 0, 0);
363         } while (!__sync_bool_compare_and_swap(&pc->aux_tail, old_tail, tail));
364 #endif
365 }
366
367 int auxtrace_mmap__mmap(struct auxtrace_mmap *mm,
368                         struct auxtrace_mmap_params *mp,
369                         void *userpg, int fd);
370 void auxtrace_mmap__munmap(struct auxtrace_mmap *mm);
371 void auxtrace_mmap_params__init(struct auxtrace_mmap_params *mp,
372                                 off_t auxtrace_offset,
373                                 unsigned int auxtrace_pages,
374                                 bool auxtrace_overwrite);
375 void auxtrace_mmap_params__set_idx(struct auxtrace_mmap_params *mp,
376                                    struct perf_evlist *evlist, int idx,
377                                    bool per_cpu);
378
379 typedef int (*process_auxtrace_t)(struct perf_tool *tool,
380                                   union perf_event *event, void *data1,
381                                   size_t len1, void *data2, size_t len2);
382
383 int auxtrace_mmap__read(struct auxtrace_mmap *mm, struct auxtrace_record *itr,
384                         struct perf_tool *tool, process_auxtrace_t fn);
385
386 int auxtrace_mmap__read_snapshot(struct auxtrace_mmap *mm,
387                                  struct auxtrace_record *itr,
388                                  struct perf_tool *tool, process_auxtrace_t fn,
389                                  size_t snapshot_size);
390
391 int auxtrace_queues__init(struct auxtrace_queues *queues);
392 int auxtrace_queues__add_event(struct auxtrace_queues *queues,
393                                struct perf_session *session,
394                                union perf_event *event, off_t data_offset,
395                                struct auxtrace_buffer **buffer_ptr);
396 void auxtrace_queues__free(struct auxtrace_queues *queues);
397 int auxtrace_queues__process_index(struct auxtrace_queues *queues,
398                                    struct perf_session *session);
399 struct auxtrace_buffer *auxtrace_buffer__next(struct auxtrace_queue *queue,
400                                               struct auxtrace_buffer *buffer);
401 void *auxtrace_buffer__get_data(struct auxtrace_buffer *buffer, int fd);
402 void auxtrace_buffer__put_data(struct auxtrace_buffer *buffer);
403 void auxtrace_buffer__drop_data(struct auxtrace_buffer *buffer);
404 void auxtrace_buffer__free(struct auxtrace_buffer *buffer);
405
406 int auxtrace_heap__add(struct auxtrace_heap *heap, unsigned int queue_nr,
407                        u64 ordinal);
408 void auxtrace_heap__pop(struct auxtrace_heap *heap);
409 void auxtrace_heap__free(struct auxtrace_heap *heap);
410
411 struct auxtrace_cache_entry {
412         struct hlist_node hash;
413         u32 key;
414 };
415
416 struct auxtrace_cache *auxtrace_cache__new(unsigned int bits, size_t entry_size,
417                                            unsigned int limit_percent);
418 void auxtrace_cache__free(struct auxtrace_cache *auxtrace_cache);
419 void *auxtrace_cache__alloc_entry(struct auxtrace_cache *c);
420 void auxtrace_cache__free_entry(struct auxtrace_cache *c, void *entry);
421 int auxtrace_cache__add(struct auxtrace_cache *c, u32 key,
422                         struct auxtrace_cache_entry *entry);
423 void *auxtrace_cache__lookup(struct auxtrace_cache *c, u32 key);
424
425 struct auxtrace_record *auxtrace_record__init(struct perf_evlist *evlist,
426                                               int *err);
427
428 int auxtrace_parse_snapshot_options(struct auxtrace_record *itr,
429                                     struct record_opts *opts,
430                                     const char *str);
431 int auxtrace_record__options(struct auxtrace_record *itr,
432                              struct perf_evlist *evlist,
433                              struct record_opts *opts);
434 size_t auxtrace_record__info_priv_size(struct auxtrace_record *itr,
435                                        struct perf_evlist *evlist);
436 int auxtrace_record__info_fill(struct auxtrace_record *itr,
437                                struct perf_session *session,
438                                struct auxtrace_info_event *auxtrace_info,
439                                size_t priv_size);
440 void auxtrace_record__free(struct auxtrace_record *itr);
441 int auxtrace_record__snapshot_start(struct auxtrace_record *itr);
442 int auxtrace_record__snapshot_finish(struct auxtrace_record *itr);
443 int auxtrace_record__find_snapshot(struct auxtrace_record *itr, int idx,
444                                    struct auxtrace_mmap *mm,
445                                    unsigned char *data, u64 *head, u64 *old);
446 u64 auxtrace_record__reference(struct auxtrace_record *itr);
447
448 int auxtrace_index__auxtrace_event(struct list_head *head, union perf_event *event,
449                                    off_t file_offset);
450 int auxtrace_index__write(int fd, struct list_head *head);
451 int auxtrace_index__process(int fd, u64 size, struct perf_session *session,
452                             bool needs_swap);
453 void auxtrace_index__free(struct list_head *head);
454
455 void auxtrace_synth_error(struct auxtrace_error_event *auxtrace_error, int type,
456                           int code, int cpu, pid_t pid, pid_t tid, u64 ip,
457                           const char *msg);
458
459 int perf_event__synthesize_auxtrace_info(struct auxtrace_record *itr,
460                                          struct perf_tool *tool,
461                                          struct perf_session *session,
462                                          perf_event__handler_t process);
463 int perf_event__process_auxtrace_info(struct perf_tool *tool,
464                                       union perf_event *event,
465                                       struct perf_session *session);
466 s64 perf_event__process_auxtrace(struct perf_tool *tool,
467                                  union perf_event *event,
468                                  struct perf_session *session);
469 int perf_event__process_auxtrace_error(struct perf_tool *tool,
470                                        union perf_event *event,
471                                        struct perf_session *session);
472 int itrace_parse_synth_opts(const struct option *opt, const char *str,
473                             int unset);
474 void itrace_synth_opts__set_default(struct itrace_synth_opts *synth_opts);
475
476 size_t perf_event__fprintf_auxtrace_error(union perf_event *event, FILE *fp);
477 void perf_session__auxtrace_error_inc(struct perf_session *session,
478                                       union perf_event *event);
479 void events_stats__auxtrace_error_warn(const struct events_stats *stats);
480
481 static inline int auxtrace__process_event(struct perf_session *session,
482                                           union perf_event *event,
483                                           struct perf_sample *sample,
484                                           struct perf_tool *tool)
485 {
486         if (!session->auxtrace)
487                 return 0;
488
489         return session->auxtrace->process_event(session, event, sample, tool);
490 }
491
492 static inline int auxtrace__flush_events(struct perf_session *session,
493                                          struct perf_tool *tool)
494 {
495         if (!session->auxtrace)
496                 return 0;
497
498         return session->auxtrace->flush_events(session, tool);
499 }
500
501 static inline void auxtrace__free_events(struct perf_session *session)
502 {
503         if (!session->auxtrace)
504                 return;
505
506         return session->auxtrace->free_events(session);
507 }
508
509 static inline void auxtrace__free(struct perf_session *session)
510 {
511         if (!session->auxtrace)
512                 return;
513
514         return session->auxtrace->free(session);
515 }
516
517 #else
518
519 static inline struct auxtrace_record *
520 auxtrace_record__init(struct perf_evlist *evlist __maybe_unused,
521                       int *err __maybe_unused)
522 {
523         *err = 0;
524         return NULL;
525 }
526
527 static inline
528 void auxtrace_record__free(struct auxtrace_record *itr __maybe_unused)
529 {
530 }
531
532 static inline int
533 perf_event__synthesize_auxtrace_info(struct auxtrace_record *itr __maybe_unused,
534                                      struct perf_tool *tool __maybe_unused,
535                                      struct perf_session *session __maybe_unused,
536                                      perf_event__handler_t process __maybe_unused)
537 {
538         return -EINVAL;
539 }
540
541 static inline
542 int auxtrace_record__options(struct auxtrace_record *itr __maybe_unused,
543                              struct perf_evlist *evlist __maybe_unused,
544                              struct record_opts *opts __maybe_unused)
545 {
546         return 0;
547 }
548
549 #define perf_event__process_auxtrace_info               0
550 #define perf_event__process_auxtrace                    0
551 #define perf_event__process_auxtrace_error              0
552
553 static inline
554 void perf_session__auxtrace_error_inc(struct perf_session *session
555                                       __maybe_unused,
556                                       union perf_event *event
557                                       __maybe_unused)
558 {
559 }
560
561 static inline
562 void events_stats__auxtrace_error_warn(const struct events_stats *stats
563                                        __maybe_unused)
564 {
565 }
566
567 static inline
568 int itrace_parse_synth_opts(const struct option *opt __maybe_unused,
569                             const char *str __maybe_unused,
570                             int unset __maybe_unused)
571 {
572         pr_err("AUX area tracing not supported\n");
573         return -EINVAL;
574 }
575
576 static inline
577 int auxtrace_parse_snapshot_options(struct auxtrace_record *itr __maybe_unused,
578                                     struct record_opts *opts __maybe_unused,
579                                     const char *str)
580 {
581         if (!str)
582                 return 0;
583         pr_err("AUX area tracing not supported\n");
584         return -EINVAL;
585 }
586
587 static inline
588 int auxtrace__process_event(struct perf_session *session __maybe_unused,
589                             union perf_event *event __maybe_unused,
590                             struct perf_sample *sample __maybe_unused,
591                             struct perf_tool *tool __maybe_unused)
592 {
593         return 0;
594 }
595
596 static inline
597 int auxtrace__flush_events(struct perf_session *session __maybe_unused,
598                            struct perf_tool *tool __maybe_unused)
599 {
600         return 0;
601 }
602
603 static inline
604 void auxtrace__free_events(struct perf_session *session __maybe_unused)
605 {
606 }
607
608 static inline
609 void auxtrace_cache__free(struct auxtrace_cache *auxtrace_cache __maybe_unused)
610 {
611 }
612
613 static inline
614 void auxtrace__free(struct perf_session *session __maybe_unused)
615 {
616 }
617
618 static inline
619 int auxtrace_index__write(int fd __maybe_unused,
620                           struct list_head *head __maybe_unused)
621 {
622         return -EINVAL;
623 }
624
625 static inline
626 int auxtrace_index__process(int fd __maybe_unused,
627                             u64 size __maybe_unused,
628                             struct perf_session *session __maybe_unused,
629                             bool needs_swap __maybe_unused)
630 {
631         return -EINVAL;
632 }
633
634 static inline
635 void auxtrace_index__free(struct list_head *head __maybe_unused)
636 {
637 }
638
639 int auxtrace_mmap__mmap(struct auxtrace_mmap *mm,
640                         struct auxtrace_mmap_params *mp,
641                         void *userpg, int fd);
642 void auxtrace_mmap__munmap(struct auxtrace_mmap *mm);
643 void auxtrace_mmap_params__init(struct auxtrace_mmap_params *mp,
644                                 off_t auxtrace_offset,
645                                 unsigned int auxtrace_pages,
646                                 bool auxtrace_overwrite);
647 void auxtrace_mmap_params__set_idx(struct auxtrace_mmap_params *mp,
648                                    struct perf_evlist *evlist, int idx,
649                                    bool per_cpu);
650
651 #endif
652
653 #endif