mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [PATCH net] qed: fix error return code in qed_iwarp_ll2_start()
@ 2020-11-16 13:07 Zhang Changzhong
  2020-11-16 19:48 ` [EXT] " Michal Kalderon
  2020-11-17 18:50 ` patchwork-bot+netdevbpf
  0 siblings, 2 replies; 3+ messages in thread
From: Zhang Changzhong @ 2020-11-16 13:07 UTC (permalink / raw)
  To: aelior, GR-everest-linux-l2, davem, kuba, Michal.Kalderon
  Cc: netdev, linux-kernel

Fix to return a negative error code from the error handling
case instead of 0, as done elsewhere in this function.

Fixes: 469981b17a4f ("qed: Add unaligned and packed packet processing")
Fixes: fcb39f6c10b2 ("qed: Add mpa buffer descriptors for storing and processing mpa fpdus")
Fixes: 1e28eaad07ea ("qed: Add iWARP support for fpdu spanned over more than two tcp packets")
Reported-by: Hulk Robot <hulkci@huawei.com>
Signed-off-by: Zhang Changzhong <zhangchangzhong@huawei.com>
---
 drivers/net/ethernet/qlogic/qed/qed_iwarp.c | 12 +++++++++---
 1 file changed, 9 insertions(+), 3 deletions(-)

