netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v2 0/3] bridge: mrp: Add br_mrp_unique_ifindex function
@ 2020-05-21 23:19 Horatiu Vultur
  2020-05-21 23:19 ` [PATCH v2 1/3] " Horatiu Vultur
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: Horatiu Vultur @ 2020-05-21 23:19 UTC (permalink / raw)
  To: jiri, ivecera, davem, kuba, roopa, nikolay, andrew,
	UNGLinuxDriver, netdev, linux-kernel, bridge
  Cc: Horatiu Vultur

This patch series adds small fixes to MRP implementation.
The following are fixed in this patch series:
- now is not allow to add the same port to multiple MRP rings
- remove unused variable
- restore the port state according to the bridge state when the MRP instance
  is deleted

v2:
 - use rtnl_dereference instead of rcu_dereference in the first patch

Horatiu Vultur (3):
  bridge: mrp: Add br_mrp_unique_ifindex function
  switchdev: mrp: Remove the variable mrp_ring_state
  bridge: mrp: Restore port state when deleting MRP instance

 include/net/switchdev.h |  1 -
 net/bridge/br_mrp.c     | 38 ++++++++++++++++++++++++++++++++++----
 2 files changed, 34 insertions(+), 5 deletions(-)

-- 
2.26.2


^ permalink raw reply	[flat|nested] 5+ messages in thread

* [PATCH v2 1/3] bridge: mrp: Add br_mrp_unique_ifindex function
  2020-05-21 23:19 [PATCH v2 0/3] bridge: mrp: Add br_mrp_unique_ifindex function Horatiu Vultur
@ 2020-05-21 23:19 ` Horatiu Vultur
  2020-05-21 23:19 ` [PATCH v2 2/3] switchdev: mrp: Remove the variable mrp_ring_state Horatiu Vultur
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 5+ messages in thread
From: Horatiu Vultur @ 2020-05-21 23:19 UTC (permalink / raw)
  To: jiri, ivecera, davem, kuba, roopa, nikolay, andrew,
	UNGLinuxDriver, netdev, linux-kernel, bridge
  Cc: Horatiu Vultur

It is not allow to have the same net bridge port part of multiple MRP
rings. Therefore add a check if the port is used already in a different
MRP. In that case return failure.

Fixes: 9a9f26e8f7ea ("bridge: mrp: Connect MRP API with the switchdev API")
Signed-off-by: Horatiu Vultur <horatiu.vultur@microchip.com>
---
 net/bridge/br_mrp.c | 25 +++++++++++++++++++++++++
 1 file changed, 25 insertions(+)

diff --git a/net/bridge/br_mrp.c b/net/bridge/br_mrp.c
index d7bc09de4c139..854e31bf0151e 100644
--- a/net/bridge/br_mrp.c
+++ b/net/bridge/br_mrp.c
@@ -37,6 +37,26 @@ static struct br_mrp *br_mrp_find_id(struct net_bridge *br, u32 ring_id)
 	return res;
 }
 
+static bool br_mrp_unique_ifindex(struct net_bridge *br, u32 ifindex)
+{
+	struct br_mrp *mrp;
+
+	list_for_each_entry_rcu(mrp, &br->mrp_list, list,
+				lockdep_rtnl_is_held()) {
+		struct net_bridge_port *p;
+
+		p = rtnl_dereference(mrp->p_port);
+		if (p && p->dev->ifindex == ifindex)
+			return false;
+
+		p = rtnl_dereference(mrp->s_port);
+		if (p && p->dev->ifindex == ifindex)
+			return false;
+	}
+
+	return true;
+}
+
 static struct br_mrp *br_mrp_find_port(struct net_bridge *br,
 				       struct net_bridge_port *p)
 {
@@ -255,6 +275,11 @@ int br_mrp_add(struct net_bridge *br, struct br_mrp_instance *instance)
 	    !br_mrp_get_port(br, instance->s_ifindex))
 		return -EINVAL;
 
+	/* It is not possible to have the same port part of multiple rings */
+	if (!br_mrp_unique_ifindex(br, instance->p_ifindex) ||
+	    !br_mrp_unique_ifindex(br, instance->s_ifindex))
+		return -EINVAL;
+
 	mrp = kzalloc(sizeof(*mrp), GFP_KERNEL);
 	if (!mrp)
 		return -ENOMEM;
-- 
2.26.2


^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [PATCH v2 2/3] switchdev: mrp: Remove the variable mrp_ring_state
  2020-05-21 23:19 [PATCH v2 0/3] bridge: mrp: Add br_mrp_unique_ifindex function Horatiu Vultur
  2020-05-21 23:19 ` [PATCH v2 1/3] " Horatiu Vultur
