aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/perf_counter.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/linux/perf_counter.h')
-rw-r--r--include/linux/perf_counter.h19
1 files changed, 11 insertions, 8 deletions
diff --git a/include/linux/perf_counter.h b/include/linux/perf_counter.h
index f55381fbcac9..c83f51d6e359 100644
--- a/include/linux/perf_counter.h
+++ b/include/linux/perf_counter.h
@@ -83,14 +83,17 @@ struct perf_counter_hw_event {
83 u64 irq_period; 83 u64 irq_period;
84 u32 record_type; 84 u32 record_type;
85 85
86 u32 disabled : 1, /* off by default */ 86 u32 disabled : 1, /* off by default */
87 nmi : 1, /* NMI sampling */ 87 nmi : 1, /* NMI sampling */
88 raw : 1, /* raw event type */ 88 raw : 1, /* raw event type */
89 inherit : 1, /* children inherit it */ 89 inherit : 1, /* children inherit it */
90 pinned : 1, /* must always be on PMU */ 90 pinned : 1, /* must always be on PMU */
91 exclusive : 1, /* only counter on PMU */ 91 exclusive : 1, /* only group on PMU */
92 92 exclude_user : 1, /* don't count user */
93 __reserved_1 : 26; 93 exclude_kernel : 1, /* ditto kernel */
94 exclude_hv : 1, /* ditto hypervisor */
95
96 __reserved_1 : 23;
94 97
95 u64 __reserved_2; 98 u64 __reserved_2;
96}; 99};