Home
last modified time | relevance | path

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

/linux/net/tipc/
H A Dudp_media.c173 struct dst_entry *ndst; in tipc_udp_xmit()
177 ndst = dst_cache_get(cache); in tipc_udp_xmit()
179 struct rtable *rt = dst_rtable(ndst); in tipc_udp_xmit()
202 if (!ndst) { in tipc_udp_xmit()
209 ndst = ip6_dst_lookup_flow(net, ub->ubsock->sk, in tipc_udp_xmit()
211 if (IS_ERR(ndst)) { in tipc_udp_xmit()
212 err = PTR_ERR(ndst); in tipc_udp_xmit()
215 dst_cache_set_ip6(cache, ndst, &fl6.saddr); in tipc_udp_xmit()
217 ttl = ip6_dst_hoplimit(ndst); in tipc_udp_xmit()
218 udp_tunnel6_xmit_skb(ndst, u in tipc_udp_xmit()
174 struct dst_entry *ndst; tipc_udp_xmit() local
[all...]
/linux/drivers/net/vxlan/
H A Dvxlan_core.c2354 struct dst_entry *ndst = NULL; in vxlan_xmit_one() local
2513 ndst = &rt->dst; in vxlan_xmit_one()
2514 err = skb_tunnel_check_pmtu(skb, ndst, vxlan_headroom(flags & VXLAN_F_GPE), in vxlan_xmit_one()
2530 dst_release(ndst); in vxlan_xmit_one()
2536 err = vxlan_build_skb(skb, ndst, sizeof(struct iphdr), in vxlan_xmit_one()
2562 ndst = udp_tunnel6_dst_lookup(skb, dev, vxlan->net, sock6->sock, in vxlan_xmit_one()
2566 if (IS_ERR(ndst)) { in vxlan_xmit_one()
2567 err = PTR_ERR(ndst); in vxlan_xmit_one()
2568 ndst = NULL; in vxlan_xmit_one()
2577 u32 rt6i_flags = dst_rt6_info(ndst)->rt6i_flags; in vxlan_xmit_one()
[all …]
/linux/net/core/
H A Dneighbour.c2293 struct ndt_stats ndst; in neightbl_fill_info() local
2295 memset(&ndst, 0, sizeof(ndst)); in neightbl_fill_info()
2301 ndst.ndts_allocs += READ_ONCE(st->allocs); in neightbl_fill_info()
2302 ndst.ndts_destroys += READ_ONCE(st->destroys); in neightbl_fill_info()
2303 ndst.ndts_hash_grows += READ_ONCE(st->hash_grows); in neightbl_fill_info()
2304 ndst.ndts_res_failed += READ_ONCE(st->res_failed); in neightbl_fill_info()
2305 ndst.ndts_lookups += READ_ONCE(st->lookups); in neightbl_fill_info()
2306 ndst.ndts_hits += READ_ONCE(st->hits); in neightbl_fill_info()
2307 ndst.ndts_rcv_probes_mcast += READ_ONCE(st->rcv_probes_mcast); in neightbl_fill_info()
2308 ndst.ndts_rcv_probes_ucast += READ_ONCE(st->rcv_probes_ucast); in neightbl_fill_info()
[all …]
/linux/net/xfrm/
H A Dxfrm_state.c164 struct hlist_head *ndst, *nsrc, *nspi, *nseq, *odst, *osrc, *ospi, *oseq; in xfrm_hash_resize() local
170 ndst = xfrm_hash_alloc(nsize); in xfrm_hash_resize()
171 if (!ndst) in xfrm_hash_resize()
175 xfrm_hash_free(ndst, nsize); in xfrm_hash_resize()
180 xfrm_hash_free(ndst, nsize); in xfrm_hash_resize()
186 xfrm_hash_free(ndst, nsize); in xfrm_hash_resize()
198 xfrm_hash_transfer(odst + i, ndst, nsrc, nspi, nseq, nhashmask); in xfrm_hash_resize()
205 rcu_assign_pointer(net->xfrm.state_bydst, ndst); in xfrm_hash_resize()
3263 struct hlist_head *ndst, *nsrc, *nspi, *nseq; in xfrm_state_init() local
3274 ndst = xfrm_hash_alloc(sz); in xfrm_state_init()
[all …]
H A Dxfrm_policy.c634 struct hlist_head *ndst = xfrm_hash_alloc(nsize); in xfrm_bydst_resize() local
638 if (!ndst) in xfrm_bydst_resize()
648 xfrm_dst_hash_transfer(net, odst + i, ndst, nhashmask, dir); in xfrm_bydst_resize()
650 rcu_assign_pointer(net->xfrm.policy_bydst[dir].table, ndst); in xfrm_bydst_resize()
/linux/arch/x86/kvm/vmx/
H A Dposted_intr.c121 new.ndst = dest; in vmx_vcpu_pi_load()
/linux/arch/x86/kernel/
H A Dirq.c432 this_cpu_write(posted_msi_pi_desc.ndst, destination); in intel_posted_msi_init()
/linux/net/ipv6/
H A Dip6_tunnel.c1105 struct dst_entry *dst = NULL, *ndst = NULL; in ip6_tnl_xmit() local
1191 ndst = dst; in ip6_tnl_xmit()
1253 if (use_cache && ndst) in ip6_tnl_xmit()
1254 dst_cache_set_ip6(&t->dst_cache, ndst, &fl6->saddr); in ip6_tnl_xmit()