Re: [dpdk-dev] [PATCH] net/pcap: create null Rx function

2019-07-16 Thread Ferruh Yigit
On 7/16/2019 10:34 AM, A.McLoughlin wrote: > Previously in the PCAP PMD it was only possibe to specify an rxq which > uses an iface or a pcap file. This patch creates a 'dummy Rx' function > which is used when no rx_pcap or rx_iface is passed but a tx queue is > passed. This function can be polled

[dpdk-dev] [PATCH] net/pcap: create null Rx function

2019-07-16 Thread A.McLoughlin
Previously in the PCAP PMD it was only possibe to specify an rxq which uses an iface or a pcap file. This patch creates a 'dummy Rx' function which is used when no rx_pcap or rx_iface is passed but a tx queue is passed. This function can be polled and receives no packets. Signed-off-by: A.McLoughl