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