Lines Matching refs:btm
58 struct bpf_trace_module *btm; in bpf_get_raw_tracepoint_module() local
62 list_for_each_entry(btm, &bpf_trace_modules, list) { in bpf_get_raw_tracepoint_module()
63 for (i = 0; i < btm->module->num_bpf_raw_events; ++i) { in bpf_get_raw_tracepoint_module()
64 btp = &btm->module->bpf_raw_events[i]; in bpf_get_raw_tracepoint_module()
66 if (try_module_get(btm->module)) in bpf_get_raw_tracepoint_module()
2234 struct bpf_trace_module *btm, *tmp; in bpf_event_notify() local
2246 btm = kzalloc_obj(*btm); in bpf_event_notify()
2247 if (btm) { in bpf_event_notify()
2248 btm->module = module; in bpf_event_notify()
2249 list_add(&btm->list, &bpf_trace_modules); in bpf_event_notify()
2255 list_for_each_entry_safe(btm, tmp, &bpf_trace_modules, list) { in bpf_event_notify()
2256 if (btm->module == module) { in bpf_event_notify()
2257 list_del(&btm->list); in bpf_event_notify()
2258 kfree(btm); in bpf_event_notify()