Re: [dpdk-dev] [PATCH] net/null: Support bulk alloc and free.

2018-03-08 Thread Koujalagi, MalleshX
: [dpdk-dev] [PATCH] net/null: Support bulk alloc and free. On 3/5/2018 3:36 PM, Ananyev, Konstantin wrote: > > >> -Original Message- >> From: dev [mailto:dev-boun...@dpdk.org] On Behalf Of Ferruh Yigit >> Sent: Monday, March 5, 2018 3:25 PM >> To: Koujalagi,

Re: [dpdk-dev] [PATCH] net/null: Support bulk alloc and free.

2018-03-07 Thread Ferruh Yigit
om >> Subject: Re: [dpdk-dev] [PATCH] net/null: Support bulk alloc and free. >> >> On 2/3/2018 3:11 AM, Mallesh Koujalagi wrote: >>> After bulk allocation and freeing of multiple mbufs increase more than ~2% >>> throughput on single core. >>> >&g

Re: [dpdk-dev] [PATCH] net/null: Support bulk alloc and free.

2018-03-05 Thread Ananyev, Konstantin
> -Original Message- > From: dev [mailto:dev-boun...@dpdk.org] On Behalf Of Ferruh Yigit > Sent: Monday, March 5, 2018 3:25 PM > To: Koujalagi, MalleshX ; dev@dpdk.org > Cc: mtetsu...@gmail.com > Subject: Re: [dpdk-dev] [PATCH] net/null: Support bulk alloc and free. >

Re: [dpdk-dev] [PATCH] net/null: Support bulk alloc and free.

2018-03-05 Thread Ferruh Yigit
On 2/3/2018 3:11 AM, Mallesh Koujalagi wrote: > After bulk allocation and freeing of multiple mbufs increase more than ~2% > throughput on single core. > > Signed-off-by: Mallesh Koujalagi > --- > drivers/net/null/rte_eth_null.c | 16 +++- > 1 file changed, 7 insertions(+), 9 deletio

[dpdk-dev] [PATCH] net/null: Support bulk alloc and free.

2018-02-02 Thread Mallesh Koujalagi
After bulk allocation and freeing of multiple mbufs increase more than ~2% throughput on single core. Signed-off-by: Mallesh Koujalagi --- drivers/net/null/rte_eth_null.c | 16 +++- 1 file changed, 7 insertions(+), 9 deletions(-) diff --git a/drivers/net/null/rte_eth_null.c b/driver