@ 2020-05-21 23:19 ` Horatiu Vultur
  2020-05-21 23:19 ` [PATCH v2 3/3] bridge: mrp: Restore port state when deleting MRP instance Horatiu Vultur
  2020-05-22 23:17 ` [PATCH v2 0/3] bridge: mrp: Add br_mrp_unique_ifindex function David Miller
  3 siblings, 0 replies; 5+ messages in thread
From: Horatiu Vultur @ 2020-05-21 23:19 UTC (permalink / raw)
  To: jiri, ivecera, davem, kuba, roopa, nikolay, andrew,
	UNGLinuxDriver, netdev, linux-kernel, bridge
  Cc: Horatiu Vultur

Remove the variable mrp_ring_state from switchdev_attr because is not
used anywhere.
The ring state is set using SWITCHDEV_OBJ_ID_RING_STATE_MRP.

Fixes: c284b5459008 ("switchdev: mrp: Extend switchdev API to offload MRP")
Acked-by: Ivan Vecera <ivecera@redhat.com>
Signed-off-by: Horatiu Vultur <horatiu.vultur@microchip.com>
---
 include/net/switchdev.h | 1 -
 1 file changed, 1 deletion(-)

diff --git a/include/net/switchdev.h b/include/net/switchdev.h
index ae7aeb0d1f9ca..db519957e134b 100644
--- a/include/net/switchdev.h
+++ b/include/net/switchdev.h
@@ -62,7 +62,6 @@ struct switchdev_attr {
 #if IS_ENABLED(CONFIG_BRIDGE_MRP)
 		u8 mrp_port_state;			/* MRP_PORT_STATE */
 		u8 mrp_port_role;			/* MRP_PORT_ROLE */
-		u8 mrp_ring_state;			/* MRP_RING_STATE */
 #endif
 	} u;
 };
-- 
2.26.2


^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [PATCH v2 3/3] bridge: mrp: Restore port state when deleting MRP instance
  2020-05-21 23:19 [PATCH v2 0/3] bridge: mrp: Add br_mrp_unique_ifindex function Horatiu Vultur
  2020-05-21 23:19 ` [PATCH v2 1/3] " Horatiu Vultur
  2020-05-21 23:19 ` [PATCH v2 2/3] switchdev: mrp: Remove the variable mrp_ring_state Horatiu Vultur
@ 2020-05-21 23:19 ` Horatiu Vultur
  2020-05-22 23:17 ` [PATCH v2 0/3] bridge: mrp: Add br_mrp_unique_ifindex function David Miller
  3 siblings, 0 replies; 5+ messages in thread
From: Horatiu Vultur @ 2020-05-21 23:19 UTC (permalink / raw)
  To: jiri, ivecera, davem, kuba, roopa, nikolay, andrew,
	UNGLinuxDriver, netdev, linux-kernel, bridge
  Cc: Horatiu Vultur

When a MRP instance is deleted, then restore the port according to the
bridge state. If the bridge is up then the ports will be in forwarding
state otherwise will be in disabled state.

Fixes: 9a9f26e8f7ea ("bridge: mrp: Connect MRP API with the switchdev API")
Acked-by: Nikolay Aleksandrov <nikolay@cumulusnetworks.com>
Signed-off-by: Horatiu Vultur <horatiu.vultur@microchip.com>
---
 net/bridge/br_mrp.c | 13 +++++++++----
 1 file changed, 9 insertions(+), 4 deletions(-)

diff --git a/net/bridge/br_mrp.c b/net/bridge/br_mrp.c
index 854e31bf0151e..528d767eb026f 100644
--- a/net/bridge/br_mrp.c
+++ b/net/bridge/br_mrp.c
@@ -223,6 +223,7 @@ static void br_mrp_test_work_expired(struct work_struct *work)
 static void br_mrp_del_impl(struct net_bridge *br, struct br_mrp *mrp)
 {
 	struct net_bridge_port *p;
+	u8 state;
 
 	/* Stop sending MRP_Test frames */
 	cancel_delayed_work_sync(&mrp->test_work);
@@ -234,20 +235,24 @@ static void br_mrp_del_impl(struct net_bridge *br, struct br_mrp *mrp)
 	p = rtnl_dereference(mrp->p_port);
 	if (p) {
 		spin_lock_bh(&br->lock);
-		p->state = BR_STATE_FORWARDING;
+		state = netif_running(br->dev) ?
+				BR_STATE_FORWARDING : BR_STATE_DISABLED;
+		p->state = state;
 		p->flags &= ~BR_MRP_AWARE;
 		spin_unlock_bh(&br->lock);
-		br_mrp_port_switchdev_set_state(p, BR_STATE_FORWARDING);
+		br_mrp_port_switchdev_set_state(p, state);
 		rcu_assign_pointer(mrp->p_port, NULL);
 	}
 
 	p = rtnl_dereference(mrp->s_port);
 	if (p) {
 		spin_lock_bh(&br->lock);
-		p->state = BR_STATE_FORWARDING;
+		state = netif_running(br->dev) ?
+				BR_STATE_FORWARDING : BR_STATE_DISABLED;
+		p->state = state;
 		p->flags &= ~BR_MRP_AWARE;
 		spin_unlock_bh(&br->lock);
-		br_mrp_port_switchdev_set_state(p, BR_STATE_FORWARDING);
+		br_mrp_port_switchdev_set_state(p, state);
 		rcu_assign_pointer(mrp->s_port, NULL);
 	}
 
-- 
2.26.2


^ permalink raw reply related	[flat|nested] 5+ messages in thread

* Re: [PATCH v2 0/3] bridge: mrp: Add br_mrp_unique_ifindex function
  2020-05-21 23:19 [PATCH v2 0/3] bridge: mrp: Add br_mrp_unique_ifindex function Horatiu Vultur
                   ` (2 preceding siblings ...)
  2020-05-21 23:19 ` [PATCH v2 3/3] bridge: mrp: Restore port state when deleting MRP instance Horatiu Vultur
@ 2020-05-22 23:17 ` David Miller
  3 siblings, 0 replies; 5+ messages in thread
