aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/linux/perf_event.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/include/linux/perf_event.h b/include/linux/perf_event.h
index bd9f55a5958d..57ae485e80fc 100644
--- a/include/linux/perf_event.h
+++ b/include/linux/perf_event.h
@@ -550,6 +550,7 @@ struct perf_guest_info_callbacks {
550#include <linux/irq_work.h> 550#include <linux/irq_work.h>
551#include <linux/static_key.h> 551#include <linux/static_key.h>
552#include <linux/atomic.h> 552#include <linux/atomic.h>
553#include <linux/sysfs.h>
553#include <asm/local.h> 554#include <asm/local.h>
554 555
555#define PERF_MAX_STACK_DEPTH 255 556#define PERF_MAX_STACK_DEPTH 255
@@ -1291,5 +1292,18 @@ do { \
1291 register_cpu_notifier(&fn##_nb); \ 1292 register_cpu_notifier(&fn##_nb); \
1292} while (0) 1293} while (0)
1293 1294
1295
1296#define PMU_FORMAT_ATTR(_name, _format) \
1297static ssize_t \
1298_name##_show(struct device *dev, \
1299 struct device_attribute *attr, \
1300 char *page) \
1301{ \
1302 BUILD_BUG_ON(sizeof(_format) >= PAGE_SIZE); \
1303 return sprintf(page, _format "\n"); \
1304} \
1305 \
1306static struct device_attribute format_attr_##_name = __ATTR_RO(_name)
1307
1294#endif /* __KERNEL__ */ 1308#endif /* __KERNEL__ */
1295#endif /* _LINUX_PERF_EVENT_H */ 1309#endif /* _LINUX_PERF_EVENT_H */