Lines Matching refs:tpoint
48 struct tracepoint *tpoint; member
79 return tf->tpoint != NULL; in trace_fprobe_is_tracepoint()
428 struct tracepoint *tpoint, in alloc_trace_fprobe() argument
448 tf->tpoint = tpoint; in alloc_trace_fprobe()
715 struct tracepoint *tpoint = tf->tpoint; in __regsiter_tracepoint_fprobe() local
716 unsigned long ip = (unsigned long)tpoint->probestub; in __regsiter_tracepoint_fprobe()
724 ret = tracepoint_probe_register_prio_may_exist(tpoint, in __regsiter_tracepoint_fprobe()
725 tpoint->probestub, NULL, 0); in __regsiter_tracepoint_fprobe()
759 if (tf->tpoint == TRACEPOINT_STUB) in __register_trace_fprobe()
776 tracepoint_probe_unregister(tf->tpoint, in __unregister_trace_fprobe()
777 tf->tpoint->probestub, NULL); in __unregister_trace_fprobe()
778 tf->tpoint = NULL; in __unregister_trace_fprobe()
913 struct tracepoint *tpoint; member
921 if (!data->tpoint && !strcmp(data->tp_name, tp->name)) { in __find_tracepoint_module_cb()
930 data->tpoint = tp; in __find_tracepoint_module_cb()
938 if (!data->tpoint && !strcmp(data->tp_name, tp->name)) in __find_tracepoint_cb()
939 data->tpoint = tp; in __find_tracepoint_cb()
957 if (!data.tpoint && IS_ENABLED(CONFIG_MODULES)) { in find_tracepoint()
962 return data.tpoint; in find_tracepoint()
988 return data.tpoint; in find_tracepoint_in_module()
995 struct tracepoint *tpoint; in __tracepoint_probe_module_cb() local
1004 if (val == MODULE_STATE_COMING && tf->tpoint == TRACEPOINT_STUB) { in __tracepoint_probe_module_cb()
1005 tpoint = find_tracepoint_in_module(tp_mod->mod, tf->symbol); in __tracepoint_probe_module_cb()
1006 if (tpoint) { in __tracepoint_probe_module_cb()
1007 tf->tpoint = tpoint; in __tracepoint_probe_module_cb()
1016 tracepoint_probe_unregister(tf->tpoint, in __tracepoint_probe_module_cb()
1017 tf->tpoint->probestub, NULL); in __tracepoint_probe_module_cb()
1018 tf->tpoint = TRACEPOINT_STUB; in __tracepoint_probe_module_cb()
1131 struct tracepoint *tpoint = NULL; in DEFINE_FREE() local
1184 tpoint = find_tracepoint(symbol, &tp_mod); in DEFINE_FREE()
1185 if (tpoint) { in DEFINE_FREE()
1187 (unsigned long)tpoint->probestub, in DEFINE_FREE()
1191 tpoint = TRACEPOINT_STUB; in DEFINE_FREE()
1221 tf = alloc_trace_fprobe(group, event, symbol, tpoint, tp_mod, in DEFINE_FREE()