[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-Id:
<170123102400.3535.2157176764560319442.git-patchwork-notify@kernel.org>
Date: Wed, 29 Nov 2023 04:10:24 +0000
From: patchwork-bot+netdevbpf@...nel.org
To: Yoshihiro Shimoda <yoshihiro.shimoda.uh@...esas.com>
Cc: s.shtylyov@....ru, davem@...emloft.net, edumazet@...gle.com,
kuba@...nel.org, pabeni@...hat.com, netdev@...r.kernel.org,
linux-renesas-soc@...r.kernel.org
Subject: Re: [PATCH net v4] ravb: Fix races between ravb_tx_timeout_work() and net
related ops
Hello:
This patch was applied to netdev/net.git (main)
by Jakub Kicinski <kuba@...nel.org>:
On Mon, 27 Nov 2023 21:24:20 +0900 you wrote:
> Fix races between ravb_tx_timeout_work() and functions of net_device_ops
> and ethtool_ops by using rtnl_trylock() and rtnl_unlock(). Note that
> since ravb_close() is under the rtnl lock and calls cancel_work_sync(),
> ravb_tx_timeout_work() should calls rtnl_trylock(). Otherwise, a deadlock
> may happen in ravb_tx_timeout_work() like below:
>
> CPU0 CPU1
> ravb_tx_timeout()
> schedule_work()
> ...
> __dev_close_many()
> // Under rtnl lock
> ravb_close()
> cancel_work_sync()
> // Waiting
> ravb_tx_timeout_work()
> rtnl_lock()
> // This is possible to cause a deadlock
>
> [...]
Here is the summary with links:
- [net,v4] ravb: Fix races between ravb_tx_timeout_work() and net related ops
https://git.kernel.org/netdev/net/c/9870257a0a33
You are awesome, thank you!
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
Powered by blists - more mailing lists