netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH net] net: airoha: fix error branch in airoha_dev_xmit and airoha_set_gdm_ports
@ 2024-07-17  8:15 Lorenzo Bianconi
  2024-07-17 10:34 ` Simon Horman
  2024-07-18  5:30 ` patchwork-bot+netdevbpf
  0 siblings, 2 replies; 3+ messages in thread
From: Lorenzo Bianconi @ 2024-07-17  8:15 UTC (permalink / raw)
  To: netdev
  Cc: nbd, sean.wang, Mark-MC.Lee, davem, edumazet, kuba, pabeni,
	linux-arm-kernel, linux-mediatek, angelogioacchino.delregno,
	lorenzo.bianconi83

Fix error case management in airoha_dev_xmit routine since we need to
DMA unmap pending buffers starting from q->head.
Moreover fix a typo in error case branch in airoha_set_gdm_ports
routine.

Fixes: 23020f049327 ("net: airoha: Introduce ethernet support for EN7581 SoC")
Signed-off-by: Lorenzo Bianconi <lorenzo@kernel.org>
---
 drivers/net/ethernet/mediatek/airoha_eth.c | 10 ++++++----
 1 file changed, 6 insertions(+), 4 deletions(-)

diff --git a/drivers/net/ethernet/mediatek/airoha_eth.c b/drivers/net/ethernet/mediatek/airoha_eth.c
index 7967a92803c2..cc1a69522f61 100644
--- a/drivers/net/ethernet/mediatek/airoha_eth.c
+++ b/drivers/net/ethernet/mediatek/airoha_eth.c
@@ -977,7 +977,7 @@ static int airoha_set_gdm_ports(struct airoha_eth *eth, bool enable)
 	return 0;
 
 error:
-	for (i--; i >= 0; i++)
+	for (i--; i >= 0; i--)
 		airoha_set_gdm_port(eth, port_list[i], false);
 
 	return err;
@@ -2431,9 +2431,11 @@ static netdev_tx_t airoha_dev_xmit(struct sk_buff *skb,
 	return NETDEV_TX_OK;
 
 error_unmap:
-	for (i--; i >= 0; i++)
-		dma_unmap_single(dev->dev.parent, q->entry[i].dma_addr,
-				 q->entry[i].dma_len, DMA_TO_DEVICE);
+	for (i--; i >= 0; i--) {
+		index = (q->head + i) % q->ndesc;
+		dma_unmap_single(dev->dev.parent, q->entry[index].dma_addr,
+				 q->entry[index].dma_len, DMA_TO_DEVICE);
+	}
 
 	spin_unlock_bh(&q->lock);
 error:
-- 
2.45.2


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

* Re: [PATCH net] net: airoha: fix error branch in airoha_dev_xmit and airoha_set_gdm_ports
  2024-07-17  8:15 [PATCH net] net: airoha: fix error branch in airoha_dev_xmit and airoha_set_gdm_ports Lorenzo Bianconi
@ 2024-07-17 10:34 ` Simon Horman
  2024-07-18  5:30 ` patchwork-bot+netdevbpf
  1 sibling, 0 replies; 3+ messages in thread
From: Simon Horman @ 2024-07-17 10:34 UTC (permalink / raw)
  To: Lorenzo Bianconi
  Cc: netdev, nbd, sean.wang, Mark-MC.Lee, davem, edumazet, kuba,
	pabeni, linux-arm-kernel, linux-mediatek,
	angelogioacchino.delregno, lorenzo.bianconi83

On Wed, Jul 17, 2024 at 10:15:46AM +0200, Lorenzo Bianconi wrote:
> Fix error case management in airoha_dev_xmit routine since we need to
> DMA unmap pending buffers starting from q->head.
> Moreover fix a typo in error case branch in airoha_set_gdm_ports
> routine.
> 
> Fixes: 23020f049327 ("net: airoha: Introduce ethernet support for EN7581 SoC")
> Signed-off-by: Lorenzo Bianconi <lorenzo@kernel.org>

Reviewed-by: Simon Horman <horms@kernel.org>


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

* Re: [PATCH net] net: airoha: fix error branch in airoha_dev_xmit and airoha_set_gdm_ports
  2024-07-17  8:15 [PATCH net] net: airoha: fix error branch in airoha_dev_xmit and airoha_set_gdm_ports Lorenzo Bianconi
  2024-07-17 10:34 ` Simon Horman
@ 2024-07-18  5:30 ` patchwork-bot+netdevbpf
  1 sibling, 0 replies; 3+ messages in thread
From: patchwork-bot+netdevbpf @ 2024-07-18  5:30 UTC (permalink / raw)
  To: Lorenzo Bianconi
  Cc: netdev, nbd, sean.wang, Mark-MC.Lee, davem, edumazet, kuba,
	pabeni, linux-arm-kernel, linux-mediatek,
	angelogioacchino.delregno, lorenzo.bianconi83

Hello:

This patch was applied to netdev/net.git (main)
by Jakub Kicinski <kuba@kernel.org>:

On Wed, 17 Jul 2024 10:15:46 +0200 you wrote:
> Fix error case management in airoha_dev_xmit routine since we need to
> DMA unmap pending buffers starting from q->head.
> Moreover fix a typo in error case branch in airoha_set_gdm_ports
> routine.
> 
> Fixes: 23020f049327 ("net: airoha: Introduce ethernet support for EN7581 SoC")
> Signed-off-by: Lorenzo Bianconi <lorenzo@kernel.org>
> 
> [...]

Here is the summary with links:
  - [net] net: airoha: fix error branch in airoha_dev_xmit and airoha_set_gdm_ports
    https://git.kernel.org/netdev/net/c/1f038d5897fe

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:[~2024-07-18  5:30 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-07-17  8:15 [PATCH net] net: airoha: fix error branch in airoha_dev_xmit and airoha_set_gdm_ports Lorenzo Bianconi
2024-07-17 10:34 ` Simon Horman
2024-07-18  5:30 ` 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;
as well as URLs for NNTP newsgroup(s).