Home
last modified time | relevance | path

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

/linux-6.6.21/kernel/bpf/
Dlpm_trie.c22 struct lpm_trie_node;
24 struct lpm_trie_node { struct
26 struct lpm_trie_node __rcu *child[2]; argument
34 struct lpm_trie_node __rcu *root; argument
166 const struct lpm_trie_node *node, in longest_prefix_match()
172 BUILD_BUG_ON(offsetof(struct lpm_trie_node, data) % sizeof(u32)); in longest_prefix_match()
231 struct lpm_trie_node *node, *found = NULL; in trie_lookup_elem()
282 static struct lpm_trie_node *lpm_trie_node_alloc(const struct lpm_trie *trie, in lpm_trie_node_alloc()
285 struct lpm_trie_node *node; in lpm_trie_node_alloc()
286 size_t size = sizeof(struct lpm_trie_node) + trie->data_size; in lpm_trie_node_alloc()
[all …]