* [PATCH] net: ethernet: Add missing depends on MDIO_DEVRES
@ 2023-04-09 15:02 Andrew Lunn
2023-04-10 9:07 ` Simon Horman
` (2 more replies)
0 siblings, 3 replies; 7+ messages in thread
From: Andrew Lunn @ 2023-04-09 15:02 UTC (permalink / raw)
To: David Miller, Jakub Kicinski
Cc: netdev, Florian Fainelli, Heiner Kallweit, Russell King,
Andrew Lunn
A number of MDIO drivers make use of devm_mdiobus_alloc_size(). This
is only available when CONFIG_MDIO_DEVRES is enabled. Add missing
depends or selects, depending on if there are circular dependencies or
not. This avoids linker errors, especially for randconfig builds.
Signed-off-by: Andrew Lunn <andrew@lunn.ch>
---
drivers/net/ethernet/freescale/Kconfig | 1 +
drivers/net/ethernet/freescale/enetc/Kconfig | 1 +
drivers/net/ethernet/marvell/Kconfig | 1 +
drivers/net/ethernet/qualcomm/Kconfig | 1 +
drivers/net/mdio/Kconfig | 3 +++
5 files changed, 7 insertions(+)
diff --git a/drivers/net/ethernet/freescale/Kconfig b/drivers/net/ethernet/freescale/Kconfig
index f1e80d6996ef..1c78f66a89da 100644
--- a/drivers/net/ethernet/freescale/Kconfig
+++ b/drivers/net/ethernet/freescale/Kconfig
@@ -71,6 +71,7 @@ config FSL_XGMAC_MDIO
tristate "Freescale XGMAC MDIO"
select PHYLIB
depends on OF
+ select MDIO_DEVRES
select OF_MDIO
help
This driver supports the MDIO bus on the Fman 10G Ethernet MACs, and
diff --git a/drivers/net/ethernet/freescale/enetc/Kconfig b/drivers/net/ethernet/freescale/enetc/Kconfig
index 9bc099cf3cb1..4d75e6807e92 100644
--- a/drivers/net/ethernet/freescale/enetc/Kconfig
+++ b/drivers/net/ethernet/freescale/enetc/Kconfig
@@ -10,6 +10,7 @@ config FSL_ENETC_CORE
config FSL_ENETC
tristate "ENETC PF driver"
depends on PCI_MSI
+ select MDIO_DEVRES
select FSL_ENETC_CORE
select FSL_ENETC_IERB
select FSL_ENETC_MDIO
diff --git a/drivers/net/ethernet/marvell/Kconfig b/drivers/net/ethernet/marvell/Kconfig
index f58a1c0144ba..884d64114bff 100644
--- a/drivers/net/ethernet/marvell/Kconfig
+++ b/drivers/net/ethernet/marvell/Kconfig
@@ -34,6 +34,7 @@ config MV643XX_ETH
config MVMDIO
tristate "Marvell MDIO interface support"
depends on HAS_IOMEM
+ select MDIO_DEVRES
select PHYLIB
help
This driver supports the MDIO interface found in the network
diff --git a/drivers/net/ethernet/qualcomm/Kconfig b/drivers/net/ethernet/qualcomm/Kconfig
index a4434eb38950..9210ff360fdc 100644
--- a/drivers/net/ethernet/qualcomm/Kconfig
+++ b/drivers/net/ethernet/qualcomm/Kconfig
@@ -52,6 +52,7 @@ config QCOM_EMAC
depends on HAS_DMA && HAS_IOMEM
select CRC32
select PHYLIB
+ select MDIO_DEVRES
help
This driver supports the Qualcomm Technologies, Inc. Gigabit
Ethernet Media Access Controller (EMAC). The controller
diff --git a/drivers/net/mdio/Kconfig b/drivers/net/mdio/Kconfig
index 90309980686e..9ff2e6f22f3f 100644
--- a/drivers/net/mdio/Kconfig
+++ b/drivers/net/mdio/Kconfig
@@ -65,6 +65,7 @@ config MDIO_ASPEED
tristate "ASPEED MDIO bus controller"
depends on ARCH_ASPEED || COMPILE_TEST
depends on OF_MDIO && HAS_IOMEM
+ depends on MDIO_DEVRES
help
This module provides a driver for the independent MDIO bus
controllers found in the ASPEED AST2600 SoC. This is a driver for the
@@ -170,6 +171,7 @@ config MDIO_IPQ4019
tristate "Qualcomm IPQ4019 MDIO interface support"
depends on HAS_IOMEM && OF_MDIO
depends on COMMON_CLK
+ depends on MDIO_DEVRES
help
This driver supports the MDIO interface found in Qualcomm
IPQ40xx, IPQ60xx, IPQ807x and IPQ50xx series Soc-s.
@@ -178,6 +180,7 @@ config MDIO_IPQ8064
tristate "Qualcomm IPQ8064 MDIO interface support"
depends on HAS_IOMEM && OF_MDIO
depends on MFD_SYSCON
+ depends on MDIO_DEVRES
help
This driver supports the MDIO interface found in the network
interface units of the IPQ8064 SoC
--
2.40.0
^ permalink raw reply related [flat|nested] 7+ messages in thread
* Re: [PATCH] net: ethernet: Add missing depends on MDIO_DEVRES
2023-04-09 15:02 [PATCH] net: ethernet: Add missing depends on MDIO_DEVRES Andrew Lunn
@ 2023-04-10 9:07 ` Simon Horman
2023-04-10 12:11 ` Andrew Lunn
2023-04-12 22:53 ` Jacob Keller
2023-04-13 3:50 ` patchwork-bot+netdevbpf
2 siblings, 1 reply; 7+ messages in thread
From: Simon Horman @ 2023-04-10 9:07 UTC (permalink / raw)
To: Andrew Lunn
Cc: David Miller, Jakub Kicinski, netdev, Florian Fainelli,
Heiner Kallweit, Russell King
On Sun, Apr 09, 2023 at 05:02:04PM +0200, Andrew Lunn wrote:
> A number of MDIO drivers make use of devm_mdiobus_alloc_size(). This
> is only available when CONFIG_MDIO_DEVRES is enabled. Add missing
> depends or selects, depending on if there are circular dependencies or
> not. This avoids linker errors, especially for randconfig builds.
>
> Signed-off-by: Andrew Lunn <andrew@lunn.ch>
> ---
> drivers/net/ethernet/freescale/Kconfig | 1 +
> drivers/net/ethernet/freescale/enetc/Kconfig | 1 +
> drivers/net/ethernet/marvell/Kconfig | 1 +
> drivers/net/ethernet/qualcomm/Kconfig | 1 +
> drivers/net/mdio/Kconfig | 3 +++
> 5 files changed, 7 insertions(+)
>
> diff --git a/drivers/net/ethernet/freescale/Kconfig b/drivers/net/ethernet/freescale/Kconfig
> index f1e80d6996ef..1c78f66a89da 100644
> --- a/drivers/net/ethernet/freescale/Kconfig
> +++ b/drivers/net/ethernet/freescale/Kconfig
> @@ -71,6 +71,7 @@ config FSL_XGMAC_MDIO
> tristate "Freescale XGMAC MDIO"
> select PHYLIB
> depends on OF
> + select MDIO_DEVRES
> select OF_MDIO
> help
> This driver supports the MDIO bus on the Fman 10G Ethernet MACs, and
Perhaps this is a good idea, but I'd like to mention that I don't think
it is strictly necessary as:
1. FSL_XGMAC_MDIO selects PHYLIB.
2. And PHYLIB selects MDIO_DEVRES.
Likewise for FSL_ENETC, MV643XX_ETH, QCOM_EMAC.
Is there some combination of N/y/m that defeats my logic here?
I feel like I am missing something obvious.
> diff --git a/drivers/net/ethernet/freescale/enetc/Kconfig b/drivers/net/ethernet/freescale/enetc/Kconfig
> index 9bc099cf3cb1..4d75e6807e92 100644
> --- a/drivers/net/ethernet/freescale/enetc/Kconfig
> +++ b/drivers/net/ethernet/freescale/enetc/Kconfig
> @@ -10,6 +10,7 @@ config FSL_ENETC_CORE
> config FSL_ENETC
> tristate "ENETC PF driver"
> depends on PCI_MSI
> + select MDIO_DEVRES
> select FSL_ENETC_CORE
> select FSL_ENETC_IERB
> select FSL_ENETC_MDIO
> diff --git a/drivers/net/ethernet/marvell/Kconfig b/drivers/net/ethernet/marvell/Kconfig
> index f58a1c0144ba..884d64114bff 100644
> --- a/drivers/net/ethernet/marvell/Kconfig
> +++ b/drivers/net/ethernet/marvell/Kconfig
> @@ -34,6 +34,7 @@ config MV643XX_ETH
> config MVMDIO
> tristate "Marvell MDIO interface support"
> depends on HAS_IOMEM
> + select MDIO_DEVRES
> select PHYLIB
> help
> This driver supports the MDIO interface found in the network
> diff --git a/drivers/net/ethernet/qualcomm/Kconfig b/drivers/net/ethernet/qualcomm/Kconfig
> index a4434eb38950..9210ff360fdc 100644
> --- a/drivers/net/ethernet/qualcomm/Kconfig
> +++ b/drivers/net/ethernet/qualcomm/Kconfig
> @@ -52,6 +52,7 @@ config QCOM_EMAC
> depends on HAS_DMA && HAS_IOMEM
> select CRC32
> select PHYLIB
> + select MDIO_DEVRES
> help
> This driver supports the Qualcomm Technologies, Inc. Gigabit
> Ethernet Media Access Controller (EMAC). The controller
> diff --git a/drivers/net/mdio/Kconfig b/drivers/net/mdio/Kconfig
> index 90309980686e..9ff2e6f22f3f 100644
> --- a/drivers/net/mdio/Kconfig
> +++ b/drivers/net/mdio/Kconfig
> @@ -65,6 +65,7 @@ config MDIO_ASPEED
> tristate "ASPEED MDIO bus controller"
> depends on ARCH_ASPEED || COMPILE_TEST
> depends on OF_MDIO && HAS_IOMEM
> + depends on MDIO_DEVRES
> help
> This module provides a driver for the independent MDIO bus
> controllers found in the ASPEED AST2600 SoC. This is a driver for the
Again, I'm not sure if this is necessary:
1. MDIO_ASPEED depends on OF_MDIO
2. OF_MDIO depends on PHYLIB
3. PHYLIB selects MDIO_DEVRES
Likewise for MDIO_IPQ4019 and MDIO_IPQ8064.
> @@ -170,6 +171,7 @@ config MDIO_IPQ4019
> tristate "Qualcomm IPQ4019 MDIO interface support"
> depends on HAS_IOMEM && OF_MDIO
> depends on COMMON_CLK
> + depends on MDIO_DEVRES
> help
> This driver supports the MDIO interface found in Qualcomm
> IPQ40xx, IPQ60xx, IPQ807x and IPQ50xx series Soc-s.
> @@ -178,6 +180,7 @@ config MDIO_IPQ8064
> tristate "Qualcomm IPQ8064 MDIO interface support"
> depends on HAS_IOMEM && OF_MDIO
> depends on MFD_SYSCON
> + depends on MDIO_DEVRES
> help
> This driver supports the MDIO interface found in the network
> interface units of the IPQ8064 SoC
> --
> 2.40.0
>
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH] net: ethernet: Add missing depends on MDIO_DEVRES
2023-04-10 9:07 ` Simon Horman
@ 2023-04-10 12:11 ` Andrew Lunn
2023-04-10 12:56 ` Simon Horman
2023-04-12 22:52 ` Jacob Keller
0 siblings, 2 replies; 7+ messages in thread
From: Andrew Lunn @ 2023-04-10 12:11 UTC (permalink / raw)
To: Simon Horman
Cc: David Miller, Jakub Kicinski, netdev, Florian Fainelli,
Heiner Kallweit, Russell King
On Mon, Apr 10, 2023 at 11:07:58AM +0200, Simon Horman wrote:
> On Sun, Apr 09, 2023 at 05:02:04PM +0200, Andrew Lunn wrote:
> > A number of MDIO drivers make use of devm_mdiobus_alloc_size(). This
> > is only available when CONFIG_MDIO_DEVRES is enabled. Add missing
> > depends or selects, depending on if there are circular dependencies or
> > not. This avoids linker errors, especially for randconfig builds.
> >
> > Signed-off-by: Andrew Lunn <andrew@lunn.ch>
> > ---
> > drivers/net/ethernet/freescale/Kconfig | 1 +
> > drivers/net/ethernet/freescale/enetc/Kconfig | 1 +
> > drivers/net/ethernet/marvell/Kconfig | 1 +
> > drivers/net/ethernet/qualcomm/Kconfig | 1 +
> > drivers/net/mdio/Kconfig | 3 +++
> > 5 files changed, 7 insertions(+)
> >
> > diff --git a/drivers/net/ethernet/freescale/Kconfig b/drivers/net/ethernet/freescale/Kconfig
> > index f1e80d6996ef..1c78f66a89da 100644
> > --- a/drivers/net/ethernet/freescale/Kconfig
> > +++ b/drivers/net/ethernet/freescale/Kconfig
> > @@ -71,6 +71,7 @@ config FSL_XGMAC_MDIO
> > tristate "Freescale XGMAC MDIO"
> > select PHYLIB
> > depends on OF
> > + select MDIO_DEVRES
> > select OF_MDIO
> > help
> > This driver supports the MDIO bus on the Fman 10G Ethernet MACs, and
>
> Perhaps this is a good idea, but I'd like to mention that I don't think
> it is strictly necessary as:
>
> 1. FSL_XGMAC_MDIO selects PHYLIB.
> 2. And PHYLIB selects MDIO_DEVRES.
>
> Likewise for FSL_ENETC, MV643XX_ETH, QCOM_EMAC.
>
> Is there some combination of N/y/m that defeats my logic here?
> I feel like I am missing something obvious.
I keep getting 0-day randconfig build warning about kernel
configuration which don't link. It seems to get worse when we add in
support of MAC and PHY LEDs. My guess is, the additional dependencies
for LEDs upsets the conflict resolution engine, and it comes out with
a different solution. `select` is a soft dependency. It is more a
hint, and can be ignored. And when a randconfig kernel fails to build,
MDIO_DEVRES is disabled.
Where possible, i've added a `depends on`, which is a much stronger
dependency. But that can lead to circular dependencies, which kconfig
cannot handle. In such cases, i've added selects. Maybe having more
selects for a config option will influence it to find a solution which
has MDIO_DEVRES enabled?
I've had this patch in a github tree for a week or more, and 0-day has
not yet returned any randconfig build errors. But i've not combined it
with the LED code.
Andrew
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH] net: ethernet: Add missing depends on MDIO_DEVRES
2023-04-10 12:11 ` Andrew Lunn
@ 2023-04-10 12:56 ` Simon Horman
2023-04-12 22:52 ` Jacob Keller
1 sibling, 0 replies; 7+ messages in thread
From: Simon Horman @ 2023-04-10 12:56 UTC (permalink / raw)
To: Andrew Lunn
Cc: David Miller, Jakub Kicinski, netdev, Florian Fainelli,
Heiner Kallweit, Russell King
On Mon, Apr 10, 2023 at 02:11:39PM +0200, Andrew Lunn wrote:
> On Mon, Apr 10, 2023 at 11:07:58AM +0200, Simon Horman wrote:
> > On Sun, Apr 09, 2023 at 05:02:04PM +0200, Andrew Lunn wrote:
> > > A number of MDIO drivers make use of devm_mdiobus_alloc_size(). This
> > > is only available when CONFIG_MDIO_DEVRES is enabled. Add missing
> > > depends or selects, depending on if there are circular dependencies or
> > > not. This avoids linker errors, especially for randconfig builds.
> > >
> > > Signed-off-by: Andrew Lunn <andrew@lunn.ch>
> > > ---
> > > drivers/net/ethernet/freescale/Kconfig | 1 +
> > > drivers/net/ethernet/freescale/enetc/Kconfig | 1 +
> > > drivers/net/ethernet/marvell/Kconfig | 1 +
> > > drivers/net/ethernet/qualcomm/Kconfig | 1 +
> > > drivers/net/mdio/Kconfig | 3 +++
> > > 5 files changed, 7 insertions(+)
> > >
> > > diff --git a/drivers/net/ethernet/freescale/Kconfig b/drivers/net/ethernet/freescale/Kconfig
> > > index f1e80d6996ef..1c78f66a89da 100644
> > > --- a/drivers/net/ethernet/freescale/Kconfig
> > > +++ b/drivers/net/ethernet/freescale/Kconfig
> > > @@ -71,6 +71,7 @@ config FSL_XGMAC_MDIO
> > > tristate "Freescale XGMAC MDIO"
> > > select PHYLIB
> > > depends on OF
> > > + select MDIO_DEVRES
> > > select OF_MDIO
> > > help
> > > This driver supports the MDIO bus on the Fman 10G Ethernet MACs, and
> >
> > Perhaps this is a good idea, but I'd like to mention that I don't think
> > it is strictly necessary as:
> >
> > 1. FSL_XGMAC_MDIO selects PHYLIB.
> > 2. And PHYLIB selects MDIO_DEVRES.
> >
> > Likewise for FSL_ENETC, MV643XX_ETH, QCOM_EMAC.
> >
> > Is there some combination of N/y/m that defeats my logic here?
> > I feel like I am missing something obvious.
>
> I keep getting 0-day randconfig build warning about kernel
> configuration which don't link. It seems to get worse when we add in
> support of MAC and PHY LEDs. My guess is, the additional dependencies
> for LEDs upsets the conflict resolution engine, and it comes out with
> a different solution. `select` is a soft dependency. It is more a
> hint, and can be ignored. And when a randconfig kernel fails to build,
> MDIO_DEVRES is disabled.
>
> Where possible, i've added a `depends on`, which is a much stronger
> dependency. But that can lead to circular dependencies, which kconfig
> cannot handle. In such cases, i've added selects. Maybe having more
> selects for a config option will influence it to find a solution which
> has MDIO_DEVRES enabled?
>
> I've had this patch in a github tree for a week or more, and 0-day has
> not yet returned any randconfig build errors. But i've not combined it
> with the LED code.
Thanks Andrew,
I'm certainly not opposed to this patch.
More curious as to what situations (configs) the problems arise in.
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH] net: ethernet: Add missing depends on MDIO_DEVRES
2023-04-10 12:11 ` Andrew Lunn
2023-04-10 12:56 ` Simon Horman
@ 2023-04-12 22:52 ` Jacob Keller
1 sibling, 0 replies; 7+ messages in thread
From: Jacob Keller @ 2023-04-12 22:52 UTC (permalink / raw)
To: Andrew Lunn, Simon Horman
Cc: David Miller, Jakub Kicinski, netdev, Florian Fainelli,
Heiner Kallweit, Russell King
On 4/10/2023 5:11 AM, Andrew Lunn wrote:
> On Mon, Apr 10, 2023 at 11:07:58AM +0200, Simon Horman wrote:
>> On Sun, Apr 09, 2023 at 05:02:04PM +0200, Andrew Lunn wrote:
>>> A number of MDIO drivers make use of devm_mdiobus_alloc_size(). This
>>> is only available when CONFIG_MDIO_DEVRES is enabled. Add missing
>>> depends or selects, depending on if there are circular dependencies or
>>> not. This avoids linker errors, especially for randconfig builds.
>>>
>>> Signed-off-by: Andrew Lunn <andrew@lunn.ch>
>>> ---
>>> drivers/net/ethernet/freescale/Kconfig | 1 +
>>> drivers/net/ethernet/freescale/enetc/Kconfig | 1 +
>>> drivers/net/ethernet/marvell/Kconfig | 1 +
>>> drivers/net/ethernet/qualcomm/Kconfig | 1 +
>>> drivers/net/mdio/Kconfig | 3 +++
>>> 5 files changed, 7 insertions(+)
>>>
>>> diff --git a/drivers/net/ethernet/freescale/Kconfig b/drivers/net/ethernet/freescale/Kconfig
>>> index f1e80d6996ef..1c78f66a89da 100644
>>> --- a/drivers/net/ethernet/freescale/Kconfig
>>> +++ b/drivers/net/ethernet/freescale/Kconfig
>>> @@ -71,6 +71,7 @@ config FSL_XGMAC_MDIO
>>> tristate "Freescale XGMAC MDIO"
>>> select PHYLIB
>>> depends on OF
>>> + select MDIO_DEVRES
>>> select OF_MDIO
>>> help
>>> This driver supports the MDIO bus on the Fman 10G Ethernet MACs, and
>>
>> Perhaps this is a good idea, but I'd like to mention that I don't think
>> it is strictly necessary as:
>>
>> 1. FSL_XGMAC_MDIO selects PHYLIB.
>> 2. And PHYLIB selects MDIO_DEVRES.
>>
>> Likewise for FSL_ENETC, MV643XX_ETH, QCOM_EMAC.
>>
>> Is there some combination of N/y/m that defeats my logic here?
>> I feel like I am missing something obvious.
>
> I keep getting 0-day randconfig build warning about kernel
> configuration which don't link. It seems to get worse when we add in
> support of MAC and PHY LEDs. My guess is, the additional dependencies
> for LEDs upsets the conflict resolution engine, and it comes out with
> a different solution. `select` is a soft dependency. It is more a
> hint, and can be ignored. And when a randconfig kernel fails to build,
> MDIO_DEVRES is disabled.
>
> Where possible, i've added a `depends on`, which is a much stronger
> dependency. But that can lead to circular dependencies, which kconfig
> cannot handle. In such cases, i've added selects. Maybe having more
> selects for a config option will influence it to find a solution which
> has MDIO_DEVRES enabled?
>
I think this approach is ok. Other alternatives to solve the circular
dependency are much more invasive.
> I've had this patch in a github tree for a week or more, and 0-day has
> not yet returned any randconfig build errors. But i've not combined it
> with the LED code.
>
> Andrew
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH] net: ethernet: Add missing depends on MDIO_DEVRES
2023-04-09 15:02 [PATCH] net: ethernet: Add missing depends on MDIO_DEVRES Andrew Lunn
2023-04-10 9:07 ` Simon Horman
@ 2023-04-12 22:53 ` Jacob Keller
2023-04-13 3:50 ` patchwork-bot+netdevbpf
2 siblings, 0 replies; 7+ messages in thread
From: Jacob Keller @ 2023-04-12 22:53 UTC (permalink / raw)
To: Andrew Lunn, David Miller, Jakub Kicinski
Cc: netdev, Florian Fainelli, Heiner Kallweit, Russell King
On 4/9/2023 8:02 AM, Andrew Lunn wrote:
> A number of MDIO drivers make use of devm_mdiobus_alloc_size(). This
> is only available when CONFIG_MDIO_DEVRES is enabled. Add missing
> depends or selects, depending on if there are circular dependencies or
> not. This avoids linker errors, especially for randconfig builds.
>
> Signed-off-by: Andrew Lunn <andrew@lunn.ch>
> ---
Reviewed-by: Jacob Keller <jacob.e.keller@intel.com>
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH] net: ethernet: Add missing depends on MDIO_DEVRES
2023-04-09 15:02 [PATCH] net: ethernet: Add missing depends on MDIO_DEVRES Andrew Lunn
2023-04-10 9:07 ` Simon Horman
2023-04-12 22:53 ` Jacob Keller
@ 2023-04-13 3:50 ` patchwork-bot+netdevbpf
2 siblings, 0 replies; 7+ messages in thread
From: patchwork-bot+netdevbpf @ 2023-04-13 3:50 UTC (permalink / raw)
To: Andrew Lunn; +Cc: davem, kuba, netdev, f.fainelli, hkallweit1, rmk+kernel
Hello:
This patch was applied to netdev/net-next.git (main)
by Jakub Kicinski <kuba@kernel.org>:
On Sun, 9 Apr 2023 17:02:04 +0200 you wrote:
> A number of MDIO drivers make use of devm_mdiobus_alloc_size(). This
> is only available when CONFIG_MDIO_DEVRES is enabled. Add missing
> depends or selects, depending on if there are circular dependencies or
> not. This avoids linker errors, especially for randconfig builds.
>
> Signed-off-by: Andrew Lunn <andrew@lunn.ch>
>
> [...]
Here is the summary with links:
- net: ethernet: Add missing depends on MDIO_DEVRES
https://git.kernel.org/netdev/net-next/c/37f9b2a6c086
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] 7+ messages in thread
end of thread, other threads:[~2023-04-13 3:50 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-04-09 15:02 [PATCH] net: ethernet: Add missing depends on MDIO_DEVRES Andrew Lunn
2023-04-10 9:07 ` Simon Horman
2023-04-10 12:11 ` Andrew Lunn
2023-04-10 12:56 ` Simon Horman
2023-04-12 22:52 ` Jacob Keller
2023-04-12 22:53 ` Jacob Keller
2023-04-13 3:50 ` patchwork-bot+netdevbpf
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).