Home
last modified time | relevance | path

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

/linux-6.15/kernel/module/
H A Dkallsyms.c118 unsigned int i, nsrc, ndst, strtab_size = 0; in layout_symtab() local
132 for (ndst = i = 0; i < nsrc; i++) { in layout_symtab()
137 ndst++; in layout_symtab()
143 info->stroffs = mod_mem_data->size = info->symoffs + ndst * sizeof(Elf_Sym); in layout_symtab()
147 mod_mem_data->size += ndst * sizeof(char); in layout_symtab()
172 unsigned int i, ndst; in add_kallsyms() local
199 for (ndst = i = 0; i < kallsyms->num_symtab; i++) { in add_kallsyms()
206 mod->core_kallsyms.typetab[ndst] = in add_kallsyms()
208 dst[ndst] = src[i]; in add_kallsyms()
209 dst[ndst++].st_name = s - mod->core_kallsyms.strtab; in add_kallsyms()
[all …]
/linux-6.15/net/tipc/
H A Dudp_media.c174 struct dst_entry *ndst; in tipc_udp_xmit() local
178 ndst = dst_cache_get(cache); in tipc_udp_xmit()
180 struct rtable *rt = dst_rtable(ndst); in tipc_udp_xmit()
203 if (!ndst) { in tipc_udp_xmit()
210 ndst = ipv6_stub->ipv6_dst_lookup_flow(net, in tipc_udp_xmit()
213 if (IS_ERR(ndst)) { in tipc_udp_xmit()
214 err = PTR_ERR(ndst); in tipc_udp_xmit()
217 dst_cache_set_ip6(cache, ndst, &fl6.saddr); in tipc_udp_xmit()
219 ttl = ip6_dst_hoplimit(ndst); in tipc_udp_xmit()
220 err = udp_tunnel6_xmit_skb(ndst, ub->ubsock->sk, skb, NULL, in tipc_udp_xmit()
/linux-6.15/drivers/infiniband/sw/rxe/
H A Drxe_net.c52 struct dst_entry *ndst; in rxe_find_route6() local
61 ndst = ipv6_stub->ipv6_dst_lookup_flow(sock_net(recv_sockets.sk6->sk), in rxe_find_route6()
64 if (IS_ERR(ndst)) { in rxe_find_route6()
69 if (unlikely(ndst->error)) { in rxe_find_route6()
74 return ndst; in rxe_find_route6()
76 dst_release(ndst); in rxe_find_route6()
/linux-6.15/arch/x86/include/asm/
H A Dposted_intr.h22 u32 ndst; member
/linux-6.15/drivers/net/vxlan/
H A Dvxlan_core.c2518 ndst = &rt->dst; in vxlan_xmit_one()
2535 dst_release(ndst); in vxlan_xmit_one()
2563 if (IS_ERR(ndst)) { in vxlan_xmit_one()
2564 err = PTR_ERR(ndst); in vxlan_xmit_one()
2565 ndst = NULL; in vxlan_xmit_one()
2598 dst_release(ndst); in vxlan_xmit_one()
2634 dst_release(ndst); in vxlan_xmit_one()
3257 struct dst_entry *ndst; in vxlan_fill_metadata_dst() local
3267 if (IS_ERR(ndst)) in vxlan_fill_metadata_dst()
3268 return PTR_ERR(ndst); in vxlan_fill_metadata_dst()
[all …]
/linux-6.15/net/core/
H A Dneighbour.c2161 struct ndt_stats ndst; in neightbl_fill_info() local
2163 memset(&ndst, 0, sizeof(ndst)); in neightbl_fill_info()
2169 ndst.ndts_allocs += READ_ONCE(st->allocs); in neightbl_fill_info()
2170 ndst.ndts_destroys += READ_ONCE(st->destroys); in neightbl_fill_info()
2171 ndst.ndts_hash_grows += READ_ONCE(st->hash_grows); in neightbl_fill_info()
2172 ndst.ndts_res_failed += READ_ONCE(st->res_failed); in neightbl_fill_info()
2173 ndst.ndts_lookups += READ_ONCE(st->lookups); in neightbl_fill_info()
2174 ndst.ndts_hits += READ_ONCE(st->hits); in neightbl_fill_info()
2178 ndst.ndts_forced_gc_runs += READ_ONCE(st->forced_gc_runs); in neightbl_fill_info()
2179 ndst.ndts_table_fulls += READ_ONCE(st->table_fulls); in neightbl_fill_info()
[all …]
/linux-6.15/arch/x86/kvm/vmx/
H A Dposted_intr.c122 new.ndst = dest; in vmx_vcpu_pi_load()
/linux-6.15/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()
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-6.15/arch/x86/kernel/
H A Dirq.c380 this_cpu_write(posted_msi_pi_desc.ndst, destination); in intel_posted_msi_init()
/linux-6.15/net/ipv6/
H A Dip6_tunnel.c1093 struct dst_entry *dst = NULL, *ndst = NULL; in ip6_tnl_xmit() local
1179 ndst = dst; in ip6_tnl_xmit()
1241 if (use_cache && ndst) in ip6_tnl_xmit()
1242 dst_cache_set_ip6(&t->dst_cache, ndst, &fl6->saddr); in ip6_tnl_xmit()