提交 5f382671 编写于 作者: M Mathieu Desnoyers 提交者: Ingo Molnar

tracepoints: do not put arguments in name

Impact: cleanup

That's overkill, takes space. We have a global tracepoint registery in
header files anyway.
Signed-off-by: NMathieu Desnoyers <mathieu.desnoyers@polymtl.ca>
Signed-off-by: NIngo Molnar <mingo@elte.hu>
上级 c420970e
...@@ -60,7 +60,7 @@ struct tracepoint { ...@@ -60,7 +60,7 @@ struct tracepoint {
{ \ { \
static const char __tpstrtab_##name[] \ static const char __tpstrtab_##name[] \
__attribute__((section("__tracepoints_strings"))) \ __attribute__((section("__tracepoints_strings"))) \
= #name ":" #proto; \ = #name; \
static struct tracepoint __tracepoint_##name \ static struct tracepoint __tracepoint_##name \
__attribute__((section("__tracepoints"), aligned(8))) = \ __attribute__((section("__tracepoints"), aligned(8))) = \
{ __tpstrtab_##name, 0, NULL }; \ { __tpstrtab_##name, 0, NULL }; \
...@@ -70,13 +70,11 @@ struct tracepoint { ...@@ -70,13 +70,11 @@ struct tracepoint {
} \ } \
static inline int register_trace_##name(void (*probe)(proto)) \ static inline int register_trace_##name(void (*probe)(proto)) \
{ \ { \
return tracepoint_probe_register(#name ":" #proto, \ return tracepoint_probe_register(#name, (void *)probe); \
(void *)probe); \
} \ } \
static inline int unregister_trace_##name(void (*probe)(proto)) \ static inline int unregister_trace_##name(void (*probe)(proto)) \
{ \ { \
return tracepoint_probe_unregister(#name ":" #proto, \ return tracepoint_probe_unregister(#name, (void *)probe);\
(void *)probe); \
} }
extern void tracepoint_update_probe_range(struct tracepoint *begin, extern void tracepoint_update_probe_range(struct tracepoint *begin,
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册