[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <20260205-fix-offloading-statemachine-v1-1-640224a531d0@renesas.com>
Date: Thu, 05 Feb 2026 08:14:40 +0100
From: Michael Dege <michael.dege@...esas.com>
To: Yoshihiro Shimoda <yoshihiro.shimoda.uh@...esas.com>,
Andrew Lunn <andrew+netdev@...n.ch>,
"David S. Miller" <davem@...emloft.net>, Eric Dumazet <edumazet@...gle.com>,
Jakub Kicinski <kuba@...nel.org>, Paolo Abeni <pabeni@...hat.com>,
Nikita Yushchenko <nikita.yoush@...entembedded.com>
Cc: netdev@...r.kernel.org, linux-renesas-soc@...r.kernel.org,
linux-kernel@...r.kernel.org, Michael Dege <michael.dege@...esas.com>
Subject: [PATCH net] net: renesas: rswitch: fix forwarding offload
statemachine
A change of the port state of one port, caused the state of another
port to change. This behvior was unintended.
Signed-off-by: Michael Dege <michael.dege@...esas.com>
---
A change of the port state of one port, caused the state of another
port to change. This behvior was unintended.
Fixes: b7502b1043de86967ff341819d05e09a8dbe8b2b ("net: renesas: rswitch: add offloading for L2 switching")
---
drivers/net/ethernet/renesas/rswitch_l2.c | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/drivers/net/ethernet/renesas/rswitch_l2.c b/drivers/net/ethernet/renesas/rswitch_l2.c
index 4a69ec77d69c..dcf726793bdc 100644
--- a/drivers/net/ethernet/renesas/rswitch_l2.c
+++ b/drivers/net/ethernet/renesas/rswitch_l2.c
@@ -1,7 +1,7 @@
// SPDX-License-Identifier: GPL-2.0
/* Renesas Ethernet Switch device driver
*
- * Copyright (C) 2025 Renesas Electronics Corporation
+ * Copyright (C) 2025 - 2026 Renesas Electronics Corporation
*/
#include <linux/err.h>
@@ -88,7 +88,8 @@ static void rswitch_update_l2_hw_forwarding(struct rswitch_private *priv)
rdev->forwarding_requested &&
!rdev->forwarding_offloaded) {
rswitch_change_l2_hw_offloading(rdev, true, false);
- } else if (rdev->forwarding_offloaded) {
+ } else if (rdev->forwarding_offloaded &&
+ !rdev->forwarding_requested) {
rswitch_change_l2_hw_offloading(rdev, false, false);
}
}
---
base-commit: f14faaf3a1fb3b9e4cf2e56269711fb85fba9458
change-id: 20260205-fix-offloading-statemachine-1d301630a08d
Best regards,
--
Michael Dege <michael.dege@...esas.com>
Powered by blists - more mailing lists