diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/perf_event.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/include/linux/perf_event.h b/include/linux/perf_event.h index 42307b50c787..ab4fd9ede264 100644 --- a/include/linux/perf_event.h +++ b/include/linux/perf_event.h | |||
@@ -467,6 +467,17 @@ struct perf_raw_record { | |||
467 | void *data; | 467 | void *data; |
468 | }; | 468 | }; |
469 | 469 | ||
470 | struct perf_branch_entry { | ||
471 | __u64 from; | ||
472 | __u64 to; | ||
473 | __u64 flags; | ||
474 | }; | ||
475 | |||
476 | struct perf_branch_stack { | ||
477 | __u64 nr; | ||
478 | struct perf_branch_entry entries[0]; | ||
479 | }; | ||
480 | |||
470 | struct task_struct; | 481 | struct task_struct; |
471 | 482 | ||
472 | /** | 483 | /** |