DPDK patches and discussions
 help / color / mirror / Atom feed
* [PATCH] eventdev/eth_tx: fix queue add logic
@ 2022-02-09  5:23 Naga Harish K S V
  2022-02-09  5:31 ` [PATCH v2] " Naga Harish K S V
  0 siblings, 1 reply; 4+ messages in thread
From: Naga Harish K S V @ 2022-02-09  5:23 UTC (permalink / raw)
  To: jay.jayatheerthan, jerinj; +Cc: dev

The internal function txa_service_queue_add is returning 0 in case of error.
correct this logic to return negative value to indicate failure.

Fixes: a3bbf2e09756 ("eventdev: add eth Tx adapter implementation")

Signed-off-by: Naga Harish K S V <s.v.naga.harish.k@intel.com>
---
 lib/eventdev/rte_event_eth_tx_adapter.c | 13 ++++++++-----
 1 file changed, 8 insertions(+), 5 deletions(-)

diff --git a/lib/eventdev/rte_event_eth_tx_adapter.c b/lib/eventdev/rte_event_eth_tx_adapter.c
index c17f33f098..49053e6bea 100644
--- a/lib/eventdev/rte_event_eth_tx_adapter.c
+++ b/lib/eventdev/rte_event_eth_tx_adapter.c
@@ -806,10 +806,8 @@ txa_service_queue_add(uint8_t id,
 
 	rte_spinlock_lock(&txa->tx_lock);
 
-	if (txa_service_is_queue_added(txa, eth_dev, tx_queue_id)) {
-		rte_spinlock_unlock(&txa->tx_lock);
-		return 0;
-	}
+	if (txa_service_is_queue_added(txa, eth_dev, tx_queue_id))
+		goto ret_unlock;
 
 	ret = txa_service_queue_array_alloc(txa, eth_dev->data->port_id);
 	if (ret)
@@ -821,6 +819,8 @@ txa_service_queue_add(uint8_t id,
 
 	tdi = &txa->txa_ethdev[eth_dev->data->port_id];
 	tqi = txa_service_queue(txa, eth_dev->data->port_id, tx_queue_id);
+	if (tqi == NULL)
+		goto err_unlock;
 
 	txa_retry = &tqi->txa_retry;
 	txa_retry->id = txa->id;
@@ -836,6 +836,9 @@ txa_service_queue_add(uint8_t id,
 	tdi->nb_queues++;
 	txa->nb_queues++;
 
+ret_unlock:
+	rte_spinlock_unlock(&txa->tx_lock);
+	return 0;
 err_unlock:
 	if (txa->nb_queues == 0) {
 		txa_service_queue_array_free(txa,
@@ -844,7 +847,7 @@ txa_service_queue_add(uint8_t id,
 	}
 
 	rte_spinlock_unlock(&txa->tx_lock);
-	return 0;
+	return -1;
 }
 
 static int
-- 
2.23.0


^ permalink raw reply	[flat|nested] 4+ messages in thread

* [PATCH v2] eventdev/eth_tx: fix queue add logic
  2022-02-09  5:23 [PATCH] eventdev/eth_tx: fix queue add logic Naga Harish K S V
@ 2022-02-09  5:31 ` Naga Harish K S V
  2022-02-11 16:33   ` Jayatheerthan, Jay
  0 siblings, 1 reply; 4+ messages in thread
From: Naga Harish K S V @ 2022-02-09  5:31 UTC (permalink / raw)
  To: jay.jayatheerthan, jerinj; +Cc: dev

The internal function txa_service_queue_add is returning 0
in case of error. correct this logic to return a negative value
to indicate failure.

Fixes: a3bbf2e09756 ("eventdev: add eth Tx adapter implementation")

Signed-off-by: Naga Harish K S V <s.v.naga.harish.k@intel.com>

---
v2:
* adjust commit message line size
---
 lib/eventdev/rte_event_eth_tx_adapter.c | 14 +++++++++-----
 1 file changed, 9 insertions(+), 5 deletions(-)

diff --git a/lib/eventdev/rte_event_eth_tx_adapter.c b/lib/eventdev/rte_event_eth_tx_adapter.c
index c17f33f098..1b304f0a73 100644
--- a/lib/eventdev/rte_event_eth_tx_adapter.c
+++ b/lib/eventdev/rte_event_eth_tx_adapter.c
@@ -806,10 +806,8 @@ txa_service_queue_add(uint8_t id,
 
 	rte_spinlock_lock(&txa->tx_lock);
 
-	if (txa_service_is_queue_added(txa, eth_dev, tx_queue_id)) {
-		rte_spinlock_unlock(&txa->tx_lock);
-		return 0;
-	}
+	if (txa_service_is_queue_added(txa, eth_dev, tx_queue_id))
+		goto ret_unlock;
 
 	ret = txa_service_queue_array_alloc(txa, eth_dev->data->port_id);
 	if (ret)
@@ -821,6 +819,8 @@ txa_service_queue_add(uint8_t id,
 
 	tdi = &txa->txa_ethdev[eth_dev->data->port_id];
 	tqi = txa_service_queue(txa, eth_dev->data->port_id, tx_queue_id);
+	if (tqi == NULL)
+		goto err_unlock;
 
 	txa_retry = &tqi->txa_retry;
 	txa_retry->id = txa->id;
@@ -836,6 +836,10 @@ txa_service_queue_add(uint8_t id,
 	tdi->nb_queues++;
 	txa->nb_queues++;
 
+ret_unlock:
+	rte_spinlock_unlock(&txa->tx_lock);
+	return 0;
+
 err_unlock:
 	if (txa->nb_queues == 0) {
 		txa_service_queue_array_free(txa,
@@ -844,7 +848,7 @@ txa_service_queue_add(uint8_t id,
 	}
 
 	rte_spinlock_unlock(&txa->tx_lock);
-	return 0;
+	return -1;
 }
 
 static int
-- 
2.23.0


^ permalink raw reply	[flat|nested] 4+ messages in thread

* RE: [PATCH v2] eventdev/eth_tx: fix queue add logic
  2022-02-09  5:31 ` [PATCH v2] " Naga Harish K S V
