aboutsummaryrefslogtreecommitdiffstats
path: root/tools/perf/util/event.h
diff options
context:
space:
mode:
Diffstat (limited to 'tools/perf/util/event.h')
-rw-r--r--tools/perf/util/event.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/perf/util/event.h b/tools/perf/util/event.h
index c31a5da6458b..4c69eb553807 100644
--- a/tools/perf/util/event.h
+++ b/tools/perf/util/event.h
@@ -3,7 +3,7 @@
3 3
4#include "../perf.h" 4#include "../perf.h"
5#include "util.h" 5#include "util.h"
6#include <linux/list.h> 6#include <linux/rbtree.h>
7 7
8enum { 8enum {
9 SHOW_KERNEL = 1, 9 SHOW_KERNEL = 1,
@@ -79,7 +79,7 @@ typedef union event_union {
79} event_t; 79} event_t;
80 80
81struct map { 81struct map {
82 struct list_head node; 82 struct rb_node rb_node;
83 u64 start; 83 u64 start;
84 u64 end; 84 u64 end;
85 u64 pgoff; 85 u64 pgoff;