Home
last modified time | relevance | path

Searched refs:tp_mod (Results 1 – 2 of 2) sorted by relevance

/linux-6.15/kernel/
H A Dtracepoint.c544 struct tp_module *tp_mod; in register_tracepoint_module_notifier() local
568 struct tp_module *tp_mod; in unregister_tracepoint_module_notifier() local
595 struct tp_module *tp_mod; in tracepoint_module_coming() local
609 if (!tp_mod) in tracepoint_module_coming()
611 tp_mod->mod = mod; in tracepoint_module_coming()
616 MODULE_STATE_COMING, tp_mod); in tracepoint_module_coming()
623 struct tp_module *tp_mod; in tracepoint_module_going() local
630 if (tp_mod->mod == mod) { in tracepoint_module_going()
633 list_del(&tp_mod->list); in tracepoint_module_going()
634 kfree(tp_mod); in tracepoint_module_going()
[all …]
/linux-6.15/kernel/trace/
H A Dtrace_fprobe.c948 struct module **tp_mod) in find_tracepoint() argument
959 *tp_mod = data.mod; in find_tracepoint()
994 struct tp_module *tp_mod = data; in __tracepoint_probe_module_cb() local
1005 tpoint = find_tracepoint_in_module(tp_mod->mod, tf->symbol); in __tracepoint_probe_module_cb()
1008 tf->mod = tp_mod->mod; in __tracepoint_probe_module_cb()
1013 } else if (val == MODULE_STATE_GOING && tp_mod->mod == tf->mod) { in __tracepoint_probe_module_cb()
1130 struct module *tp_mod __free(module_put) = NULL; in DEFINE_FREE()
1184 tpoint = find_tracepoint(symbol, &tp_mod); in DEFINE_FREE()
1221 tf = alloc_trace_fprobe(group, event, symbol, tpoint, tp_mod, in DEFINE_FREE()