* [PATCH net] net: ti: icssg-prueth: Add dependency on HSR
@ 2026-02-03 12:43 Kevin Hao
2026-02-05 18:03 ` Jakub Kicinski
0 siblings, 1 reply; 3+ messages in thread
From: Kevin Hao @ 2026-02-03 12:43 UTC (permalink / raw)
To: netdev
Cc: Kevin Hao, stable, MD Danish Anwar, Roger Quadros, Andrew Lunn,
David S. Miller, Eric Dumazet, Jakub Kicinski, Paolo Abeni
Commit 95540ad6747c ("net: ti: icssg-prueth: Add support for HSR frame
forward offload") introduces support for offloading HSR frame forwarding,
which relies on functions such as is_hsr_master() provided by the HSR
module. Therefore, a dependency on HSR should be added for this driver.
Otherwise, the following build failures will occur when icssg-prueth is
built-in while HSR is configured as a module:
ld.lld: error: undefined symbol: is_hsr_master
>>> referenced by icssg_prueth.c:710 (drivers/net/ethernet/ti/icssg/icssg_prueth.c:710)
>>> drivers/net/ethernet/ti/icssg/icssg_prueth.o:(icssg_prueth_hsr_del_mcast) in archive vmlinux.a
>>> referenced by icssg_prueth.c:681 (drivers/net/ethernet/ti/icssg/icssg_prueth.c:681)
>>> drivers/net/ethernet/ti/icssg/icssg_prueth.o:(icssg_prueth_hsr_add_mcast) in archive vmlinux.a
>>> referenced by icssg_prueth.c:1812 (drivers/net/ethernet/ti/icssg/icssg_prueth.c:1812)
>>> drivers/net/ethernet/ti/icssg/icssg_prueth.o:(prueth_netdevice_event) in archive vmlinux.a
ld.lld: error: undefined symbol: hsr_get_port_ndev
>>> referenced by icssg_prueth.c:712 (drivers/net/ethernet/ti/icssg/icssg_prueth.c:712)
>>> drivers/net/ethernet/ti/icssg/icssg_prueth.o:(icssg_prueth_hsr_del_mcast) in archive vmlinux.a
>>> referenced by icssg_prueth.c:712 (drivers/net/ethernet/ti/icssg/icssg_prueth.c:712)
>>> drivers/net/etherneteth_hsr_del_mcast) in archive vmlinux.a
>>> referenced by icssg_prueth.c:683 (drivers/net/ethernet/ti/icssg/icssg_prueth.c:683)
>>> drivers/net/ethernet/ti/icssg/icssg_prueth.o:(icssg_prueth_hsr_add_mcast) in archive vmlinux.a
>>> referenced 1 more times
Fixes: 95540ad6747c ("net: ti: icssg-prueth: Add support for HSR frame forward offload")
Signed-off-by: Kevin Hao <haokexin@gmail.com>
Cc: stable@vger.kernel.org
---
Cc: MD Danish Anwar <danishanwar@ti.com>
Cc: Roger Quadros <rogerq@kernel.org>
Cc: Andrew Lunn <andrew+netdev@lunn.ch>
Cc: "David S. Miller" <davem@davemloft.net>
Cc: Eric Dumazet <edumazet@google.com>
Cc: Jakub Kicinski <kuba@kernel.org>
Cc: Paolo Abeni <pabeni@redhat.com>
---
drivers/net/ethernet/ti/Kconfig | 1 +
1 file changed, 1 insertion(+)
diff --git a/drivers/net/ethernet/ti/Kconfig b/drivers/net/ethernet/ti/Kconfig
index fe5b2926d8ab060d83f5a58d91e749a45c6cea18..48aa3457fd6d7fd99147e4fb1148559d6fcba082 100644
--- a/drivers/net/ethernet/ti/Kconfig
+++ b/drivers/net/ethernet/ti/Kconfig
@@ -192,6 +192,7 @@ config TI_ICSSG_PRUETH
depends on NET_SWITCHDEV
depends on ARCH_K3 && OF && TI_K3_UDMA_GLUE_LAYER
depends on PTP_1588_CLOCK_OPTIONAL
+ depends on HSR
help
Support dual Gigabit Ethernet ports over the ICSSG PRU Subsystem.
This subsystem is available starting with the AM65 platform.
---
base-commit: 193579fe01389bc21aff0051d13f24e8ea95b47d
change-id: 20260203-icssg-dep-b9f7fc2be11e
Best regards,
--
Kevin Hao <haokexin@gmail.com>
^ permalink raw reply related [flat|nested] 3+ messages in thread* Re: [PATCH net] net: ti: icssg-prueth: Add dependency on HSR
2026-02-03 12:43 [PATCH net] net: ti: icssg-prueth: Add dependency on HSR Kevin Hao
@ 2026-02-05 18:03 ` Jakub Kicinski
2026-02-06 2:56 ` Kevin Hao
0 siblings, 1 reply; 3+ messages in thread
From: Jakub Kicinski @ 2026-02-05 18:03 UTC (permalink / raw)
To: Kevin Hao
Cc: netdev, stable, MD Danish Anwar, Roger Quadros, Andrew Lunn,
David S. Miller, Eric Dumazet, Paolo Abeni
On Tue, 03 Feb 2026 20:43:08 +0800 Kevin Hao wrote:
> Commit 95540ad6747c ("net: ti: icssg-prueth: Add support for HSR frame
> forward offload") introduces support for offloading HSR frame forwarding,
> which relies on functions such as is_hsr_master() provided by the HSR
> module. Therefore, a dependency on HSR should be added for this driver.
> Otherwise, the following build failures will occur when icssg-prueth is
> diff --git a/drivers/net/ethernet/ti/Kconfig b/drivers/net/ethernet/ti/Kconfig
> index fe5b2926d8ab060d83f5a58d91e749a45c6cea18..48aa3457fd6d7fd99147e4fb1148559d6fcba082 100644
> --- a/drivers/net/ethernet/ti/Kconfig
> +++ b/drivers/net/ethernet/ti/Kconfig
> @@ -192,6 +192,7 @@ config TI_ICSSG_PRUETH
> depends on NET_SWITCHDEV
> depends on ARCH_K3 && OF && TI_K3_UDMA_GLUE_LAYER
> depends on PTP_1588_CLOCK_OPTIONAL
> + depends on HSR
Looks like there are appropriate static inlines in place to handle
HSR=n in the driver the only problematic case is if HSR is m and
drivers is y, no?
depends on HSR || HSR=n
is likely more suitable.
--
pw-bot: cr
^ permalink raw reply [flat|nested] 3+ messages in thread* Re: [PATCH net] net: ti: icssg-prueth: Add dependency on HSR
2026-02-05 18:03 ` Jakub Kicinski
@ 2026-02-06 2:56 ` Kevin Hao
0 siblings, 0 replies; 3+ messages in thread
From: Kevin Hao @ 2026-02-06 2:56 UTC (permalink / raw)
To: Jakub Kicinski
Cc: netdev, stable, MD Danish Anwar, Roger Quadros, Andrew Lunn,
David S. Miller, Eric Dumazet, Paolo Abeni
[-- Attachment #1: Type: text/plain, Size: 578 bytes --]
On Thu, Feb 05, 2026 at 10:03:15AM -0800, Jakub Kicinski wrote:
> Looks like there are appropriate static inlines in place to handle
> HSR=n in the driver the only problematic case is if HSR is m and
> drivers is y, no?
>
> depends on HSR || HSR=n
>
> is likely more suitable.
Yes, the icssg-prueth driver can still be built with HSR disabled. Therefore,
this should be an optional dependency. I will update it to:
depends on HSR if HSR
as this is the recommended way to express optional dependencies according to
kconfig-language.rst.
Thanks,
Kevin
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 488 bytes --]
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2026-02-06 2:57 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-02-03 12:43 [PATCH net] net: ti: icssg-prueth: Add dependency on HSR Kevin Hao
2026-02-05 18:03 ` Jakub Kicinski
2026-02-06 2:56 ` Kevin Hao
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox