Re: [dpdk-dev] [PATCH] net/pcap: fix issue with unnecessary mbufs freeing

2019-07-16 Thread Ferruh Yigit
On 7/11/2019 3:15 PM, Ferruh Yigit wrote: > On 7/11/2019 2:59 PM, A.McLoughlin wrote: >> In the eth_pcap_tx() and eth_pcap_tx_dumper() functions mbufs were freed >> without incrementing num_tx. To fix the issue, the mbuf freeing was >> removed as it was not of any benefit. >> >> Fixes: 6db141c91e1f

Re: [dpdk-dev] [PATCH] net/pcap: fix issue with unnecessary mbufs freeing

2019-07-11 Thread Ferruh Yigit
On 7/11/2019 2:59 PM, A.McLoughlin wrote: > In the eth_pcap_tx() and eth_pcap_tx_dumper() functions mbufs were freed > without incrementing num_tx. To fix the issue, the mbuf freeing was > removed as it was not of any benefit. > > Fixes: 6db141c91e1f ("pcap: support jumbo frames") > Cc: sta...@dpd

[dpdk-dev] [PATCH] net/pcap: fix issue with unnecessary mbufs freeing

2019-07-11 Thread A.McLoughlin
In the eth_pcap_tx() and eth_pcap_tx_dumper() functions mbufs were freed without incrementing num_tx. To fix the issue, the mbuf freeing was removed as it was not of any benefit. Fixes: 6db141c91e1f ("pcap: support jumbo frames") Cc: sta...@dpdk.org Cc: tero@coriant.com Signed-off-by: A.McLou