[dpdk-dev] kni: optimizing the rte_kni_rx_burst

Message ID 14060979121185-git-send-email-Hemant@freescale.com (mailing list archive)
State Accepted, archived
Headers

Commit Message

Hemant Agrawal July 23, 2014, 6:45 a.m. UTC
  The current implementation of rte_kni_rx_burst polls the fifo for buffers.
Irrespective of success or failure, it allocates the mbuf and try to put them into the alloc_q
if the buffers are not added to alloc_q, it frees them.
This waste lots of cpu cycles in allocating and freeing the buffers if alloc_q is full.

The logic has been changed to:
1. Initially allocand add buffer(burstsize) to alloc_q
2. Add buffers to alloc_q only when you are pulling out the buffers.

Signed-off-by: Hemant Agrawal <Hemant@freescale.com>
---
 lib/librte_kni/rte_kni.c |    8 ++++++--
 1 file changed, 6 insertions(+), 2 deletions(-)
  

Comments

Thomas Monjalon Nov. 11, 2014, 10:58 p.m. UTC | #1
Is there anyone interested in KNI to review this patch please?


2014-07-23 12:15, Hemant Agrawal:
> The current implementation of rte_kni_rx_burst polls the fifo for buffers.
> Irrespective of success or failure, it allocates the mbuf and try to put them into the alloc_q
> if the buffers are not added to alloc_q, it frees them.
> This waste lots of cpu cycles in allocating and freeing the buffers if alloc_q is full.
> 
> The logic has been changed to:
> 1. Initially allocand add buffer(burstsize) to alloc_q
> 2. Add buffers to alloc_q only when you are pulling out the buffers.
> 
> Signed-off-by: Hemant Agrawal <Hemant@freescale.com>
> ---
>  lib/librte_kni/rte_kni.c |    8 ++++++--
>  1 file changed, 6 insertions(+), 2 deletions(-)
> 
> diff --git a/lib/librte_kni/rte_kni.c b/lib/librte_kni/rte_kni.c
> index 76feef4..01e85f8 100644
> --- a/lib/librte_kni/rte_kni.c
> +++ b/lib/librte_kni/rte_kni.c
> @@ -263,6 +263,9 @@ rte_kni_alloc(struct rte_mempool *pktmbuf_pool,
>  
>  	ctx->in_use = 1;
>  
> +	/* Allocate mbufs and then put them into alloc_q */
> +	kni_allocate_mbufs(ctx);
> +
>  	return ctx;
>  
>  fail:
> @@ -369,8 +372,9 @@ rte_kni_rx_burst(struct rte_kni *kni, struct rte_mbuf **mbufs, unsigned num)
>  {
>  	unsigned ret = kni_fifo_get(kni->tx_q, (void **)mbufs, num);
>  
> -	/* Allocate mbufs and then put them into alloc_q */
> -	kni_allocate_mbufs(kni);
> +	/* If buffers removed, allocate mbufs and then put them into alloc_q */
> +	if(ret)
> +		kni_allocate_mbufs(kni);
>  
>  	return ret;
>  }
  
Thomas Monjalon Nov. 26, 2014, 9:20 p.m. UTC | #2
Ping

2014-11-11 23:58, Thomas Monjalon:
> Is there anyone interested in KNI to review this patch please?
> 
> 
> 2014-07-23 12:15, Hemant Agrawal:
> > The current implementation of rte_kni_rx_burst polls the fifo for buffers.
> > Irrespective of success or failure, it allocates the mbuf and try to put them into the alloc_q
> > if the buffers are not added to alloc_q, it frees them.
> > This waste lots of cpu cycles in allocating and freeing the buffers if alloc_q is full.
> > 
> > The logic has been changed to:
> > 1. Initially allocand add buffer(burstsize) to alloc_q
> > 2. Add buffers to alloc_q only when you are pulling out the buffers.
> > 
> > Signed-off-by: Hemant Agrawal <Hemant@freescale.com>
> > ---
> >  lib/librte_kni/rte_kni.c |    8 ++++++--
> >  1 file changed, 6 insertions(+), 2 deletions(-)
> > 
> > diff --git a/lib/librte_kni/rte_kni.c b/lib/librte_kni/rte_kni.c
> > index 76feef4..01e85f8 100644
> > --- a/lib/librte_kni/rte_kni.c
> > +++ b/lib/librte_kni/rte_kni.c
> > @@ -263,6 +263,9 @@ rte_kni_alloc(struct rte_mempool *pktmbuf_pool,
> >  
> >  	ctx->in_use = 1;
> >  
> > +	/* Allocate mbufs and then put them into alloc_q */
> > +	kni_allocate_mbufs(ctx);
> > +
> >  	return ctx;
> >  
> >  fail:
> > @@ -369,8 +372,9 @@ rte_kni_rx_burst(struct rte_kni *kni, struct rte_mbuf **mbufs, unsigned num)
> >  {
> >  	unsigned ret = kni_fifo_get(kni->tx_q, (void **)mbufs, num);
> >  
> > -	/* Allocate mbufs and then put them into alloc_q */
> > -	kni_allocate_mbufs(kni);
> > +	/* If buffers removed, allocate mbufs and then put them into alloc_q */
> > +	if(ret)
> > +		kni_allocate_mbufs(kni);
> >  
> >  	return ret;
> >  }
  
Thomas Monjalon Jan. 30, 2015, 9:59 a.m. UTC | #3
2014-11-26 22:20, Thomas Monjalon:
> Ping
> 
> 2014-11-11 23:58, Thomas Monjalon:
> > Is there anyone interested in KNI to review this patch please?
> > 
> > 
> > 2014-07-23 12:15, Hemant Agrawal:
> > > The current implementation of rte_kni_rx_burst polls the fifo for buffers.
> > > Irrespective of success or failure, it allocates the mbuf and try to put them into the alloc_q
> > > if the buffers are not added to alloc_q, it frees them.
> > > This waste lots of cpu cycles in allocating and freeing the buffers if alloc_q is full.
> > > 
> > > The logic has been changed to:
> > > 1. Initially allocand add buffer(burstsize) to alloc_q
> > > 2. Add buffers to alloc_q only when you are pulling out the buffers.
> > > 
> > > Signed-off-by: Hemant Agrawal <Hemant@freescale.com>

From http://dpdk.org/ml/archives/dev/2015-January/011771.html, Jay said
"The patch looks good from a DPDK 1.6r2 viewpoint. We saw the same behavior
in our app and ended up avoiding it higher in the stack (in our code)."
Reviewed-by: Jay Rolette <rolette@infiniteio.com>
  
Thomas Monjalon Feb. 24, 2015, 1:29 a.m. UTC | #4
> > > 2014-07-23 12:15, Hemant Agrawal:
> > > > The current implementation of rte_kni_rx_burst polls the fifo for buffers.
> > > > Irrespective of success or failure, it allocates the mbuf and try to put them into the alloc_q
> > > > if the buffers are not added to alloc_q, it frees them.
> > > > This waste lots of cpu cycles in allocating and freeing the buffers if alloc_q is full.
> > > > 
> > > > The logic has been changed to:
> > > > 1. Initially allocand add buffer(burstsize) to alloc_q
> > > > 2. Add buffers to alloc_q only when you are pulling out the buffers.
> > > > 
> > > > Signed-off-by: Hemant Agrawal <Hemant@freescale.com>
> 
> From http://dpdk.org/ml/archives/dev/2015-January/011771.html, Jay said
> "The patch looks good from a DPDK 1.6r2 viewpoint. We saw the same behavior
> in our app and ended up avoiding it higher in the stack (in our code)."
> Reviewed-by: Jay Rolette <rolette@infiniteio.com>

Applied, thanks
  

Patch

diff --git a/lib/librte_kni/rte_kni.c b/lib/librte_kni/rte_kni.c
index 76feef4..01e85f8 100644
--- a/lib/librte_kni/rte_kni.c
+++ b/lib/librte_kni/rte_kni.c
@@ -263,6 +263,9 @@  rte_kni_alloc(struct rte_mempool *pktmbuf_pool,
 
 	ctx->in_use = 1;
 
+	/* Allocate mbufs and then put them into alloc_q */
+	kni_allocate_mbufs(ctx);
+
 	return ctx;
 
 fail:
@@ -369,8 +372,9 @@  rte_kni_rx_burst(struct rte_kni *kni, struct rte_mbuf **mbufs, unsigned num)
 {
 	unsigned ret = kni_fifo_get(kni->tx_q, (void **)mbufs, num);
 
-	/* Allocate mbufs and then put them into alloc_q */
-	kni_allocate_mbufs(kni);
+	/* If buffers removed, allocate mbufs and then put them into alloc_q */
+	if(ret)
+		kni_allocate_mbufs(kni);
 
 	return ret;
 }