Re: [dpdk-dev] [PATCH v2 0/5] consistent PMD batching behaviour

2017-03-28 Thread Ferruh Yigit
gt; > Thanks > Zhiyong > >> -Original Message- >> From: Yigit, Ferruh >> Sent: Friday, March 24, 2017 10:02 PM >> To: Yang, Zhiyong ; dev@dpdk.org >> Cc: Richardson, Bruce >> Subject: Re: [dpdk-dev] [PATCH v2 0/5] consistent PMD batching behavio

Re: [dpdk-dev] [PATCH v2 0/5] consistent PMD batching behaviour

2017-03-28 Thread Yang, Zhiyong
org > Cc: Richardson, Bruce > Subject: Re: [dpdk-dev] [PATCH v2 0/5] consistent PMD batching behaviour > > On 3/3/2017 11:17 AM, Zhiyong Yang wrote: > Can you please update release notes (release_17_05.rst) with this feature? > > This patch changes the PMD behavior for th

Re: [dpdk-dev] [PATCH v2 0/5] consistent PMD batching behaviour

2017-03-24 Thread Yang, Zhiyong
ect: Re: [dpdk-dev] [PATCH v2 0/5] consistent PMD batching behaviour > Can you please update release notes (release_17_05.rst) with this feature? > > This patch changes the PMD behavior for the user, that is why it would be nice > to mention from this change in release notes. > >

Re: [dpdk-dev] [PATCH v2 0/5] consistent PMD batching behaviour

2017-03-24 Thread Ferruh Yigit
On 3/3/2017 11:17 AM, Zhiyong Yang wrote: > The rte_eth_tx_burst() function in the file Rte_ethdev.h is invoked to > transmit output packets on the output queue for DPDK applications as > follows. > > static inline uint16_t > rte_eth_tx_burst(uint8_t port_id, uint16_t queue_id, >

Re: [dpdk-dev] [PATCH v2 0/5] consistent PMD batching behaviour

2017-03-05 Thread Yang, Zhiyong
Thanks, Konstantin. --Zhiyong > -Original Message- > From: Ananyev, Konstantin > Sent: Sunday, March 5, 2017 9:03 PM > To: Yang, Zhiyong ; dev@dpdk.org > Cc: Richardson, Bruce > Subject: RE: [dpdk-dev] [PATCH v2 0/5] consistent PMD batching behaviour > >

Re: [dpdk-dev] [PATCH v2 0/5] consistent PMD batching behaviour

2017-03-05 Thread Ananyev, Konstantin
> The rte_eth_tx_burst() function in the file Rte_ethdev.h is invoked to > transmit output packets on the output queue for DPDK applications as > follows. > > static inline uint16_t > rte_eth_tx_burst(uint8_t port_id, uint16_t queue_id, > struct rte_mbuf **tx_pkts, uint16_t nb_pk

[dpdk-dev] [PATCH v2 0/5] consistent PMD batching behaviour

2017-03-03 Thread Zhiyong Yang
The rte_eth_tx_burst() function in the file Rte_ethdev.h is invoked to transmit output packets on the output queue for DPDK applications as follows. static inline uint16_t rte_eth_tx_burst(uint8_t port_id, uint16_t queue_id, struct rte_mbuf **tx_pkts, uint16_t nb_pkts); Note: The