提交 f0405b81 编写于 作者: C Cody P Schafer 提交者: Michael Ellerman

perf: add PMU_EVENT_ATTR_STRING() helper

Helper for constructing static struct perf_pmu_events_attr s.
Signed-off-by: NCody P Schafer <cody@linux.vnet.ibm.com>
Signed-off-by: NSukadev Bhattiprolu <sukadev@linux.vnet.ibm.com>
Acked-by: NJiri Olsa <jolsa@redhat.com>
Signed-off-by: NMichael Ellerman <mpe@ellerman.id.au>
上级 fd979c01
...@@ -906,6 +906,13 @@ static struct perf_pmu_events_attr _var = { \ ...@@ -906,6 +906,13 @@ static struct perf_pmu_events_attr _var = { \
.id = _id, \ .id = _id, \
}; };
#define PMU_EVENT_ATTR_STRING(_name, _var, _str) \
static struct perf_pmu_events_attr _var = { \
.attr = __ATTR(_name, 0444, perf_event_sysfs_show, NULL), \
.id = 0, \
.event_str = _str, \
};
#define PMU_FORMAT_ATTR(_name, _format) \ #define PMU_FORMAT_ATTR(_name, _format) \
static ssize_t \ static ssize_t \
_name##_show(struct device *dev, \ _name##_show(struct device *dev, \
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册