netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH net] sfc: fix TX channel offset when using legacy interrupts
@ 2022-09-14 10:36 Íñigo Huguet
  2022-09-14 17:47 ` Edward Cree
  2022-09-20  1:20 ` patchwork-bot+netdevbpf
  0 siblings, 2 replies; 4+ messages in thread
From: Íñigo Huguet @ 2022-09-14 10:36 UTC (permalink / raw)
  To: ecree.xilinx, habetsm.xilinx
  Cc: davem, edumazet, kuba, pabeni, netdev, Íñigo Huguet,
	Tianhao Zhao

In legacy interrupt mode the tx_channel_offset was hardcoded to 1, but
that's not correct if efx_sepparate_tx_channels is false. In that case,
the offset is 0 because the tx queues are in the single existing channel
at index 0, together with the rx queue.

Without this fix, as soon as you try to send any traffic, it tries to
get the tx queues from an uninitialized channel getting these errors:
  WARNING: CPU: 1 PID: 0 at drivers/net/ethernet/sfc/tx.c:540 efx_hard_start_xmit+0x12e/0x170 [sfc]
  [...]
  RIP: 0010:efx_hard_start_xmit+0x12e/0x170 [sfc]
  [...]
  Call Trace:
   <IRQ>
   dev_hard_start_xmit+0xd7/0x230
   sch_direct_xmit+0x9f/0x360
   __dev_queue_xmit+0x890/0xa40
  [...]
  BUG: unable to handle kernel NULL pointer dereference at 0000000000000020
  [...]
  RIP: 0010:efx_hard_start_xmit+0x153/0x170 [sfc]
  [...]
  Call Trace:
   <IRQ>
   dev_hard_start_xmit+0xd7/0x230
   sch_direct_xmit+0x9f/0x360
   __dev_queue_xmit+0x890/0xa40
  [...]

Fixes: c308dfd1b43e ("sfc: fix wrong tx channel offset with efx_separate_tx_channels")
Reported-by: Tianhao Zhao <tizhao@redhat.com>
Signed-off-by: Íñigo Huguet <ihuguet@redhat.com>
---
 drivers/net/ethernet/sfc/efx_channels.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/net/ethernet/sfc/efx_channels.c b/drivers/net/ethernet/sfc/efx_channels.c
index 032b8c0bd788..5b4d661ab986 100644
--- a/drivers/net/ethernet/sfc/efx_channels.c
+++ b/drivers/net/ethernet/sfc/efx_channels.c
@@ -319,7 +319,7 @@ int efx_probe_interrupts(struct efx_nic *efx)
 		efx->n_channels = 1 + (efx_separate_tx_channels ? 1 : 0);
 		efx->n_rx_channels = 1;
 		efx->n_tx_channels = 1;
-		efx->tx_channel_offset = 1;
+		efx->tx_channel_offset = efx_separate_tx_channels ? 1 : 0;
 		efx->n_xdp_channels = 0;
 		efx->xdp_channel_offset = efx->n_channels;
 		efx->legacy_irq = efx->pci_dev->irq;
-- 
2.34.1


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

* Re: [PATCH net] sfc: fix TX channel offset when using legacy interrupts
@ 2022-09-14 13:15 Cooper, Jonathan Stephen (DCG-ENG)
  0 siblings, 0 replies; 4+ messages in thread
From: Cooper, Jonathan Stephen (DCG-ENG) @ 2022-09-14 13:15 UTC (permalink / raw)
  To: ihuguet@redhat.com
  Cc: davem@davemloft.net, ecree.xilinx@gmail.com, edumazet@google.com,
	habetsm.xilinx@gmail.com, kuba@kernel.org, netdev@vger.kernel.org,
	pabeni@redhat.com, tizhao@redhat.com

> In legacy interrupt mode the tx_channel_offset was hardcoded to 1, but
> that's not correct if efx_sepparate_tx_channels is false. In that case,
> the offset is 0 because the tx queues are in the single existing channel
> at index 0, together with the rx queue.
<snip>
> Fixes: c308dfd1b43e ("sfc: fix wrong tx channel offset with efx_separate_tx_channels")
> Reported-by: Tianhao Zhao <tizhao@redhat.com>
> Signed-off-by: Íñigo Huguet <ihuguet@redhat.com>

