mbox series

[net,v4,0/2] Fixes on the OPEN Alliance TC6 10BASE-T1x MAC-PHY support generic lib

Message ID 20241213123159.439739-1-parthiban.veerasooran@microchip.com (mailing list archive)
Headers show
Series Fixes on the OPEN Alliance TC6 10BASE-T1x MAC-PHY support generic lib | expand

Message

Parthiban Veerasooran Dec. 13, 2024, 12:31 p.m. UTC
This patch series contain the below fixes.

- Infinite loop error when tx credits becomes 0.
- Race condition between tx skb reference pointers.

v2:
- Added mutex lock to protect tx skb reference handling.

v3:
- Added mutex protection in assigning new tx skb to waiting_tx_skb
  pointer.
- Explained the possible scenario for the race condition with the time
  diagram in the commit message.

v4:
- Replaced mutex with spin_lock_bh() variants as the start_xmit runs in
  BH/softirq context which can't take sleeping locks.


Parthiban Veerasooran (2):
  net: ethernet: oa_tc6: fix infinite loop error when tx credits becomes
    0
  net: ethernet: oa_tc6: fix tx skb race condition between reference
    pointers

 drivers/net/ethernet/oa_tc6.c | 11 +++++++++--
 1 file changed, 9 insertions(+), 2 deletions(-)


base-commit: 2c27c7663390d28bc71e97500eb68e0ce2a7223f

Comments

patchwork-bot+netdevbpf@kernel.org Dec. 17, 2024, 12:20 p.m. UTC | #1
Hello:

This series was applied to netdev/net.git (main)
by Paolo Abeni <pabeni@redhat.com>:

On Fri, 13 Dec 2024 18:01:57 +0530 you wrote:
> This patch series contain the below fixes.
> 
> - Infinite loop error when tx credits becomes 0.
> - Race condition between tx skb reference pointers.
> 
> v2:
> - Added mutex lock to protect tx skb reference handling.
> 
> [...]

Here is the summary with links:
  - [net,v4,1/2] net: ethernet: oa_tc6: fix infinite loop error when tx credits becomes 0
    https://git.kernel.org/netdev/net/c/7d2f320e1274
  - [net,v4,2/2] net: ethernet: oa_tc6: fix tx skb race condition between reference pointers
    https://git.kernel.org/netdev/net/c/e592b5110b3e

You are awesome, thank you!