DPDK patches and discussions
 help / color / mirror / Atom feed
* [dpdk-dev] [PATCH v4] net/i40e: fix multi-queue Rx interrupt for VF
       [not found] <200110083514.134541-1-lunyuanx.cui@intel.com>
@ 2020-01-17  8:22 ` Lunyuan Cui
  2020-01-17  8:31   ` Yang, Qiming
  2020-02-03  9:54   ` Ye Xiaolong
  0 siblings, 2 replies; 3+ messages in thread
From: Lunyuan Cui @ 2020-01-17  8:22 UTC (permalink / raw)
  To: dev; +Cc: Qiming Yang, Lunyuan Cui

The interrupt vector which bind to queues should not larger than
the max avaiable vertor. It will cause port start failed. This patch
changed the judgement condition of the limited vector id. It can
effectively avoid vector id out of range.

Fixes: 5b8d2d89dd99 (net/i40e: enable multi-queue Rx interrupt for VF)

Signed-off-by: Lunyuan Cui <lunyuanx.cui@intel.com>
---
v4:
- Change commit message

v3:
- Change commit message

v2:
- Change commit message
---
 drivers/net/i40e/i40e_ethdev_vf.c | 6 +-----
 1 file changed, 1 insertion(+), 5 deletions(-)

diff --git a/drivers/net/i40e/i40e_ethdev_vf.c b/drivers/net/i40e/i40e_ethdev_vf.c
index 479f8282c..d514e8991 100644
--- a/drivers/net/i40e/i40e_ethdev_vf.c
+++ b/drivers/net/i40e/i40e_ethdev_vf.c
@@ -657,7 +657,6 @@ i40evf_config_irq_map(struct rte_eth_dev *dev)
 	struct rte_intr_handle *intr_handle = &pci_dev->intr_handle;
 	uint32_t vector_id;
 	int i, err;
-	uint16_t nb_msix;
 
 	if (dev->data->dev_conf.intr_conf.rxq != 0 &&
 	    rte_intr_allow_others(intr_handle))
@@ -665,9 +664,6 @@ i40evf_config_irq_map(struct rte_eth_dev *dev)
 	else
 		vector_id = I40E_MISC_VEC_ID;
 
-	nb_msix = RTE_MIN(vf->vf_res->max_vectors,
-			intr_handle->nb_efd);
-
 	map_info = (struct virtchnl_irq_map_info *)cmd_buffer;
 	map_info->num_vectors = dev->data->nb_rx_queues;
 	for (i = 0; i < dev->data->nb_rx_queues; i++) {
@@ -682,7 +678,7 @@ i40evf_config_irq_map(struct rte_eth_dev *dev)
 			intr_handle->intr_vec[i] = vector_id;
 		if (vector_id > I40E_MISC_VEC_ID)
 			vector_id++;
-		if (vector_id > nb_msix)
+		if (vector_id >= vf->vf_res->max_vectors)
 			vector_id = I40E_RX_VEC_START;
 	}
 
-- 
2.17.1


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

* Re: [dpdk-dev] [PATCH v4] net/i40e: fix multi-queue Rx interrupt for VF
  2020-01-17  8:22 ` [dpdk-dev] [PATCH v4] net/i40e: fix multi-queue Rx interrupt for VF Lunyuan Cui
@ 2020-01-17  8:31   ` Yang, Qiming
  2020-02-03  9:54   ` Ye Xiaolong
  1 sibling, 0 replies; 3+ messages in thread
From: Yang, Qiming @ 2020-01-17  8:31 UTC (permalink / raw)
  To: Cui, LunyuanX, dev



> -----Original Message-----
> From: Cui, LunyuanX <lunyuanx.cui@intel.com>
> Sent: Friday, January 17, 2020 4:23 PM
> To: dev@dpdk.org
> Cc: Yang, Qiming <qiming.yang@intel.com>; Cui, LunyuanX
> <lunyuanx.cui@intel.com>
> Subject: [PATCH v4] net/i40e: fix multi-queue Rx interrupt for VF
> 
> The interrupt vector which bind to queues should not larger than the max
> avaiable vertor. It will cause port start failed. This patch changed the judgement
> condition of the limited vector id. It can effectively avoid vector id out of range.
> 
> Fixes: 5b8d2d89dd99 (net/i40e: enable multi-queue Rx interrupt for VF)
> 
> Signed-off-by: Lunyuan Cui <lunyuanx.cui@intel.com>

Reviewed-by: Qiming Yang <qiming.yang@intel.com>

