Re: [dpdk-dev] [PATCH v2] vhost: add support for large buffers.

2019-10-10 Thread Flavio Leitner
Hi Tiwei, Thanks for the review. I will follow up with an improved patch. fbl On Thu, 10 Oct 2019 13:12:57 +0800 Tiwei Bie wrote: > [PATCH v2] vhost: add support for large buffers. > > There is a warning reported by devtools/check-git-log.sh > The '.' at the end of the title should be droppe

Re: [dpdk-dev] [PATCH v2] vhost: add support for large buffers.

2019-10-09 Thread Tiwei Bie
[PATCH v2] vhost: add support for large buffers. There is a warning reported by devtools/check-git-log.sh The '.' at the end of the title should be dropped. On Fri, Oct 04, 2019 at 05:10:08PM -0300, Flavio Leitner wrote: > The rte_vhost_dequeue_burst supports two ways of dequeuing data. > If th

Re: [dpdk-dev] [PATCH v2] vhost: add support for large buffers.

2019-10-05 Thread Shahaf Shuler
Friday, October 4, 2019 11:10 PM, Flavio Leitner: > Subject: [dpdk-dev] [PATCH v2] vhost: add support for large buffers. > > The rte_vhost_dequeue_burst supports two ways of dequeuing data. > If the data fits into a buffer, then all data is copied and a single linear > buffe

[dpdk-dev] [PATCH v2] vhost: add support for large buffers.

2019-10-04 Thread Flavio Leitner
The rte_vhost_dequeue_burst supports two ways of dequeuing data. If the data fits into a buffer, then all data is copied and a single linear buffer is returned. Otherwise it allocates additional mbufs and chains them together to return a multiple segments mbuf. While that covers most use cases, it