Re: [dpdk-dev] [PATCH v2] doc: add preferred burst size support

2018-02-04 Thread Shreyansh Jain
Hi Bruce, On Thursday 01 February 2018 07:49 PM, Bruce Richardson wrote: On Thu, Feb 01, 2018 at 07:58:32PM +0530, Shreyansh Jain wrote: On Thursday 01 February 2018 06:57 PM, Bruce Richardson wrote: On Thu, Feb 01, 2018 at 06:18:23PM +0530, Shreyansh Jain wrote: rte_eth_rx_burst(..,nb_pkts)

Re: [dpdk-dev] [PATCH v2] doc: add preferred burst size support

2018-02-01 Thread Bruce Richardson
On Thu, Feb 01, 2018 at 07:58:32PM +0530, Shreyansh Jain wrote: > On Thursday 01 February 2018 06:57 PM, Bruce Richardson wrote: > > On Thu, Feb 01, 2018 at 06:18:23PM +0530, Shreyansh Jain wrote: > > > rte_eth_rx_burst(..,nb_pkts) function has semantic that if return value > > > is smaller than re

Re: [dpdk-dev] [PATCH v2] doc: add preferred burst size support

2018-02-01 Thread Shreyansh Jain
On Thursday 01 February 2018 06:57 PM, Bruce Richardson wrote: On Thu, Feb 01, 2018 at 06:18:23PM +0530, Shreyansh Jain wrote: rte_eth_rx_burst(..,nb_pkts) function has semantic that if return value is smaller than requested, application can consider it end of packet stream. Some hardware can on

Re: [dpdk-dev] [PATCH v2] doc: add preferred burst size support

2018-02-01 Thread Bruce Richardson
On Thu, Feb 01, 2018 at 06:18:23PM +0530, Shreyansh Jain wrote: > rte_eth_rx_burst(..,nb_pkts) function has semantic that if return value > is smaller than requested, application can consider it end of packet > stream. Some hardware can only support smaller burst sizes which need > to be advertised

Re: [dpdk-dev] [PATCH v2] doc: add preferred burst size support

2018-02-01 Thread Andrew Rybchenko
On 02/01/2018 03:48 PM, Shreyansh Jain wrote: rte_eth_rx_burst(..,nb_pkts) function has semantic that if return value is smaller than requested, application can consider it end of packet stream. Some hardware can only support smaller burst sizes which need to be advertised. Similar is the case fo

Re: [dpdk-dev] [PATCH v2] doc: add preferred burst size support

2018-02-01 Thread Hemant Agrawal
On 2/1/2018 6:18 PM, Shreyansh Jain wrote: rte_eth_rx_burst(..,nb_pkts) function has semantic that if return value is smaller than requested, application can consider it end of packet stream. Some hardware can only support smaller burst sizes which need to be advertised. Similar is the case for T

[dpdk-dev] [PATCH v2] doc: add preferred burst size support

2018-02-01 Thread Shreyansh Jain
rte_eth_rx_burst(..,nb_pkts) function has semantic that if return value is smaller than requested, application can consider it end of packet stream. Some hardware can only support smaller burst sizes which need to be advertised. Similar is the case for Tx burst. This patch adds deprecation notice