Searched refs:snode (Results 1 – 8 of 8) sorted by relevance
/Linux-v6.6/tools/perf/util/ |
D | strlist.c | 20 struct str_node *snode = malloc(sizeof(*snode)); in strlist__node_new() local 22 if (snode != NULL) { in strlist__node_new() 28 snode->s = s; in strlist__node_new() 29 rc = &snode->rb_node; in strlist__node_new() 35 free(snode); in strlist__node_new() 39 static void str_node__delete(struct str_node *snode, bool dupstr) in str_node__delete() argument 42 zfree((char **)&snode->s); in str_node__delete() 43 free(snode); in str_node__delete() 50 struct str_node *snode = container_of(rb_node, struct str_node, rb_node); in strlist__node_delete() local 52 str_node__delete(snode, slist->dupstr); in strlist__node_delete() [all …]
|
D | probe-file.c | 970 struct str_node *snode; in probe_cache_entry__write() local 988 strlist__for_each_entry(snode, entry->tevlist) { in probe_cache_entry__write() 989 iov[0].iov_base = (void *)snode->s; in probe_cache_entry__write() 990 iov[0].iov_len = strlen(snode->s); in probe_cache_entry__write()
|
/Linux-v6.6/drivers/net/ |
D | amt.c | 92 struct amt_source_node *snode; in __amt_source_gc_work() local 100 hlist_for_each_entry_safe(snode, t, &gc_list, node) { in __amt_source_gc_work() 101 hlist_del_rcu(&snode->node); in __amt_source_gc_work() 102 kfree_rcu(snode, rcu); in __amt_source_gc_work() 128 static bool amt_status_filter(struct amt_source_node *snode, in amt_status_filter() argument 135 if (snode->status == AMT_SOURCE_STATUS_FWD && in amt_status_filter() 136 snode->flags == AMT_SOURCE_OLD) in amt_status_filter() 140 if (snode->status == AMT_SOURCE_STATUS_D_FWD && in amt_status_filter() 141 snode->flags == AMT_SOURCE_OLD) in amt_status_filter() 145 if (snode->status == AMT_SOURCE_STATUS_FWD && in amt_status_filter() [all …]
|
/Linux-v6.6/kernel/trace/ |
D | trace_stat.c | 49 struct stat_node *snode, *n; in __reset_stat_session() local 51 rbtree_postorder_for_each_entry_safe(snode, n, &session->stat_root, node) { in __reset_stat_session() 53 session->ts->stat_release(snode->stat); in __reset_stat_session() 54 kfree(snode); in __reset_stat_session()
|
/Linux-v6.6/kernel/bpf/ |
D | bpf_local_storage.c | 56 return !hlist_unhashed_lockless(&selem->snode); in selem_linked_to_storage_lockless() 61 return !hlist_unhashed(&selem->snode); in selem_linked_to_storage() 271 free_local_storage = hlist_is_singular_node(&selem->snode, in bpf_selem_unlink_storage_nolock() 294 hlist_del_init_rcu(&selem->snode); in bpf_selem_unlink_storage_nolock() 335 selem = hlist_entry(n, struct bpf_local_storage_elem, snode); in check_storage_bpf_ma() 374 hlist_add_head_rcu(&selem->snode, &local_storage->list); in bpf_selem_link_storage_nolock() 433 hlist_for_each_entry_rcu(selem, &local_storage->list, snode, in bpf_local_storage_lookup() 751 hlist_for_each_entry_safe(selem, n, &local_storage->list, snode) { in bpf_local_storage_destroy()
|
/Linux-v6.6/include/linux/ |
D | bpf_local_storage.h | 78 struct hlist_node snode; /* Linked to bpf_local_storage */ member
|
/Linux-v6.6/net/core/ |
D | bpf_sk_storage.c | 169 hlist_for_each_entry_rcu(selem, &sk_storage->list, snode) { in bpf_sk_storage_clone() 607 hlist_for_each_entry_rcu(selem, &sk_storage->list, snode) { in bpf_sk_storage_diag_put_all()
|
/Linux-v6.6/security/selinux/ss/ |
D | services.c | 624 struct ebitmap_node *snode, *tnode; in context_struct_compute_av() local 651 ebitmap_for_each_positive_bit(sattr, snode, i) { in context_struct_compute_av() 1014 struct ebitmap_node *snode, *tnode; in security_compute_xperms_decision() local 1062 ebitmap_for_each_positive_bit(sattr, snode, i) { in security_compute_xperms_decision()
|