[dpdk-dev] [PATCH] fm10k: optimize legacy TX func

2016-02-24 Thread Bruce Richardson
tantin > > Cc: dev at dpdk.org > > Subject: [dpdk-dev] [PATCH] fm10k: optimize legacy TX func > > > > From: "Chen Jing D(Mark)" > > > > When legacy TX func tries to free a bunch of mbufs, it will free > > them one by one. This change will scan the free

[dpdk-dev] [PATCH] fm10k: optimize legacy TX func

2016-02-18 Thread He, Shaopeng
Hi, > -Original Message- > From: dev [mailto:dev-bounces at dpdk.org] On Behalf Of Chen Jing D(Mark) > Sent: Thursday, January 28, 2016 5:46 PM > To: Qiu, Michael; Ananyev, Konstantin > Cc: dev at dpdk.org > Subject: [dpdk-dev] [PATCH] fm10k: optimize legacy TX func >

[dpdk-dev] [PATCH] fm10k: optimize legacy TX func

2016-02-16 Thread Chen, Jing D
Hi, Bruce, > -Original Message- > From: Richardson, Bruce > Sent: Tuesday, February 16, 2016 11:28 PM > To: Chen, Jing D > Cc: Qiu, Michael; Ananyev, Konstantin; dev at dpdk.org > Subject: Re: [dpdk-dev] [PATCH] fm10k: optimize legacy TX func > > On Thu, Jan 28,

[dpdk-dev] [PATCH] fm10k: optimize legacy TX func

2016-02-16 Thread Bruce Richardson
On Thu, Jan 28, 2016 at 05:45:59PM +0800, Chen Jing D(Mark) wrote: > From: "Chen Jing D(Mark)" > > When legacy TX func tries to free a bunch of mbufs, it will free > them one by one. This change will scan the free list and merge the > requests in case they belongs to same pool, then free once, wh

[dpdk-dev] [PATCH] fm10k: optimize legacy TX func

2016-01-28 Thread Chen Jing D(Mark)
From: "Chen Jing D(Mark)" When legacy TX func tries to free a bunch of mbufs, it will free them one by one. This change will scan the free list and merge the requests in case they belongs to same pool, then free once, which will reduce cycles on freeing mbufs. Signed-off-by: Chen Jing D(Mark) -