Home
last modified time | relevance | path

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

/dpdk/drivers/net/af_xdp/
H A Drte_eth_af_xdp.c1850 struct rte_mp_reply replies; in afxdp_mp_request_fds() local
1863 ret = rte_mp_request_sync(&request, &replies, &timeout); in afxdp_mp_request_fds()
1864 if (ret < 0 || replies.nb_received != 1) { in afxdp_mp_request_fds()
1869 reply = replies.msgs; in afxdp_mp_request_fds()
/dpdk/drivers/net/memif/
H A Drte_eth_memif.c128 struct rte_mp_reply replies; in memif_mp_request_regions() local
150 ret = rte_mp_request_sync(&msg, &replies, &timeout); in memif_mp_request_regions()
151 if (ret < 0 || replies.nb_received != 1) { in memif_mp_request_regions()
157 reply = &replies.msgs[0]; in memif_mp_request_regions()
/dpdk/drivers/net/tap/
H A Drte_eth_tap.c2382 struct rte_mp_reply replies; in tap_mp_attach_queues() local
2395 ret = rte_mp_request_sync(&request, &replies, &timeout); in tap_mp_attach_queues()
2396 if (ret < 0 || replies.nb_received != 1) { in tap_mp_attach_queues()
2401 reply = &replies.msgs[0]; in tap_mp_attach_queues()
/dpdk/doc/guides/rel_notes/
H A Drelease_2_1.rst426 Fixed issue where in the ``icmpecho`` forwarding mode, ARP replies from
/dpdk/doc/guides/testpmd_app_ug/
H A Dtestpmd_funcs.rst344 …eceives a burst of packets, lookup for ICMP echo requests and, if any, send back ICMP echo replies.