Lines Matching refs:current
493 struct task_struct *current; in test_ls_map_kptr_ref1() local
496 current = bpf_get_current_task_btf(); in test_ls_map_kptr_ref1()
497 if (!current) in test_ls_map_kptr_ref1()
499 v = bpf_task_storage_get(&task_ls_map, current, NULL, 0); in test_ls_map_kptr_ref1()
502 v = bpf_task_storage_get(&task_ls_map, current, NULL, BPF_LOCAL_STORAGE_GET_F_CREATE); in test_ls_map_kptr_ref1()
511 struct task_struct *current; in test_ls_map_kptr_ref2() local
514 current = bpf_get_current_task_btf(); in test_ls_map_kptr_ref2()
515 if (!current) in test_ls_map_kptr_ref2()
517 v = bpf_task_storage_get(&task_ls_map, current, NULL, 0); in test_ls_map_kptr_ref2()
526 struct task_struct *current; in test_ls_map_kptr_ref_del() local
529 current = bpf_get_current_task_btf(); in test_ls_map_kptr_ref_del()
530 if (!current) in test_ls_map_kptr_ref_del()
532 v = bpf_task_storage_get(&task_ls_map, current, NULL, 0); in test_ls_map_kptr_ref_del()
537 return bpf_task_storage_delete(&task_ls_map, current); in test_ls_map_kptr_ref_del()