From: David Miller @ 2020-05-22 23:17 UTC (permalink / raw)
  To: horatiu.vultur
  Cc: jiri, ivecera, kuba, roopa, nikolay, andrew, UNGLinuxDriver,
	netdev, linux-kernel, bridge

From: Horatiu Vultur <horatiu.vultur@microchip.com>
Date: Thu, 21 May 2020 23:19:04 +0000

> This patch series adds small fixes to MRP implementation.
> The following are fixed in this patch series:
> - now is not allow to add the same port to multiple MRP rings
> - remove unused variable
> - restore the port state according to the bridge state when the MRP instance
>   is deleted
> 
> v2:
>  - use rtnl_dereference instead of rcu_dereference in the first patch

Series applied to net-next, thanks.

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2020-05-22 23:17 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-05-21 23:19 [PATCH v2 0/3] bridge: mrp: Add br_mrp_unique_ifindex function Horatiu Vultur
2020-05-21 23:19 ` [PATCH v2 1/3] " Horatiu Vultur
2020-05-21 23:19 ` [PATCH v2 2/3] switchdev: mrp: Remove the variable mrp_ring_state Horatiu Vultur
2020-05-21 23:19 ` [PATCH v2 3/3] bridge: mrp: Restore port state when deleting MRP instance Horatiu Vultur
2020-05-22 23:17 ` [PATCH v2 0/3] bridge: mrp: Add br_mrp_unique_ifindex function David Miller

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).