> ---
> v4:
> - Change commit message
> 
> v3:
> - Change commit message
> 
> v2:
> - Change commit message
> ---
>  drivers/net/i40e/i40e_ethdev_vf.c | 6 +-----
>  1 file changed, 1 insertion(+), 5 deletions(-)
> 
> diff --git a/drivers/net/i40e/i40e_ethdev_vf.c
> b/drivers/net/i40e/i40e_ethdev_vf.c
> index 479f8282c..d514e8991 100644
> --- a/drivers/net/i40e/i40e_ethdev_vf.c
> +++ b/drivers/net/i40e/i40e_ethdev_vf.c
> @@ -657,7 +657,6 @@ i40evf_config_irq_map(struct rte_eth_dev *dev)
>  	struct rte_intr_handle *intr_handle = &pci_dev->intr_handle;
>  	uint32_t vector_id;
>  	int i, err;
> -	uint16_t nb_msix;
> 
>  	if (dev->data->dev_conf.intr_conf.rxq != 0 &&
>  	    rte_intr_allow_others(intr_handle))
> @@ -665,9 +664,6 @@ i40evf_config_irq_map(struct rte_eth_dev *dev)
>  	else
>  		vector_id = I40E_MISC_VEC_ID;
> 
> -	nb_msix = RTE_MIN(vf->vf_res->max_vectors,
> -			intr_handle->nb_efd);
> -
>  	map_info = (struct virtchnl_irq_map_info *)cmd_buffer;
>  	map_info->num_vectors = dev->data->nb_rx_queues;
>  	for (i = 0; i < dev->data->nb_rx_queues; i++) { @@ -682,7 +678,7 @@
> i40evf_config_irq_map(struct rte_eth_dev *dev)
>  			intr_handle->intr_vec[i] = vector_id;
>  		if (vector_id > I40E_MISC_VEC_ID)
>  			vector_id++;
> -		if (vector_id > nb_msix)
> +		if (vector_id >= vf->vf_res->max_vectors)
>  			vector_id = I40E_RX_VEC_START;
>  	}
> 
> --
> 2.17.1


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

* Re: [dpdk-dev] [PATCH v4] net/i40e: fix multi-queue Rx interrupt for VF
  2020-01-17  8:22 ` [dpdk-dev] [PATCH v4] net/i40e: fix multi-queue Rx interrupt for VF Lunyuan Cui
  2020-01-17  8:31   ` Yang, Qiming
@ 2020-02-03  9:54   ` Ye Xiaolong
  1 sibling, 0 replies; 3+ messages in thread
From: Ye Xiaolong @ 2020-02-03  9:54 UTC (permalink / raw)
  To: Lunyuan Cui; +Cc: dev, Qiming Yang

On 01/17, Lunyuan Cui wrote:
>The interrupt vector which bind to queues should not larger than

should not be larger than

>the max avaiable vertor. It will cause port start failed. This patch

s/avaiable/available
s/vertor/vector

>changed the judgement condition of the limited vector id. It can
>effectively avoid vector id out of range.
>
>Fixes: 5b8d2d89dd99 (net/i40e: enable multi-queue Rx interrupt for VF)

Should be

Fixes: 6a6cf5f88b4a ("net/i40e: enable multi-queue Rx interrupt for VF")


Applied to dpdk-next-net-intel with above fixes, Thanks.

>
>Signed-off-by: Lunyuan Cui <lunyuanx.cui@intel.com>
>---
>v4:
>- Change commit message
>
>v3:
>- Change commit message
>
>v2:
>- Change commit message
>---
> drivers/net/i40e/i40e_ethdev_vf.c | 6 +-----
> 1 file changed, 1 insertion(+), 5 deletions(-)
>
>diff --git a/drivers/net/i40e/i40e_ethdev_vf.c b/drivers/net/i40e/i40e_ethdev_vf.c
>index 479f8282c..d514e8991 100644
>--- a/drivers/net/i40e/i40e_ethdev_vf.c
>+++ b/drivers/net/i40e/i40e_ethdev_vf.c
>@@ -657,7 +657,6 @@ i40evf_config_irq_map(struct rte_eth_dev *dev)
> 	struct rte_intr_handle *intr_handle = &pci_dev->intr_handle;
> 	uint32_t vector_id;
> 	int i, err;
>-	uint16_t nb_msix;
> 
> 	if (dev->data->dev_conf.intr_conf.rxq != 0 &&
> 	    rte_intr_allow_others(intr_handle))
>@@ -665,9 +664,6 @@ i40evf_config_irq_map(struct rte_eth_dev *dev)
> 	else
> 		vector_id = I40E_MISC_VEC_ID;
> 
>-	nb_msix = RTE_MIN(vf->vf_res->max_vectors,
>-			intr_handle->nb_efd);
>-
> 	map_info = (struct virtchnl_irq_map_info *)cmd_buffer;
> 	map_info->num_vectors = dev->data->nb_rx_queues;
> 	for (i = 0; i < dev->data->nb_rx_queues; i++) {
>@@ -682,7 +678,7 @@ i40evf_config_irq_map(struct rte_eth_dev *dev)
> 			intr_handle->intr_vec[i] = vector_id;
> 		if (vector_id > I40E_MISC_VEC_ID)
> 			vector_id++;
>-		if (vector_id > nb_msix)
>+		if (vector_id >= vf->vf_res->max_vectors)
> 			vector_id = I40E_RX_VEC_START;
> 	}
> 
>-- 
>2.17.1
>


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

end of thread, other threads:[~2020-02-03  9:55 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <200110083514.134541-1-lunyuanx.cui@intel.com>
2020-01-17  8:22 ` [dpdk-dev] [PATCH v4] net/i40e: fix multi-queue Rx interrupt for VF Lunyuan Cui
2020-01-17  8:31   ` Yang, Qiming
2020-02-03  9:54   ` Ye Xiaolong

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