DPDK patches and discussions
 help / color / mirror / Atom feed
* [PATCH] net/iavf: fix access to null value
@ 2024-01-24  2:05 Mingjin Ye
  2024-02-02 10:47 ` Bruce Richardson
  2024-02-09 14:27 ` Burakov, Anatoly
  0 siblings, 2 replies; 4+ messages in thread
From: Mingjin Ye @ 2024-01-24  2:05 UTC (permalink / raw)
  To: dev; +Cc: Mingjin Ye, stable, Jingjing Wu, Beilei Xing

The "vsi" may be null, so it needs to be used after checking.

Fixes: ab28aad9c24f ("net/iavf: fix Rx Tx burst in multi-process")
Cc: stable@dpdk.org

Signed-off-by: Mingjin Ye <mingjinx.ye@intel.com>
---
 drivers/net/iavf/iavf_rxtx.c | 10 ++++++----
 1 file changed, 6 insertions(+), 4 deletions(-)

diff --git a/drivers/net/iavf/iavf_rxtx.c b/drivers/net/iavf/iavf_rxtx.c
index 5ba4527ae3..8992e728cd 100644
--- a/drivers/net/iavf/iavf_rxtx.c
+++ b/drivers/net/iavf/iavf_rxtx.c
@@ -3781,12 +3781,13 @@ iavf_recv_pkts_no_poll(void *rx_queue, struct rte_mbuf **rx_pkts,
 				uint16_t nb_pkts)
 {
 	struct iavf_rx_queue *rxq = rx_queue;
-	enum iavf_rx_burst_type rx_burst_type =
-		rxq->vsi->adapter->rx_burst_type;
+	enum iavf_rx_burst_type rx_burst_type;
 
 	if (!rxq->vsi || rxq->vsi->adapter->no_poll)
 		return 0;
 
+	rx_burst_type = rxq->vsi->adapter->rx_burst_type;
+
 	return iavf_rx_pkt_burst_ops[rx_burst_type](rx_queue,
 								rx_pkts, nb_pkts);
 }
@@ -3796,12 +3797,13 @@ iavf_xmit_pkts_no_poll(void *tx_queue, struct rte_mbuf **tx_pkts,
 				uint16_t nb_pkts)
 {
 	struct iavf_tx_queue *txq = tx_queue;
-	enum iavf_tx_burst_type tx_burst_type =
-		txq->vsi->adapter->tx_burst_type;
+	enum iavf_tx_burst_type tx_burst_type;
 
 	if (!txq->vsi || txq->vsi->adapter->no_poll)
 		return 0;
 
+	tx_burst_type = txq->vsi->adapter->tx_burst_type;
+
 	return iavf_tx_pkt_burst_ops[tx_burst_type](tx_queue,
 								tx_pkts, nb_pkts);
 }
-- 
2.25.1


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

* Re: [PATCH] net/iavf: fix access to null value
  2024-01-24  2:05 [PATCH] net/iavf: fix access to null value Mingjin Ye
@ 2024-02-02 10:47 ` Bruce Richardson
  2024-02-09 14:27 ` Burakov, Anatoly
  1 sibling, 0 replies; 4+ messages in thread
From: Bruce Richardson @ 2024-02-02 10:47 UTC (permalink / raw)
  To: Mingjin Ye; +Cc: dev, stable, Jingjing Wu, Beilei Xing

On Wed, Jan 24, 2024 at 02:05:55AM +0000, Mingjin Ye wrote:
> The "vsi" may be null, so it needs to be used after checking.
> 
> Fixes: ab28aad9c24f ("net/iavf: fix Rx Tx burst in multi-process")
> Cc: stable@dpdk.org
> 
> Signed-off-by: Mingjin Ye <mingjinx.ye@intel.com>
> ---
>  drivers/net/iavf/iavf_rxtx.c | 10 ++++++----
>  1 file changed, 6 insertions(+), 4 deletions(-)
> 
This looks safer with the checks this way.

Acked-by: Bruce Richardson <bruce.richardson@intel.com>

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

* Re: [PATCH] net/iavf: fix access to null value
  2024-01-24  2:05 [PATCH] net/iavf: fix access to null value Mingjin Ye
  2024-02-02 10:47 ` Bruce Richardson
@ 2024-02-09 14:27 ` Burakov, Anatoly
  2024-02-29 15:29   ` Bruce Richardson
  1 sibling, 1 reply; 4+ messages in thread
From: Burakov, Anatoly @ 2024-02-09 14:27 UTC (permalink / raw)
  To: Mingjin Ye, dev; +Cc: stable, Jingjing Wu, Beilei Xing

On 1/24/2024 3:05 AM, Mingjin Ye wrote:
> The "vsi" may be null, so it needs to be used after checking.
> 
> Fixes: ab28aad9c24f ("net/iavf: fix Rx Tx burst in multi-process")
> Cc: stable@dpdk.org
> 
> Signed-off-by: Mingjin Ye <mingjinx.ye@intel.com>
> ---
Acked-by: Anatoly Burakov <anatoly.burakov@intel.com>

-- 
Thanks,
Anatoly


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

* Re: [PATCH] net/iavf: fix access to null value
  2024-02-09 14:27 ` Burakov, Anatoly
@ 2024-02-29 15:29   ` Bruce Richardson
  0 siblings, 0 replies; 4+ messages in thread
From: Bruce Richardson @ 2024-02-29 15:29 UTC (permalink / raw)
  To: Burakov, Anatoly; +Cc: Mingjin Ye, dev, stable, Jingjing Wu, Beilei Xing

On Fri, Feb 09, 2024 at 03:27:56PM +0100, Burakov, Anatoly wrote:
> On 1/24/2024 3:05 AM, Mingjin Ye wrote:
> > The "vsi" may be null, so it needs to be used after checking.
> > 
> > Fixes: ab28aad9c24f ("net/iavf: fix Rx Tx burst in multi-process")

Fixes: 9f6186cf0d80 ("net/iavf: fix Rx/Tx burst in multi-process")

> > Cc: stable@dpdk.org
> > 
> > Signed-off-by: Mingjin Ye <mingjinx.ye@intel.com>
> > ---
> Acked-by: Anatoly Burakov <anatoly.burakov@intel.com>
>
Applied to dpdk-next-net-intel.

Thanks,
/Bruce

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

end of thread, other threads:[~2024-02-29 15:29 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-01-24  2:05 [PATCH] net/iavf: fix access to null value Mingjin Ye
2024-02-02 10:47 ` Bruce Richardson
2024-02-09 14:27 ` Burakov, Anatoly
2024-02-29 15:29   ` Bruce Richardson

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).