Re: [dpdk-dev] [RFC] lib/librte_ether: consistent PMD batching behavior

2017-02-06 Thread Yang, Zhiyong
ko ; Yang, Zhiyong > ; dev@dpdk.org; thomas.monja...@6wind.com > Subject: Re: [dpdk-dev] [RFC] lib/librte_ether: consistent PMD batching > behavior > > On Fri, Jan 20, 2017 at 11:48:22AM +, Bruce Richardson wrote: > > On Fri, Jan 20, 2017 at 11:24:40AM +, Ananyev, Konstan

Re: [dpdk-dev] [RFC] lib/librte_ether: consistent PMD batching behavior

2017-01-23 Thread Adrien Mazarguil
; > To: Yang, Zhiyong ; dev@dpdk.org > > > Cc: thomas.monja...@6wind.com; Richardson, Bruce > > > ; Ananyev, Konstantin > > > > > > Subject: Re: [dpdk-dev] [RFC] lib/librte_ether: consistent PMD batching > > > behavior > > > > > > On 0

Re: [dpdk-dev] [RFC] lib/librte_ether: consistent PMD batching behavior

2017-01-20 Thread Yang, Zhiyong
From: Andrew Rybchenko [mailto:arybche...@solarflare.com] Sent: Friday, January 20, 2017 6:26 PM To: Yang, Zhiyong ; dev@dpdk.org Cc: thomas.monja...@6wind.com; Richardson, Bruce ; Ananyev, Konstantin Subject: Re: [dpdk-dev] [RFC] lib/librte_ether: consistent PMD batching behavior On 01/20

Re: [dpdk-dev] [RFC] lib/librte_ether: consistent PMD batching behavior

2017-01-20 Thread Yang, Zhiyong
> -Original Message- > From: Ananyev, Konstantin > Sent: Friday, January 20, 2017 7:25 PM > To: Andrew Rybchenko ; Yang, Zhiyong > ; dev@dpdk.org > Cc: thomas.monja...@6wind.com; Richardson, Bruce > > Subject: RE: [dpdk-dev] [RFC] lib/librte_ether: consistent

Re: [dpdk-dev] [RFC] lib/librte_ether: consistent PMD batching behavior

2017-01-20 Thread Bruce Richardson
uce > > ; Ananyev, Konstantin > > > > Subject: Re: [dpdk-dev] [RFC] lib/librte_ether: consistent PMD batching > > behavior > > > > On 01/20/2017 12:51 PM, Zhiyong Yang wrote: > > The rte_eth_tx_burst() function in the file Rte_ethdev.h is invoked to

Re: [dpdk-dev] [RFC] lib/librte_ether: consistent PMD batching behavior

2017-01-20 Thread Ananyev, Konstantin
> > From: Andrew Rybchenko [mailto:arybche...@solarflare.com] > Sent: Friday, January 20, 2017 10:26 AM > To: Yang, Zhiyong ; dev@dpdk.org > Cc: thomas.monja...@6wind.com; Richardson, Bruce > ; Ananyev, Konstantin > > Subject: Re: [dpdk-dev] [RFC] lib/librte_ether:

Re: [dpdk-dev] [RFC] lib/librte_ether: consistent PMD batching behavior

2017-01-20 Thread Andrew Rybchenko
On 01/20/2017 12:51 PM, 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, struct rt

[dpdk-dev] [RFC] lib/librte_ether: consistent PMD batching behavior

2017-01-20 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