@ 2022-02-11 16:33   ` Jayatheerthan, Jay
  2022-02-14 15:23     ` Jerin Jacob
  0 siblings, 1 reply; 4+ messages in thread
From: Jayatheerthan, Jay @ 2022-02-11 16:33 UTC (permalink / raw)
  To: Naga Harish K, S V, jerinj; +Cc: dev

Looks good. Thanks.

Acked-by: Jay Jayatheerthan <jay.jayatheerthan@intel.com>

-Jay



> -----Original Message-----
> From: Naga Harish K, S V <s.v.naga.harish.k@intel.com>
> Sent: Wednesday, February 9, 2022 11:02 AM
> To: Jayatheerthan, Jay <jay.jayatheerthan@intel.com>; jerinj@marvell.com
> Cc: dev@dpdk.org
> Subject: [PATCH v2] eventdev/eth_tx: fix queue add logic
> 
> The internal function txa_service_queue_add is returning 0
> in case of error. correct this logic to return a negative value
> to indicate failure.
> 
> Fixes: a3bbf2e09756 ("eventdev: add eth Tx adapter implementation")
> 
> Signed-off-by: Naga Harish K S V <s.v.naga.harish.k@intel.com>
> 
> ---
> v2:
> * adjust commit message line size
> ---
>  lib/eventdev/rte_event_eth_tx_adapter.c | 14 +++++++++-----
>  1 file changed, 9 insertions(+), 5 deletions(-)
> 
> diff --git a/lib/eventdev/rte_event_eth_tx_adapter.c b/lib/eventdev/rte_event_eth_tx_adapter.c
> index c17f33f098..1b304f0a73 100644
> --- a/lib/eventdev/rte_event_eth_tx_adapter.c
> +++ b/lib/eventdev/rte_event_eth_tx_adapter.c
> @@ -806,10 +806,8 @@ txa_service_queue_add(uint8_t id,
> 
>  	rte_spinlock_lock(&txa->tx_lock);
> 
> -	if (txa_service_is_queue_added(txa, eth_dev, tx_queue_id)) {
> -		rte_spinlock_unlock(&txa->tx_lock);
> -		return 0;
> -	}
> +	if (txa_service_is_queue_added(txa, eth_dev, tx_queue_id))
> +		goto ret_unlock;
> 
>  	ret = txa_service_queue_array_alloc(txa, eth_dev->data->port_id);
>  	if (ret)
> @@ -821,6 +819,8 @@ txa_service_queue_add(uint8_t id,
> 
>  	tdi = &txa->txa_ethdev[eth_dev->data->port_id];
>  	tqi = txa_service_queue(txa, eth_dev->data->port_id, tx_queue_id);
> +	if (tqi == NULL)
> +		goto err_unlock;
> 
>  	txa_retry = &tqi->txa_retry;
>  	txa_retry->id = txa->id;
> @@ -836,6 +836,10 @@ txa_service_queue_add(uint8_t id,
>  	tdi->nb_queues++;
>  	txa->nb_queues++;
> 
> +ret_unlock:
> +	rte_spinlock_unlock(&txa->tx_lock);
> +	return 0;
> +
>  err_unlock:
>  	if (txa->nb_queues == 0) {
>  		txa_service_queue_array_free(txa,
> @@ -844,7 +848,7 @@ txa_service_queue_add(uint8_t id,
>  	}
> 
>  	rte_spinlock_unlock(&txa->tx_lock);
> -	return 0;
> +	return -1;
>  }
> 
>  static int
> --
> 2.23.0


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH v2] eventdev/eth_tx: fix queue add logic
  2022-02-11 16:33   ` Jayatheerthan, Jay
@ 2022-02-14 15:23     ` Jerin Jacob
  0 siblings, 0 replies; 4+ messages in thread
From: Jerin Jacob @ 2022-02-14 15:23 UTC (permalink / raw)
  To: Jayatheerthan, Jay; +Cc: Naga Harish K, S V, jerinj, dev

On Fri, Feb 11, 2022 at 10:03 PM Jayatheerthan, Jay
<jay.jayatheerthan@intel.com> wrote:
>
> Looks good. Thanks.
>
> Acked-by: Jay Jayatheerthan <jay.jayatheerthan@intel.com>

Applied to dpdk-next-net-eventdev/for-main. Thanks


>
> -Jay
>
>
>
> > -----Original Message-----
> > From: Naga Harish K, S V <s.v.naga.harish.k@intel.com>
> > Sent: Wednesday, February 9, 2022 11:02 AM
> > To: Jayatheerthan, Jay <jay.jayatheerthan@intel.com>; jerinj@marvell.com
> > Cc: dev@dpdk.org
> > Subject: [PATCH v2] eventdev/eth_tx: fix queue add logic
> >
> > The internal function txa_service_queue_add is returning 0
> > in case of error. correct this logic to return a negative value
> > to indicate failure.
> >
> > Fixes: a3bbf2e09756 ("eventdev: add eth Tx adapter implementation")
> >
> > Signed-off-by: Naga Harish K S V <s.v.naga.harish.k@intel.com>
> >
> > ---
> > v2:
> > * adjust commit message line size
> > ---
> >  lib/eventdev/rte_event_eth_tx_adapter.c | 14 +++++++++-----
> >  1 file changed, 9 insertions(+), 5 deletions(-)
> >
> > diff --git a/lib/eventdev/rte_event_eth_tx_adapter.c b/lib/eventdev/rte_event_eth_tx_adapter.c
> > index c17f33f098..1b304f0a73 100644
> > --- a/lib/eventdev/rte_event_eth_tx_adapter.c
> > +++ b/lib/eventdev/rte_event_eth_tx_adapter.c
> > @@ -806,10 +806,8 @@ txa_service_queue_add(uint8_t id,
> >
> >       rte_spinlock_lock(&txa->tx_lock);
> >
> > -     if (txa_service_is_queue_added(txa, eth_dev, tx_queue_id)) {
> > -             rte_spinlock_unlock(&txa->tx_lock);
> > -             return 0;
> > -     }
> > +     if (txa_service_is_queue_added(txa, eth_dev, tx_queue_id))
> > +             goto ret_unlock;
> >
> >       ret = txa_service_queue_array_alloc(txa, eth_dev->data->port_id);
> >       if (ret)
> > @@ -821,6 +819,8 @@ txa_service_queue_add(uint8_t id,
> >
> >       tdi = &txa->txa_ethdev[eth_dev->data->port_id];
> >       tqi = txa_service_queue(txa, eth_dev->data->port_id, tx_queue_id);
> > +     if (tqi == NULL)
> > +             goto err_unlock;
> >
> >       txa_retry = &tqi->txa_retry;
> >       txa_retry->id = txa->id;
> > @@ -836,6 +836,10 @@ txa_service_queue_add(uint8_t id,
> >       tdi->nb_queues++;
> >       txa->nb_queues++;
> >
> > +ret_unlock:
> > +     rte_spinlock_unlock(&txa->tx_lock);
> > +     return 0;
> > +
> >  err_unlock:
> >       if (txa->nb_queues == 0) {
> >               txa_service_queue_array_free(txa,
> > @@ -844,7 +848,7 @@ txa_service_queue_add(uint8_t id,
> >       }
> >
> >       rte_spinlock_unlock(&txa->tx_lock);
> > -     return 0;
> > +     return -1;
> >  }
> >
> >  static int
> > --
> > 2.23.0
>

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2022-02-14 15:24 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-02-09  5:23 [PATCH] eventdev/eth_tx: fix queue add logic Naga Harish K S V
2022-02-09  5:31 ` [PATCH v2] " Naga Harish K S V
2022-02-11 16:33   ` Jayatheerthan, Jay
2022-02-14 15:23     ` Jerin Jacob

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).