Home
last modified time | relevance | path

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

/linux-4.4.14/kernel/bpf/
Dhashtab.c228 struct htab_elem *l_new, *l_old; in htab_map_update_elem() local
257 l_old = lookup_elem_raw(head, l_new->hash, key, key_size); in htab_map_update_elem()
259 if (!l_old && unlikely(htab->count >= map->max_entries)) { in htab_map_update_elem()
267 if (l_old && map_flags == BPF_NOEXIST) { in htab_map_update_elem()
273 if (!l_old && map_flags == BPF_EXIST) { in htab_map_update_elem()
283 if (l_old) { in htab_map_update_elem()
284 hlist_del_rcu(&l_old->hash_node); in htab_map_update_elem()
285 kfree_rcu(l_old, rcu); in htab_map_update_elem()