diff options
Diffstat (limited to 'tools/perf')
-rw-r--r-- | tools/perf/builtin-annotate.c | 24 | ||||
-rw-r--r-- | tools/perf/builtin-report.c | 24 |
2 files changed, 0 insertions, 48 deletions
diff --git a/tools/perf/builtin-annotate.c b/tools/perf/builtin-annotate.c index 5f9eefecc57..1dba568e194 100644 --- a/tools/perf/builtin-annotate.c +++ b/tools/perf/builtin-annotate.c | |||
@@ -74,20 +74,12 @@ struct fork_event { | |||
74 | u32 pid, ppid; | 74 | u32 pid, ppid; |
75 | }; | 75 | }; |
76 | 76 | ||
77 | struct period_event { | ||
78 | struct perf_event_header header; | ||
79 | u64 time; | ||
80 | u64 id; | ||
81 | u64 sample_period; | ||
82 | }; | ||
83 | |||
84 | typedef union event_union { | 77 | typedef union event_union { |
85 | struct perf_event_header header; | 78 | struct perf_event_header header; |
86 | struct ip_event ip; | 79 | struct ip_event ip; |
87 | struct mmap_event mmap; | 80 | struct mmap_event mmap; |
88 | struct comm_event comm; | 81 | struct comm_event comm; |
89 | struct fork_event fork; | 82 | struct fork_event fork; |
90 | struct period_event period; | ||
91 | } event_t; | 83 | } event_t; |
92 | 84 | ||
93 | 85 | ||
@@ -998,19 +990,6 @@ process_fork_event(event_t *event, unsigned long offset, unsigned long head) | |||
998 | } | 990 | } |
999 | 991 | ||
1000 | static int | 992 | static int |
1001 | process_period_event(event_t *event, unsigned long offset, unsigned long head) | ||
1002 | { | ||
1003 | dprintf("%p [%p]: PERF_EVENT_PERIOD: time:%Ld, id:%Ld: period:%Ld\n", | ||
1004 | (void *)(offset + head), | ||
1005 | (void *)(long)(event->header.size), | ||
1006 | event->period.time, | ||
1007 | event->period.id, | ||
1008 | event->period.sample_period); | ||
1009 | |||
1010 | return 0; | ||
1011 | } | ||
1012 | |||
1013 | static int | ||
1014 | process_event(event_t *event, unsigned long offset, unsigned long head) | 993 | process_event(event_t *event, unsigned long offset, unsigned long head) |
1015 | { | 994 | { |
1016 | switch (event->header.type) { | 995 | switch (event->header.type) { |
@@ -1025,9 +1004,6 @@ process_event(event_t *event, unsigned long offset, unsigned long head) | |||
1025 | 1004 | ||
1026 | case PERF_EVENT_FORK: | 1005 | case PERF_EVENT_FORK: |
1027 | return process_fork_event(event, offset, head); | 1006 | return process_fork_event(event, offset, head); |
1028 | |||
1029 | case PERF_EVENT_PERIOD: | ||
1030 | return process_period_event(event, offset, head); | ||
1031 | /* | 1007 | /* |
1032 | * We dont process them right now but they are fine: | 1008 | * We dont process them right now but they are fine: |
1033 | */ | 1009 | */ |
diff --git a/tools/perf/builtin-report.c b/tools/perf/builtin-report.c index a118bc77286..b20a4b6e31b 100644 --- a/tools/perf/builtin-report.c +++ b/tools/perf/builtin-report.c | |||
@@ -101,13 +101,6 @@ struct fork_event { | |||
101 | u32 pid, ppid; | 101 | u32 pid, ppid; |
102 | }; | 102 | }; |
103 | 103 | ||
104 | struct period_event { | ||
105 | struct perf_event_header header; | ||
106 | u64 time; | ||
107 | u64 id; | ||
108 | u64 sample_period; | ||
109 | }; | ||
110 | |||
111 | struct lost_event { | 104 | struct lost_event { |
112 | struct perf_event_header header; | 105 | struct perf_event_header header; |
113 | u64 id; | 106 | u64 id; |
@@ -127,7 +120,6 @@ typedef union event_union { | |||
127 | struct mmap_event mmap; | 120 | struct mmap_event mmap; |
128 | struct comm_event comm; | 121 | struct comm_event comm; |
129 | struct fork_event fork; | 122 | struct fork_event fork; |
130 | struct period_event period; | ||
131 | struct lost_event lost; | 123 | struct lost_event lost; |
132 | struct read_event read; | 124 | struct read_event read; |
133 | } event_t; | 125 | } event_t; |
@@ -1636,19 +1628,6 @@ process_fork_event(event_t *event, unsigned long offset, unsigned long head) | |||
1636 | } | 1628 | } |
1637 | 1629 | ||
1638 | static int | 1630 | static int |
1639 | process_period_event(event_t *event, unsigned long offset, unsigned long head) | ||
1640 | { | ||
1641 | dprintf("%p [%p]: PERF_EVENT_PERIOD: time:%Ld, id:%Ld: period:%Ld\n", | ||
1642 | (void *)(offset + head), | ||
1643 | (void *)(long)(event->header.size), | ||
1644 | event->period.time, | ||
1645 | event->period.id, | ||
1646 | event->period.sample_period); | ||
1647 | |||
1648 | return 0; | ||
1649 | } | ||
1650 | |||
1651 | static int | ||
1652 | process_lost_event(event_t *event, unsigned long offset, unsigned long head) | 1631 | process_lost_event(event_t *event, unsigned long offset, unsigned long head) |
1653 | { | 1632 | { |
1654 | dprintf("%p [%p]: PERF_EVENT_LOST: id:%Ld: lost:%Ld\n", | 1633 | dprintf("%p [%p]: PERF_EVENT_LOST: id:%Ld: lost:%Ld\n", |
@@ -1729,9 +1708,6 @@ process_event(event_t *event, unsigned long offset, unsigned long head) | |||
1729 | case PERF_EVENT_FORK: | 1708 | case PERF_EVENT_FORK: |
1730 | return process_fork_event(event, offset, head); | 1709 | return process_fork_event(event, offset, head); |
1731 | 1710 | ||
1732 | case PERF_EVENT_PERIOD: | ||
1733 | return process_period_event(event, offset, head); | ||
1734 | |||
1735 | case PERF_EVENT_LOST: | 1711 | case PERF_EVENT_LOST: |
1736 | return process_lost_event(event, offset, head); | 1712 | return process_lost_event(event, offset, head); |
1737 | 1713 | ||