Lines Matching refs:tp_mod
407 struct tp_module *tp_mod; in register_tracepoint_module_notifier() local
414 list_for_each_entry(tp_mod, &tracepoint_module_list, list) in register_tracepoint_module_notifier() local
415 (void) nb->notifier_call(nb, MODULE_STATE_COMING, tp_mod); in register_tracepoint_module_notifier()
431 struct tp_module *tp_mod; in unregister_tracepoint_module_notifier() local
438 list_for_each_entry(tp_mod, &tracepoint_module_list, list) in unregister_tracepoint_module_notifier() local
439 (void) nb->notifier_call(nb, MODULE_STATE_GOING, tp_mod); in unregister_tracepoint_module_notifier()
458 struct tp_module *tp_mod; in tracepoint_module_coming() local
472 tp_mod = kmalloc(sizeof(struct tp_module), GFP_KERNEL); in tracepoint_module_coming()
473 if (!tp_mod) { in tracepoint_module_coming()
477 tp_mod->mod = mod; in tracepoint_module_coming()
478 list_add_tail(&tp_mod->list, &tracepoint_module_list); in tracepoint_module_coming()
480 MODULE_STATE_COMING, tp_mod); in tracepoint_module_coming()
488 struct tp_module *tp_mod; in tracepoint_module_going() local
494 list_for_each_entry(tp_mod, &tracepoint_module_list, list) { in tracepoint_module_going()
495 if (tp_mod->mod == mod) { in tracepoint_module_going()
497 MODULE_STATE_GOING, tp_mod); in tracepoint_module_going()
498 list_del(&tp_mod->list); in tracepoint_module_going()
499 kfree(tp_mod); in tracepoint_module_going()