Re: [dpdk-dev] [PATCH v3] vhost: fix mbuf allocation failures

2020-05-15 Thread Maxime Coquelin
On 5/8/20 1:17 PM, Sivaprasad Tummala wrote: > vhost buffer allocation is successful for packets that fit > into a linear buffer. If it fails, vhost library is expected > to drop the current packet and skip to the next. > > The patch fixes the error scenario by skipping to next packet. > Note:

Re: [dpdk-dev] [PATCH v3] vhost: fix mbuf allocation failures

2020-05-15 Thread Maxime Coquelin
On 5/8/20 1:17 PM, Sivaprasad Tummala wrote: > vhost buffer allocation is successful for packets that fit > into a linear buffer. If it fails, vhost library is expected > to drop the current packet and skip to the next. > > The patch fixes the error scenario by skipping to next packet. > Note:

[dpdk-dev] [PATCH v3] vhost: fix mbuf allocation failures

2020-05-08 Thread Sivaprasad Tummala
vhost buffer allocation is successful for packets that fit into a linear buffer. If it fails, vhost library is expected to drop the current packet and skip to the next. The patch fixes the error scenario by skipping to next packet. Note: Drop counters are not currently supported. Fixes: c3ff0ac70