From: patchwork-bot+netdevbpf@kernel.org
To: Luiz Angelo Daros de Luca <luizluca@gmail.com>
Cc: linus.walleij@linaro.org, alsi@bang-olufsen.dk, andrew@lunn.ch,
f.fainelli@gmail.com, olteanv@gmail.com, davem@davemloft.net,
edumazet@google.com, kuba@kernel.org, pabeni@redhat.com,
linux@armlinux.org.uk, netdev@vger.kernel.org,
linux-kernel@vger.kernel.org, florian.fainelli@broadcom.com
Subject: Re: [PATCH net-next v6 00/11] net: dsa: realtek: variants to drivers, interfaces to a common module
Date: Mon, 12 Feb 2024 10:50:26 +0000 [thread overview]
Message-ID: <170773502690.28134.16915655104997076968.git-patchwork-notify@kernel.org> (raw)
In-Reply-To: <20240209-realtek_reverse-v6-0-0662f8cbc7b5@gmail.com>
Hello:
This series was applied to netdev/net-next.git (main)
by David S. Miller <davem@davemloft.net>:
On Fri, 09 Feb 2024 02:03:36 -0300 you wrote:
> The current driver consists of two interface modules (SMI and MDIO) and
> two family/variant modules (RTL8365MB and RTL8366RB). The SMI and MDIO
> modules serve as the platform and MDIO drivers, respectively, calling
> functions from the variant modules. In this setup, one interface module
> can be loaded independently of the other, but both variants must be
> loaded (if not disabled at build time) for any type of interface. This
> approach doesn't scale well, especially with the addition of more switch
> variants (e.g., RTL8366B), leading to loaded but unused modules.
> Additionally, this also seems upside down, as the specific driver code
> normally depends on the more generic functions and not the other way
> around.
>
> [...]
Here is the summary with links:
- [net-next,v6,01/11] net: dsa: realtek: drop cleanup from realtek_ops
https://git.kernel.org/netdev/net-next/c/33f4336cbd32
- [net-next,v6,02/11] net: dsa: realtek: introduce REALTEK_DSA namespace
https://git.kernel.org/netdev/net-next/c/ded3813b44fe
- [net-next,v6,03/11] net: dsa: realtek: convert variants into real drivers
https://git.kernel.org/netdev/net-next/c/bce254b839ab
- [net-next,v6,04/11] net: dsa: realtek: keep variant reference in realtek_priv
https://git.kernel.org/netdev/net-next/c/4667a1db2f55
- [net-next,v6,05/11] net: dsa: realtek: common rtl83xx module
https://git.kernel.org/netdev/net-next/c/8be040ecd94c
- [net-next,v6,06/11] net: dsa: realtek: merge rtl83xx and interface modules into realtek_dsa
https://git.kernel.org/netdev/net-next/c/98b75c1c149c
- [net-next,v6,07/11] net: dsa: realtek: get internal MDIO node by name
https://git.kernel.org/netdev/net-next/c/8685c98d45c5
- [net-next,v6,08/11] net: dsa: realtek: clean user_mii_bus setup
https://git.kernel.org/netdev/net-next/c/68c66d8d8a19
- [net-next,v6,09/11] net: dsa: realtek: migrate user_mii_bus setup to realtek_dsa
https://git.kernel.org/netdev/net-next/c/b4bd77971f3c
- [net-next,v6,10/11] net: dsa: realtek: use the same mii bus driver for both interfaces
https://git.kernel.org/netdev/net-next/c/bba140a566ed
- [net-next,v6,11/11] net: dsa: realtek: embed dsa_switch into realtek_priv
https://git.kernel.org/netdev/net-next/c/9fc469b2943d
You are awesome, thank you!
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
next prev parent reply other threads:[~2024-02-12 10:50 UTC|newest]
Thread overview: 27+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-02-09 5:03 [PATCH net-next v6 00/11] net: dsa: realtek: variants to drivers, interfaces to a common module Luiz Angelo Daros de Luca
2024-02-09 5:03 ` [PATCH net-next v6 01/11] net: dsa: realtek: drop cleanup from realtek_ops Luiz Angelo Daros de Luca
2024-02-09 5:03 ` [PATCH net-next v6 02/11] net: dsa: realtek: introduce REALTEK_DSA namespace Luiz Angelo Daros de Luca
2024-02-09 13:03 ` Linus Walleij
2024-02-09 5:03 ` [PATCH net-next v6 03/11] net: dsa: realtek: convert variants into real drivers Luiz Angelo Daros de Luca
2024-02-09 13:19 ` Linus Walleij
2024-02-09 5:03 ` [PATCH net-next v6 04/11] net: dsa: realtek: keep variant reference in realtek_priv Luiz Angelo Daros de Luca
2024-02-09 13:19 ` Linus Walleij
2024-02-09 5:03 ` [PATCH net-next v6 05/11] net: dsa: realtek: common rtl83xx module Luiz Angelo Daros de Luca
2024-02-09 13:20 ` Linus Walleij
2024-02-09 5:03 ` [PATCH net-next v6 06/11] net: dsa: realtek: merge rtl83xx and interface modules into realtek_dsa Luiz Angelo Daros de Luca
2024-02-09 13:20 ` Linus Walleij
2024-02-09 5:03 ` [PATCH net-next v6 07/11] net: dsa: realtek: get internal MDIO node by name Luiz Angelo Daros de Luca
2024-02-09 13:21 ` Linus Walleij
2024-02-09 5:03 ` [PATCH net-next v6 08/11] net: dsa: realtek: clean user_mii_bus setup Luiz Angelo Daros de Luca
2024-02-09 13:21 ` Linus Walleij
2024-02-09 5:03 ` [PATCH net-next v6 09/11] net: dsa: realtek: migrate user_mii_bus setup to realtek_dsa Luiz Angelo Daros de Luca
2024-02-09 13:22 ` Linus Walleij
2024-02-09 5:03 ` [PATCH net-next v6 10/11] net: dsa: realtek: use the same mii bus driver for both interfaces Luiz Angelo Daros de Luca
2024-02-09 13:23 ` Linus Walleij
2024-02-09 5:03 ` [PATCH net-next v6 11/11] net: dsa: realtek: embed dsa_switch into realtek_priv Luiz Angelo Daros de Luca
2024-02-09 13:24 ` Linus Walleij
2024-02-09 13:17 ` [PATCH net-next v6 00/11] net: dsa: realtek: variants to drivers, interfaces to a common module Linus Walleij
2024-02-12 12:43 ` Luiz Angelo Daros de Luca
2024-02-12 10:50 ` patchwork-bot+netdevbpf [this message]
2024-02-12 12:45 ` Luiz Angelo Daros de Luca
2024-02-16 1:20 ` Vladimir Oltean
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=170773502690.28134.16915655104997076968.git-patchwork-notify@kernel.org \
--to=patchwork-bot+netdevbpf@kernel.org \
--cc=alsi@bang-olufsen.dk \
--cc=andrew@lunn.ch \
--cc=davem@davemloft.net \
--cc=edumazet@google.com \
--cc=f.fainelli@gmail.com \
--cc=florian.fainelli@broadcom.com \
--cc=kuba@kernel.org \
--cc=linus.walleij@linaro.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux@armlinux.org.uk \
--cc=luizluca@gmail.com \
--cc=netdev@vger.kernel.org \
--cc=olteanv@gmail.com \
--cc=pabeni@redhat.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).