Home
last modified time | relevance | path

Searched refs:btf_mod (Results 1 – 3 of 3) sorted by relevance

/linux-6.6.21/kernel/bpf/
Dbtf.c7355 struct btf_module *btf_mod, *tmp; in btf_module_notify() local
7367 btf_mod = kzalloc(sizeof(*btf_mod), GFP_KERNEL); in btf_module_notify()
7368 if (!btf_mod) { in btf_module_notify()
7374 kfree(btf_mod); in btf_module_notify()
7387 kfree(btf_mod); in btf_module_notify()
7393 btf_mod->module = module; in btf_module_notify()
7394 btf_mod->btf = btf; in btf_module_notify()
7395 list_add(&btf_mod->list, &btf_modules); in btf_module_notify()
7421 btf_mod->sysfs_attr = attr; in btf_module_notify()
7427 list_for_each_entry_safe(btf_mod, tmp, &btf_modules, list) { in btf_module_notify()
[all …]
Dcore.c2691 struct btf_mod_pair *btf_mod; in __bpf_free_used_btfs() local
2695 btf_mod = &used_btfs[i]; in __bpf_free_used_btfs()
2696 if (btf_mod->module) in __bpf_free_used_btfs()
2697 module_put(btf_mod->module); in __bpf_free_used_btfs()
2698 btf_put(btf_mod->btf); in __bpf_free_used_btfs()
Dverifier.c17336 struct btf_mod_pair *btf_mod; in check_pseudo_btf_id() local
17444 btf_mod = &env->used_btfs[env->used_btf_cnt]; in check_pseudo_btf_id()
17445 btf_mod->btf = btf; in check_pseudo_btf_id()
17446 btf_mod->module = NULL; in check_pseudo_btf_id()
17450 btf_mod->module = btf_try_get_module(btf); in check_pseudo_btf_id()
17451 if (!btf_mod->module) { in check_pseudo_btf_id()