tracepoint: Support iterating tracepoints in a loading module
Add for_each_tracepoint_in_module() function to iterate tracepoints in a module. This API is needed for handling tracepoints in a loading module from tracepoint_module_notifier callback function. This also update for_each_module_tracepoint() to pass the module to callback function so that it can find module easily. Link: https://lore.kernel.org/all/172397778740.286558.15781131277732977643.stgit@devnote2/ Signed-off-by: Masami Hiramatsu (Google) <mhiramat@kernel.org>
This commit is contained in:
@@ -64,8 +64,13 @@ struct tp_module {
|
||||
bool trace_module_has_bad_taint(struct module *mod);
|
||||
extern int register_tracepoint_module_notifier(struct notifier_block *nb);
|
||||
extern int unregister_tracepoint_module_notifier(struct notifier_block *nb);
|
||||
void for_each_module_tracepoint(void (*fct)(struct tracepoint *, void *),
|
||||
void for_each_module_tracepoint(void (*fct)(struct tracepoint *,
|
||||
struct module *, void *),
|
||||
void *priv);
|
||||
void for_each_tracepoint_in_module(struct module *,
|
||||
void (*fct)(struct tracepoint *,
|
||||
struct module *, void *),
|
||||
void *priv);
|
||||
#else
|
||||
static inline bool trace_module_has_bad_taint(struct module *mod)
|
||||
{
|
||||
@@ -82,10 +87,18 @@ int unregister_tracepoint_module_notifier(struct notifier_block *nb)
|
||||
return 0;
|
||||
}
|
||||
static inline
|
||||
void for_each_module_tracepoint(void (*fct)(struct tracepoint *, void *),
|
||||
void for_each_module_tracepoint(void (*fct)(struct tracepoint *,
|
||||
struct module *, void *),
|
||||
void *priv)
|
||||
{
|
||||
}
|
||||
static inline
|
||||
void for_each_tracepoint_in_module(struct module *mod,
|
||||
void (*fct)(struct tracepoint *,
|
||||
struct module *, void *),
|
||||
void *priv)
|
||||
{
|
||||
}
|
||||
#endif /* CONFIG_MODULES */
|
||||
|
||||
/*
|
||||
|
||||
Reference in New Issue
Block a user