Lines Matching refs:map_entry
26 struct xdp_sock **map_entry)
42 node->map_entry = map_entry;
60 struct xdp_sock **map_entry)
66 if (map_entry == n->map_entry) {
166 struct xdp_sock *xs, *old_xs, **map_entry;
188 map_entry = &m->xsk_map[i];
189 node = xsk_map_node_alloc(m, map_entry);
196 old_xs = READ_ONCE(*map_entry);
208 WRITE_ONCE(*map_entry, xs);
210 xsk_map_sock_delete(old_xs, map_entry);
225 struct xdp_sock *old_xs, **map_entry;
232 map_entry = &m->xsk_map[k];
233 old_xs = xchg(map_entry, NULL);
235 xsk_map_sock_delete(old_xs, map_entry);
242 struct xdp_sock **map_entry)
245 if (READ_ONCE(*map_entry) == xs) {
246 WRITE_ONCE(*map_entry, NULL);
247 xsk_map_sock_delete(xs, map_entry);