[dpdk-dev] [PATCH] app/testpmd: add engine for UDP echo server support

2015-09-04 Thread Thadeu Lima de Souza Cascardo
Adapt the ICMP echo code to reply to UDP echo requests on port 7. The testpmd forward engine udpecho is used for that. Signed-off-by: Thadeu Lima de Souza Cascardo --- app/test-pmd/config.c | 7 ++- app/test-pmd/icmpecho.c | 90

[dpdk-dev] [PATCH] tools: allow binding to other network class devices

2016-05-06 Thread Thadeu Lima de Souza Cascardo
dpdk_nic_bind will only handle Ethernet devices, but Mellanox ConnectX-3 Pro, for example, is a Network class device, but not an Ethernet one. Even though this allows other devices in the list, like Wireless devices, this should not be a problem. Signed-off-by: Thadeu Lima de Souza Cascardo