diff options
Diffstat (limited to 'include/linux/perf_event.h')
| -rw-r--r-- | include/linux/perf_event.h | 6 | 
1 files changed, 6 insertions, 0 deletions
diff --git a/include/linux/perf_event.h b/include/linux/perf_event.h index 2bca72f3028b..16e38c286d46 100644 --- a/include/linux/perf_event.h +++ b/include/linux/perf_event.h @@ -256,6 +256,7 @@ struct pmu {  	struct module			*module;  	struct device			*dev;  	const struct attribute_group	**attr_groups; +	const struct attribute_group	**attr_update;  	const char			*name;  	int				type; @@ -749,6 +750,11 @@ struct perf_event_context {  	int				nr_stat;  	int				nr_freq;  	int				rotate_disable; +	/* +	 * Set when nr_events != nr_active, except tolerant to events not +	 * necessary to be active due to scheduling constraints, such as cgroups. +	 */ +	int				rotate_necessary;  	refcount_t			refcount;  	struct task_struct		*task;  | 
