Re: [dpdk-dev] [PATCH v2] nfp: handle packets with length 0 as usual ones

2017-08-22 Thread Ferruh Yigit
On 8/22/2017 11:41 AM, Alejandro Lucero wrote: > A DPDK app could, whatever the reason, send packets with size 0. > The PMD is not sending those packets, which does make sense, > but the problem is the mbuf is not released either. That leads > to mbufs not being available, because the app trusts th

[dpdk-dev] [PATCH v2] nfp: handle packets with length 0 as usual ones

2017-08-22 Thread Alejandro Lucero
A DPDK app could, whatever the reason, send packets with size 0. The PMD is not sending those packets, which does make sense, but the problem is the mbuf is not released either. That leads to mbufs not being available, because the app trusts the PMD will do it. Although this is a problem related t