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

2017-03-31 Thread Yao, Lei A
> -Original Message- > From: dev [mailto:dev-boun...@dpdk.org] On Behalf Of Ferruh Yigit > Sent: Thursday, March 30, 2017 8:55 PM > To: Yang, Zhiyong ; dev@dpdk.org > Cc: Ananyev, Konstantin ; Richardson, > Bruce > Subject: Re: [dpdk-dev] [PATCH v3 0/5] consistent P

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

2017-03-30 Thread Ferruh Yigit
On 3/29/2017 8:16 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, >

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

2017-03-29 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