diff --git a/drivers/net/ethernet/qlogic/qed/qed_iwarp.c b/drivers/net/ethernet/qlogic/qed/qed_iwarp.c
index 512cbef..a998611 100644
--- a/drivers/net/ethernet/qlogic/qed/qed_iwarp.c
+++ b/drivers/net/ethernet/qlogic/qed/qed_iwarp.c
@@ -2754,14 +2754,18 @@ qed_iwarp_ll2_start(struct qed_hwfn *p_hwfn,
 	iwarp_info->partial_fpdus = kcalloc((u16)p_hwfn->p_rdma_info->num_qps,
 					    sizeof(*iwarp_info->partial_fpdus),
 					    GFP_KERNEL);
-	if (!iwarp_info->partial_fpdus)
+	if (!iwarp_info->partial_fpdus) {
+		rc = -ENOMEM;
 		goto err;
+	}
 
 	iwarp_info->max_num_partial_fpdus = (u16)p_hwfn->p_rdma_info->num_qps;
 
 	iwarp_info->mpa_intermediate_buf = kzalloc(buff_size, GFP_KERNEL);
-	if (!iwarp_info->mpa_intermediate_buf)
+	if (!iwarp_info->mpa_intermediate_buf) {
+		rc = -ENOMEM;
 		goto err;
+	}
 
 	/* The mpa_bufs array serves for pending RX packets received on the
 	 * mpa ll2 that don't have place on the tx ring and require later
@@ -2771,8 +2775,10 @@ qed_iwarp_ll2_start(struct qed_hwfn *p_hwfn,
 	iwarp_info->mpa_bufs = kcalloc(data.input.rx_num_desc,
 				       sizeof(*iwarp_info->mpa_bufs),
 				       GFP_KERNEL);
-	if (!iwarp_info->mpa_bufs)
+	if (!iwarp_info->mpa_bufs) {
+		rc = -ENOMEM;
 		goto err;
+	}
 
 	INIT_LIST_HEAD(&iwarp_info->mpa_buf_pending_list);
 	INIT_LIST_HEAD(&iwarp_info->mpa_buf_list);
-- 
2.9.5


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

* RE: [EXT] [PATCH net] qed: fix error return code in qed_iwarp_ll2_start()
  2020-11-16 13:07 [PATCH net] qed: fix error return code in qed_iwarp_ll2_start() Zhang Changzhong
@ 2020-11-16 19:48 ` Michal Kalderon
  2020-11-17 18:50 ` patchwork-bot+netdevbpf
  1 sibling, 0 replies; 3+ messages in thread
From: Michal Kalderon @ 2020-11-16 19:48 UTC (permalink / raw)
  To: Zhang Changzhong, Ariel Elior, GR-everest-linux-l2, davem, kuba,
	Michal.Kalderon
  Cc: netdev, linux-kernel

> From: Zhang Changzhong <zhangchangzhong@huawei.com>
> Sent: Monday, November 16, 2020 3:07 PM
> 
> ----------------------------------------------------------------------
> Fix to return a negative error code from the error handling case instead of 0,
> as done elsewhere in this function.
> 
> Fixes: 469981b17a4f ("qed: Add unaligned and packed packet processing")
> Fixes: fcb39f6c10b2 ("qed: Add mpa buffer descriptors for storing and
> processing mpa fpdus")
> Fixes: 1e28eaad07ea ("qed: Add iWARP support for fpdu spanned over more
> than two tcp packets")
> Reported-by: Hulk Robot <hulkci@huawei.com>
> Signed-off-by: Zhang Changzhong <zhangchangzhong@huawei.com>
> ---
>  drivers/net/ethernet/qlogic/qed/qed_iwarp.c | 12 +++++++++---
>  1 file changed, 9 insertions(+), 3 deletions(-)
> 
> diff --git a/drivers/net/ethernet/qlogic/qed/qed_iwarp.c
> b/drivers/net/ethernet/qlogic/qed/qed_iwarp.c
> index 512cbef..a998611 100644
> --- a/drivers/net/ethernet/qlogic/qed/qed_iwarp.c
> +++ b/drivers/net/ethernet/qlogic/qed/qed_iwarp.c
> @@ -2754,14 +2754,18 @@ qed_iwarp_ll2_start(struct qed_hwfn *p_hwfn,
>  	iwarp_info->partial_fpdus = kcalloc((u16)p_hwfn->p_rdma_info-
> >num_qps,
>  					    sizeof(*iwarp_info->partial_fpdus),
>  					    GFP_KERNEL);
> -	if (!iwarp_info->partial_fpdus)
> +	if (!iwarp_info->partial_fpdus) {
> +		rc = -ENOMEM;
>  		goto err;
> +	}
> 
>  	iwarp_info->max_num_partial_fpdus = (u16)p_hwfn->p_rdma_info-
> >num_qps;
> 
>  	iwarp_info->mpa_intermediate_buf = kzalloc(buff_size,
> GFP_KERNEL);
> -	if (!iwarp_info->mpa_intermediate_buf)
> +	if (!iwarp_info->mpa_intermediate_buf) {
> +		rc = -ENOMEM;
>  		goto err;
> +	}
> 
>  	/* The mpa_bufs array serves for pending RX packets received on
> the
>  	 * mpa ll2 that don't have place on the tx ring and require later @@ -
> 2771,8 +2775,10 @@ qed_iwarp_ll2_start(struct qed_hwfn *p_hwfn,
>  	iwarp_info->mpa_bufs = kcalloc(data.input.rx_num_desc,
>  				       sizeof(*iwarp_info->mpa_bufs),
>  				       GFP_KERNEL);
> -	if (!iwarp_info->mpa_bufs)
> +	if (!iwarp_info->mpa_bufs) {
> +		rc = -ENOMEM;
>  		goto err;
> +	}
> 
>  	INIT_LIST_HEAD(&iwarp_info->mpa_buf_pending_list);
>  	INIT_LIST_HEAD(&iwarp_info->mpa_buf_list);
> --
> 2.9.5

Thanks, 

Acked-by: Michal Kalderon <michal.kalderon@marvell.com>



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

* Re: [PATCH net] qed: fix error return code in qed_iwarp_ll2_start()
  2020-11-16 13:07 [PATCH net] qed: fix error return code in qed_iwarp_ll2_start() Zhang Changzhong
  2020-11-16 19:48 ` [EXT] " Michal Kalderon
@ 2020-11-17 18:50 ` patchwork-bot+netdevbpf
  1 sibling, 0 replies; 3+ messages in thread
From: patchwork-bot+netdevbpf @ 2020-11-17 18:50 UTC (permalink / raw)
  To: Zhang Changzhong
  Cc: aelior, GR-everest-linux-l2, davem, kuba, Michal.Kalderon,
	netdev, linux-kernel

Hello:

This patch was applied to netdev/net.git (refs/heads/master):

On Mon, 16 Nov 2020 21:07:13 +0800 you wrote:
> Fix to return a negative error code from the error handling
> case instead of 0, as done elsewhere in this function.
> 
> Fixes: 469981b17a4f ("qed: Add unaligned and packed packet processing")
> Fixes: fcb39f6c10b2 ("qed: Add mpa buffer descriptors for storing and processing mpa fpdus")
> Fixes: 1e28eaad07ea ("qed: Add iWARP support for fpdu spanned over more than two tcp packets")
> Reported-by: Hulk Robot <hulkci@huawei.com>
> Signed-off-by: Zhang Changzhong <zhangchangzhong@huawei.com>
> 
> [...]

Here is the summary with links:
  - [net] qed: fix error return code in qed_iwarp_ll2_start()
    https://git.kernel.org/netdev/net/c/cb47d16ea210

You are awesome, thank you!
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html



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

end of thread, other threads:[~2020-11-17 18:50 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-11-16 13:07 [PATCH net] qed: fix error return code in qed_iwarp_ll2_start() Zhang Changzhong
2020-11-16 19:48 ` [EXT] " Michal Kalderon
2020-11-17 18:50 ` patchwork-bot+netdevbpf

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

Powered by JetHome