Acked-by: Jon Cooper <jco@amd.com>

Jon

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

* Re: [PATCH net] sfc: fix TX channel offset when using legacy interrupts
  2022-09-14 10:36 [PATCH net] sfc: fix TX channel offset when using legacy interrupts Íñigo Huguet
@ 2022-09-14 17:47 ` Edward Cree
  2022-09-20  1:20 ` patchwork-bot+netdevbpf
  1 sibling, 0 replies; 4+ messages in thread
From: Edward Cree @ 2022-09-14 17:47 UTC (permalink / raw)
  To: Íñigo Huguet, habetsm.xilinx
  Cc: davem, edumazet, kuba, pabeni, netdev, Tianhao Zhao

On 14/09/2022 11:36, Íñigo Huguet wrote:
> In legacy interrupt mode the tx_channel_offset was hardcoded to 1, but
> that's not correct if efx_sepparate_tx_channels is false. In that case,
> the offset is 0 because the tx queues are in the single existing channel
> at index 0, together with the rx queue.
> 
[...]
> 
> Fixes: c308dfd1b43e ("sfc: fix wrong tx channel offset with efx_separate_tx_channels")
> Reported-by: Tianhao Zhao <tizhao@redhat.com>
> Signed-off-by: Íñigo Huguet <ihuguet@redhat.com>

Acked-by: Edward Cree <ecree.xilinx@gmail.com>

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

* Re: [PATCH net] sfc: fix TX channel offset when using legacy interrupts
  2022-09-14 10:36 [PATCH net] sfc: fix TX channel offset when using legacy interrupts Íñigo Huguet
  2022-09-14 17:47 ` Edward Cree
@ 2022-09-20  1:20 ` patchwork-bot+netdevbpf
  1 sibling, 0 replies; 4+ messages in thread
From: patchwork-bot+netdevbpf @ 2022-09-20  1:20 UTC (permalink / raw)
  To: =?utf-8?b?w43DsWlnbyBIdWd1ZXQgPGlodWd1ZXRAcmVkaGF0LmNvbT4=?=
  Cc: ecree.xilinx, habetsm.xilinx, davem, edumazet, kuba, pabeni,
	netdev, tizhao

Hello:

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

On Wed, 14 Sep 2022 12:36:48 +0200 you wrote:
> In legacy interrupt mode the tx_channel_offset was hardcoded to 1, but
> that's not correct if efx_sepparate_tx_channels is false. In that case,
> the offset is 0 because the tx queues are in the single existing channel
> at index 0, together with the rx queue.
> 
> Without this fix, as soon as you try to send any traffic, it tries to
> get the tx queues from an uninitialized channel getting these errors:
>   WARNING: CPU: 1 PID: 0 at drivers/net/ethernet/sfc/tx.c:540 efx_hard_start_xmit+0x12e/0x170 [sfc]
>   [...]
>   RIP: 0010:efx_hard_start_xmit+0x12e/0x170 [sfc]
>   [...]
>   Call Trace:
>    <IRQ>
>    dev_hard_start_xmit+0xd7/0x230
>    sch_direct_xmit+0x9f/0x360
>    __dev_queue_xmit+0x890/0xa40
>   [...]
>   BUG: unable to handle kernel NULL pointer dereference at 0000000000000020
>   [...]
>   RIP: 0010:efx_hard_start_xmit+0x153/0x170 [sfc]
>   [...]
>   Call Trace:
>    <IRQ>
>    dev_hard_start_xmit+0xd7/0x230
>    sch_direct_xmit+0x9f/0x360
>    __dev_queue_xmit+0x890/0xa40
>   [...]
> 
> [...]

Here is the summary with links:
  - [net] sfc: fix TX channel offset when using legacy interrupts
    https://git.kernel.org/netdev/net/c/f232af429565

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] 4+ messages in thread

end of thread, other threads:[~2022-09-20  1:20 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-09-14 10:36 [PATCH net] sfc: fix TX channel offset when using legacy interrupts Íñigo Huguet
2022-09-14 17:47 ` Edward Cree
2022-09-20  1:20 ` patchwork-bot+netdevbpf
  -- strict thread matches above, loose matches on Subject: below --
2022-09-14 13:15 Cooper, Jonathan Stephen (DCG-ENG)

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