From: patchwork-bot+netdevbpf@kernel.org
To: Vladimir Oltean <vladimir.oltean@nxp.com>
Cc: netdev@vger.kernel.org, ioana.ciornei@nxp.com,
davem@davemloft.net, edumazet@google.com, kuba@kernel.org,
pabeni@redhat.com, linux@armlinux.org.uk,
linux-doc@vger.kernel.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH net-next 00/12] Fix rtnl_mutex deadlock with DPAA2 and SFP modules
Date: Thu, 01 Dec 2022 12:50:17 +0000 [thread overview]
Message-ID: <166989901798.1197.13323886521084195316.git-patchwork-notify@kernel.org> (raw)
In-Reply-To: <20221129141221.872653-1-vladimir.oltean@nxp.com>
Hello:
This series was applied to netdev/net-next.git (master)
by Paolo Abeni <pabeni@redhat.com>:
On Tue, 29 Nov 2022 16:12:09 +0200 you wrote:
> This patch set deliberately targets net-next and lacks Fixes: tags due
> to caution on my part.
>
> While testing some SFP modules on the Solidrun Honeycomb LX2K platform,
> I noticed that rebooting causes a deadlock:
>
> ============================================
> WARNING: possible recursive locking detected
> 6.1.0-rc5-07010-ga9b9500ffaac-dirty #656 Not tainted
>
> [...]
Here is the summary with links:
- [net-next,01/12] net: dpaa2-eth: don't use -ENOTSUPP error code
https://git.kernel.org/netdev/net-next/c/91c71bf14da4
- [net-next,02/12] net: dpaa2: replace dpaa2_mac_is_type_fixed() with dpaa2_mac_is_type_phy()
https://git.kernel.org/netdev/net-next/c/320fefa9e2ed
- [net-next,03/12] net: dpaa2-mac: absorb phylink_start() call into dpaa2_mac_start()
https://git.kernel.org/netdev/net-next/c/385333888154
- [net-next,04/12] net: dpaa2-mac: remove defensive check in dpaa2_mac_disconnect()
https://git.kernel.org/netdev/net-next/c/ccbd7822950f
- [net-next,05/12] net: dpaa2-eth: assign priv->mac after dpaa2_mac_connect() call
https://git.kernel.org/netdev/net-next/c/02d61948e8da
- [net-next,06/12] net: dpaa2-switch: assign port_priv->mac after dpaa2_mac_connect() call
https://git.kernel.org/netdev/net-next/c/88d64367cea0
- [net-next,07/12] net: dpaa2: publish MAC stringset to ethtool -S even if MAC is missing
https://git.kernel.org/netdev/net-next/c/29811d6e19d7
- [net-next,08/12] net: dpaa2-switch replace direct MAC access with dpaa2_switch_port_has_mac()
https://git.kernel.org/netdev/net-next/c/bc230671bfb2
- [net-next,09/12] net: dpaa2-eth: connect to MAC before requesting the "endpoint changed" IRQ
https://git.kernel.org/netdev/net-next/c/55f90a4d07ec
- [net-next,10/12] net: dpaa2-eth: serialize changes to priv->mac with a mutex
https://git.kernel.org/netdev/net-next/c/2291982e29b1
- [net-next,11/12] net: dpaa2-switch: serialize changes to priv->mac with a mutex
https://git.kernel.org/netdev/net-next/c/3c7f44fa9c4c
- [net-next,12/12] net: dpaa2-mac: move rtnl_lock() only around phylink_{,dis}connect_phy()
https://git.kernel.org/netdev/net-next/c/87db82cb6149
You are awesome, thank you!
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
prev parent reply other threads:[~2022-12-01 12:50 UTC|newest]
Thread overview: 21+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-11-29 14:12 [PATCH net-next 00/12] Fix rtnl_mutex deadlock with DPAA2 and SFP modules Vladimir Oltean
2022-11-29 14:12 ` [PATCH net-next 01/12] net: dpaa2-eth: don't use -ENOTSUPP error code Vladimir Oltean
2022-11-29 18:48 ` Andrew Lunn
2022-11-29 14:12 ` [PATCH net-next 02/12] net: dpaa2: replace dpaa2_mac_is_type_fixed() with dpaa2_mac_is_type_phy() Vladimir Oltean
2022-11-29 18:50 ` Andrew Lunn
2022-11-29 14:12 ` [PATCH net-next 03/12] net: dpaa2-mac: absorb phylink_start() call into dpaa2_mac_start() Vladimir Oltean
2022-11-29 18:51 ` Andrew Lunn
2022-11-29 14:12 ` [PATCH net-next 04/12] net: dpaa2-mac: remove defensive check in dpaa2_mac_disconnect() Vladimir Oltean
2022-11-29 18:51 ` Andrew Lunn
2022-11-29 14:12 ` [PATCH net-next 05/12] net: dpaa2-eth: assign priv->mac after dpaa2_mac_connect() call Vladimir Oltean
2022-11-29 14:12 ` [PATCH net-next 06/12] net: dpaa2-switch: assign port_priv->mac " Vladimir Oltean
2022-11-29 14:12 ` [PATCH net-next 07/12] net: dpaa2: publish MAC stringset to ethtool -S even if MAC is missing Vladimir Oltean
2022-11-29 18:54 ` Andrew Lunn
2022-11-29 14:12 ` [PATCH net-next 08/12] net: dpaa2-switch replace direct MAC access with dpaa2_switch_port_has_mac() Vladimir Oltean
2022-11-29 18:55 ` Andrew Lunn
2022-11-29 14:12 ` [PATCH net-next 09/12] net: dpaa2-eth: connect to MAC before requesting the "endpoint changed" IRQ Vladimir Oltean
2022-11-29 14:12 ` [PATCH net-next 10/12] net: dpaa2-eth: serialize changes to priv->mac with a mutex Vladimir Oltean
2022-11-29 14:12 ` [PATCH net-next 11/12] net: dpaa2-switch: " Vladimir Oltean
2022-11-29 14:12 ` [PATCH net-next 12/12] net: dpaa2-mac: move rtnl_lock() only around phylink_{,dis}connect_phy() Vladimir Oltean
2022-11-30 16:30 ` [PATCH net-next 00/12] Fix rtnl_mutex deadlock with DPAA2 and SFP modules Ioana Ciornei
2022-12-01 12:50 ` patchwork-bot+netdevbpf [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=166989901798.1197.13323886521084195316.git-patchwork-notify@kernel.org \
--to=patchwork-bot+netdevbpf@kernel.org \
--cc=davem@davemloft.net \
--cc=edumazet@google.com \
--cc=ioana.ciornei@nxp.com \
--cc=kuba@kernel.org \
--cc=linux-doc@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux@armlinux.org.uk \
--cc=netdev@vger.kernel.org \
--cc=pabeni@redhat.com \
--cc=vladimir.oltean@nxp.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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).