1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef __ARCH_X86_EVENTS_PROBE_H__
3 #define __ARCH_X86_EVENTS_PROBE_H__
4 #include <linux/sysfs.h>
8 struct attribute_group
*grp
;
9 bool (*test
)(int idx
, void *data
);
15 perf_msr_probe(struct perf_msr
*msr
, int cnt
, bool no_zero
, void *data
);
17 #define __PMU_EVENT_GROUP(_name) \
18 static struct attribute *attrs_##_name[] = { \
19 &attr_##_name.attr.attr, \
23 #define PMU_EVENT_GROUP(_grp, _name) \
24 __PMU_EVENT_GROUP(_name); \
25 static struct attribute_group group_##_name = { \
27 .attrs = attrs_##_name, \
30 #endif /* __ARCH_X86_EVENTS_PROBE_H__ */