| /Linux-v5.15/drivers/net/ethernet/qlogic/qed/ |
| D | qed_nvmetcp_ip_services.c | 55 if (!(neigh->nud_state & NUD_VALID)) in qed_route_ipv4() 60 while (!(neigh->nud_state & NUD_VALID) && retry > 0) { in qed_route_ipv4() 65 if (neigh->nud_state & NUD_VALID) { in qed_route_ipv4() 113 if (!(neigh->nud_state & NUD_VALID)) in qed_route_ipv6() 118 while (!(neigh->nud_state & NUD_VALID) && retry > 0) { in qed_route_ipv6() 123 if (neigh->nud_state & NUD_VALID) { in qed_route_ipv6()
|
| /Linux-v5.15/include/trace/events/ |
| D | neigh.h | 85 __field(u8, nud_state) 110 __entry->nud_state = n->nud_state; 147 __entry->flags, neigh_state_str(__entry->nud_state), 165 __field(u8, nud_state) 187 __entry->nud_state = n->nud_state; 220 __entry->flags, neigh_state_str(__entry->nud_state),
|
| /Linux-v5.15/drivers/net/ethernet/chelsio/cxgb3/ |
| D | l2t.c | 285 unsigned int nud_state; in reuse_entry() local 291 nud_state = neigh->nud_state; in reuse_entry() 293 !(nud_state & NUD_VALID)) in reuse_entry() 295 else if (nud_state & NUD_CONNECTED) in reuse_entry() 426 if (neigh->nud_state & NUD_FAILED) { in t3_l2t_update() 428 } else if (neigh->nud_state & (NUD_CONNECTED|NUD_STALE)) in t3_l2t_update() 431 e->state = neigh->nud_state & NUD_CONNECTED ? in t3_l2t_update()
|
| /Linux-v5.15/drivers/net/ethernet/mellanox/mlx5/core/en/ |
| D | tc_tun.c | 228 u8 nud_state; in mlx5e_tc_tun_create_header_ipv4() local 274 nud_state = attr.n->nud_state; in mlx5e_tc_tun_create_header_ipv4() 299 if (!(nud_state & NUD_VALID)) { in mlx5e_tc_tun_create_header_ipv4() 343 u8 nud_state; in mlx5e_tc_tun_update_header_ipv4() local 377 nud_state = attr.n->nud_state; in mlx5e_tc_tun_update_header_ipv4() 404 if (!(nud_state & NUD_VALID)) { in mlx5e_tc_tun_update_header_ipv4() 495 u8 nud_state; in mlx5e_tc_tun_create_header_ipv6() local 540 nud_state = attr.n->nud_state; in mlx5e_tc_tun_create_header_ipv6() 564 if (!(nud_state & NUD_VALID)) { in mlx5e_tc_tun_create_header_ipv6() 608 u8 nud_state; in mlx5e_tc_tun_update_header_ipv6() local [all …]
|
| /Linux-v5.15/drivers/net/ethernet/chelsio/cxgb4/ |
| D | l2t.c | 205 e->state = (e->neigh->nud_state & NUD_STALE) ? in do_l2t_write_rpl() 399 unsigned int nud_state; in reuse_entry() local 404 nud_state = neigh->nud_state; in reuse_entry() 406 !(nud_state & NUD_VALID)) in reuse_entry() 408 else if (nud_state & NUD_CONNECTED) in reuse_entry() 538 if (neigh->nud_state & NUD_FAILED) { in t4_l2t_update() 540 } else if ((neigh->nud_state & (NUD_CONNECTED | NUD_STALE)) && in t4_l2t_update() 545 e->state = neigh->nud_state & NUD_CONNECTED ? in t4_l2t_update()
|
| /Linux-v5.15/net/core/ |
| D | neighbour.c | 140 exempt_from_gc = n->nud_state & NUD_PERMANENT || in neigh_update_gc_list() 240 if ((n->nud_state == NUD_FAILED) || in neigh_forced_gc() 241 (n->nud_state == NUD_NOARP) || in neigh_forced_gc() 267 n->nud_state); in neigh_add_timer() 274 if ((n->nud_state & NUD_IN_TIMER) && in neigh_del_timer() 311 if (skip_perm && n->nud_state & NUD_PERMANENT) { in neigh_flush_dev() 334 if (n->nud_state & NUD_VALID) in neigh_flush_dev() 335 n->nud_state = NUD_NOARP; in neigh_flush_dev() 337 n->nud_state = NUD_NONE; in neigh_flush_dev() 413 n->nud_state = NUD_NONE; in neigh_alloc() [all …]
|
| /Linux-v5.15/drivers/net/ethernet/mellanox/mlx5/core/en/rep/ |
| D | neigh.c | 135 u8 nud_state, dead; in mlx5e_rep_neigh_update() local 146 nud_state = n->nud_state; in mlx5e_rep_neigh_update() 151 neigh_connected = (nud_state & NUD_VALID) && !dead; in mlx5e_rep_neigh_update()
|
| /Linux-v5.15/net/ipv4/ |
| D | arp.c | 249 neigh->nud_state = NUD_NOARP; in arp_constructor() 269 neigh->nud_state = NUD_NOARP; in arp_constructor() 272 neigh->nud_state = NUD_NOARP; in arp_constructor() 276 neigh->nud_state = NUD_NOARP; in arp_constructor() 285 if (neigh->nud_state & NUD_VALID) in arp_constructor() 377 if (!(neigh->nud_state & NUD_VALID)) in arp_solicit() 1085 if (neigh->nud_state&NUD_PERMANENT) in arp_state_to_flags() 1087 else if (neigh->nud_state&NUD_VALID) in arp_state_to_flags() 1105 if (!(neigh->nud_state & NUD_NOARP)) { in arp_req_get() 1126 if (neigh->nud_state & ~NUD_NOARP) in arp_invalidate()
|
| D | fib_semantics.c | 555 state = n->nud_state; in fib_detect_death() 2171 state = n->nud_state; in fib_good_nh()
|
| /Linux-v5.15/net/decnet/ |
| D | dn_neigh.c | 136 neigh->nud_state = NUD_NOARP; in dn_neigh_construct() 403 if (!(neigh->nud_state & NUD_PERMANENT)) { in dn_neigh_router_hello() 462 if (!(neigh->nud_state & NUD_PERMANENT)) { in dn_neigh_endnode_hello() 527 *(s->rs) = neigh->nud_state & NUD_CONNECTED ? 0x80 : 0x0; in neigh_elist_cb() 562 dn->n.nud_state, in dn_neigh_format_entry()
|
| /Linux-v5.15/net/netfilter/ |
| D | nft_flow_offload.c | 48 u8 nud_state; in nft_dev_fill_forward_path() local 55 nud_state = n->nud_state; in nft_dev_fill_forward_path() 60 if (!(nud_state & NUD_VALID)) in nft_dev_fill_forward_path()
|
| D | nf_flow_table_offload.c | 272 u8 nud_state; in flow_offload_eth_dst() local 290 nud_state = n->nud_state; in flow_offload_eth_dst() 295 if (!(nud_state & NUD_VALID)) in flow_offload_eth_dst()
|
| /Linux-v5.15/include/net/ |
| D | neighbour.h | 148 __u8 nud_state; member 443 if (!(neigh->nud_state&(NUD_CONNECTED|NUD_DELAY|NUD_PROBE))) in neigh_event_send() 507 if ((n->nud_state & NUD_CONNECTED) && hh->hh_len && !skip_cache) in neigh_output()
|
| /Linux-v5.15/net/ipv6/ |
| D | ndisc.c | 344 neigh->nud_state = NUD_NOARP; in ndisc_constructor() 349 neigh->nud_state = NUD_NOARP; in ndisc_constructor() 352 neigh->nud_state = NUD_NOARP; in ndisc_constructor() 357 neigh->nud_state = NUD_NOARP; in ndisc_constructor() 364 if (neigh->nud_state&NUD_VALID) in ndisc_constructor() 732 if (!(neigh->nud_state & NUD_VALID)) { in ndisc_solicit() 1033 if (neigh->nud_state & NUD_FAILED) in ndisc_recv_na() 1660 if (neigh->nud_state & NUD_VALID) { in ndisc_send_redirect()
|
| D | route.c | 638 if (neigh->nud_state & NUD_VALID) in rt6_probe() 642 if (!(neigh->nud_state & NUD_VALID) && in rt6_probe() 688 if (neigh->nud_state & NUD_VALID) in rt6_check_neigh() 691 else if (!(neigh->nud_state & NUD_FAILED)) in rt6_check_neigh()
|
| /Linux-v5.15/net/bridge/ |
| D | br_arp_nd_proxy.c | 195 if (!(n->nud_state & NUD_VALID)) { in br_do_proxy_suppress_arp() 455 if (!(n->nud_state & NUD_VALID)) { in br_do_suppress_nd()
|
| D | br_netfilter_hooks.c | 280 if ((neigh->nud_state & NUD_CONNECTED) && neigh->hh.hh_len) { in br_nf_pre_routing_finish_bridge()
|
| /Linux-v5.15/drivers/infiniband/core/ |
| D | addr.c | 338 if (!(n->nud_state & NUD_VALID)) { in dst_fetch_ha() 860 if (neigh->nud_state & NUD_VALID) { in netevent_callback()
|
| /Linux-v5.15/drivers/infiniband/hw/qedr/ |
| D | qedr_iw_cm.c | 460 if (neigh->nud_state & NUD_VALID) { in qedr_addr4_resolve() 503 if (neigh->nud_state & NUD_VALID) { in qedr_addr6_resolve()
|
| /Linux-v5.15/drivers/net/ethernet/netronome/nfp/flower/ |
| D | tunnel_conf.c | 462 if (!(neigh->nud_state & NUD_VALID) || neigh->dead) { in nfp_tun_write_neigh_v4() 498 if (!(neigh->nud_state & NUD_VALID) || neigh->dead) { in nfp_tun_write_neigh_v6()
|
| /Linux-v5.15/drivers/net/ethernet/mellanox/mlxsw/ |
| D | spectrum_router.c | 2647 u8 nud_state, dead; in mlxsw_sp_router_neigh_event_work() local 2655 nud_state = n->nud_state; in mlxsw_sp_router_neigh_event_work() 2662 entry_connected = nud_state & NUD_VALID && !dead; in mlxsw_sp_router_neigh_event_work() 3978 u8 nud_state, dead; in mlxsw_sp_nexthop_dead_neigh_replace() local 3999 nud_state = n->nud_state; in mlxsw_sp_nexthop_dead_neigh_replace() 4002 entry_connected = nud_state & NUD_VALID && !dead; in mlxsw_sp_nexthop_dead_neigh_replace() 4074 u8 nud_state, dead; in mlxsw_sp_nexthop_neigh_init() local 4111 nud_state = n->nud_state; in mlxsw_sp_nexthop_neigh_init() 4114 __mlxsw_sp_nexthop_neigh_update(nh, !(nud_state & NUD_VALID && !dead)); in mlxsw_sp_nexthop_neigh_init()
|
| D | spectrum_span.c | 244 if ((neigh->nud_state & NUD_VALID) && !neigh->dead) in mlxsw_sp_span_dmac()
|
| /Linux-v5.15/net/atm/ |
| D | clip.c | 300 neigh->nud_state = NUD_NONE; in clip_constructor()
|
| /Linux-v5.15/drivers/infiniband/hw/irdma/ |
| D | utils.c | 271 iwdev->netdev, neigh->nud_state, local_ipaddr, in irdma_net_event() 274 if (neigh->nud_state & NUD_VALID) in irdma_net_event()
|
| /Linux-v5.15/drivers/net/ethernet/rocker/ |
| D | rocker_ofdpa.c | 1366 if (n->nud_state & NUD_VALID) in ofdpa_port_ipv4_resolve() 2680 int flags = (n->nud_state & NUD_VALID ? 0 : OFDPA_OP_FLAG_REMOVE) | in ofdpa_port_neigh_update()
|