aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/linux/perf_counter.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/include/linux/perf_counter.h b/include/linux/perf_counter.h
index 037a81145aca..edf5bfb7ff51 100644
--- a/include/linux/perf_counter.h
+++ b/include/linux/perf_counter.h
@@ -210,13 +210,15 @@ struct perf_event_header {
210}; 210};
211 211
212enum perf_event_type { 212enum perf_event_type {
213 PERF_EVENT_IP = 0, 213
214 PERF_EVENT_GROUP = 1, 214 PERF_EVENT_GROUP = 1,
215 215
216 PERF_EVENT_MMAP = 2, 216 PERF_EVENT_MMAP = 2,
217 PERF_EVENT_MUNMAP = 3, 217 PERF_EVENT_MUNMAP = 3,
218 218
219 __PERF_EVENT_TID = 0x100, 219 PERF_EVENT_OVERFLOW = 1UL << 31,
220 __PERF_EVENT_IP = 1UL << 30,
221 __PERF_EVENT_TID = 1UL << 29,
220}; 222};
221 223
222#ifdef __KERNEL__ 224#ifdef __KERNEL__