diff mbox series

[net] net: dsa: xrs700x: check if partner is same as port in hsr join

Message ID 20210308233822.59729-1-george.mccollister@gmail.com
State New
Headers show
Series [net] net: dsa: xrs700x: check if partner is same as port in hsr join | expand

Commit Message

George McCollister March 8, 2021, 11:38 p.m. UTC
Don't assign dp to partner if it's the same port that xrs700x_hsr_join
was called with. The partner port is supposed to be the other port in
the HSR/PRP redundant pair not the same port. This fixes an issue
observed in testing where forwarding between redundant HSR ports on this
switch didn't work depending on the order the ports were added to the
hsr device.

Fixes: bd62e6f5e6a9 ("net: dsa: xrs700x: add HSR offloading support")
Signed-off-by: George McCollister <george.mccollister@gmail.com>
---
 drivers/net/dsa/xrs700x/xrs700x.c | 10 ++++++++--
 1 file changed, 8 insertions(+), 2 deletions(-)

Comments

Vladimir Oltean March 9, 2021, 12:10 a.m. UTC | #1
On Mon, Mar 08, 2021 at 05:38:22PM -0600, George McCollister wrote:
> Don't assign dp to partner if it's the same port that xrs700x_hsr_join

> was called with. The partner port is supposed to be the other port in

> the HSR/PRP redundant pair not the same port. This fixes an issue

> observed in testing where forwarding between redundant HSR ports on this

> switch didn't work depending on the order the ports were added to the

> hsr device.

> 

> Fixes: bd62e6f5e6a9 ("net: dsa: xrs700x: add HSR offloading support")

> Signed-off-by: George McCollister <george.mccollister@gmail.com>

> ---


Reviewed-by: Vladimir Oltean <olteanv@gmail.com>
patchwork-bot+netdevbpf@kernel.org March 10, 2021, 12:20 a.m. UTC | #2
Hello:

This patch was applied to netdev/net.git (refs/heads/master):

On Mon,  8 Mar 2021 17:38:22 -0600 you wrote:
> Don't assign dp to partner if it's the same port that xrs700x_hsr_join

> was called with. The partner port is supposed to be the other port in

> the HSR/PRP redundant pair not the same port. This fixes an issue

> observed in testing where forwarding between redundant HSR ports on this

> switch didn't work depending on the order the ports were added to the

> hsr device.

> 

> [...]


Here is the summary with links:
  - [net] net: dsa: xrs700x: check if partner is same as port in hsr join
    https://git.kernel.org/netdev/net/c/286a8624d7f9

You are awesome, thank you!
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
diff mbox series

Patch

diff --git a/drivers/net/dsa/xrs700x/xrs700x.c b/drivers/net/dsa/xrs700x/xrs700x.c
index f025f968f96d..fde6e99274b6 100644
--- a/drivers/net/dsa/xrs700x/xrs700x.c
+++ b/drivers/net/dsa/xrs700x/xrs700x.c
@@ -528,7 +528,10 @@  static int xrs700x_hsr_join(struct dsa_switch *ds, int port,
 		return -EOPNOTSUPP;
 
 	dsa_hsr_foreach_port(dp, ds, hsr) {
-		partner = dp;
+		if (dp->index != port) {
+			partner = dp;
+			break;
+		}
 	}
 
 	/* We can't enable redundancy on the switch until both
@@ -582,7 +585,10 @@  static int xrs700x_hsr_leave(struct dsa_switch *ds, int port,
 	unsigned int val;
 
 	dsa_hsr_foreach_port(dp, ds, hsr) {
-		partner = dp;
+		if (dp->index != port) {
+			partner = dp;
+			break;
+		}
 	}
 
 	if (!partner)