netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v3 iproute2 0/4] Multiple Spanning Tree (MST) Support
@ 2024-07-02 12:08 Tobias Waldekranz
  2024-07-02 12:08 ` [PATCH v3 iproute2 1/4] ip: bridge: add support for mst_enabled Tobias Waldekranz
                   ` (5 more replies)
  0 siblings, 6 replies; 13+ messages in thread
From: Tobias Waldekranz @ 2024-07-02 12:08 UTC (permalink / raw)
  To: stephen, dsahern, roopa, razor, bridge, netdev; +Cc: liuhangbin

This series adds support for:

- Enabling MST on a bridge:

      ip link set dev <BR> type bridge mst_enable 1

- (Re)associating VLANs with an MSTI:

      bridge vlan global set dev <BR> vid <X> msti <Y>

- Setting the port state in a given MSTI:

      bridge mst set dev <PORT> msti <Y> state <Z>

- Listing the current port MST states:

      bridge mst show

NOTE: Multiple spanning tree support was added to Linux a couple of
years ago[1], but the corresponding iproute2 patches were never
posted. Mea culpa. Some time ago, this was brought to my attention[2],
which is why you are seeing them now.

[1]: https://lore.kernel.org/netdev/20220316150857.2442916-1-tobias@waldekranz.com/
[2]: https://lore.kernel.org/netdev/Zmsc54cVKF1wpzj7@Laptop-X1/

v2 -> v3:
- Added 2/4 bridge: Remove duplicated textification macros (Nikolay)
- Fold a conditional in to a switch mst.c (Nikolay)
- Give the full command to set a VLAN's MSTI in the man page (Nikolay)
- Use proper type for stp state (Stephen)

v1 -> v2:
- Require exact match for "mst_enabled" bridge option (Liu)

Tobias Waldekranz (4):
  ip: bridge: add support for mst_enabled
  bridge: Remove duplicated textification macros
  bridge: vlan: Add support for setting a VLANs MSTI
  bridge: mst: Add get/set support for MST states

 bridge/Makefile       |   2 +-
 bridge/br_common.h    |   1 +
 bridge/bridge.c       |   3 +-
 bridge/mst.c          | 258 ++++++++++++++++++++++++++++++++++++++++++
 bridge/vlan.c         |  54 +++++----
 bridge/vni.c          |  15 +--
 ip/iplink_bridge.c    |  19 ++++
 man/man8/bridge.8     |  66 ++++++++++-
 man/man8/ip-link.8.in |  14 +++
 9 files changed, 398 insertions(+), 34 deletions(-)
 create mode 100644 bridge/mst.c

-- 
2.34.1


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

end of thread, other threads:[~2024-07-08 22:40 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-07-02 12:08 [PATCH v3 iproute2 0/4] Multiple Spanning Tree (MST) Support Tobias Waldekranz
2024-07-02 12:08 ` [PATCH v3 iproute2 1/4] ip: bridge: add support for mst_enabled Tobias Waldekranz
2024-07-02 12:08 ` [PATCH v3 iproute2 2/4] bridge: Remove duplicated textification macros Tobias Waldekranz
2024-07-02 12:08 ` [PATCH v3 iproute2 3/4] bridge: vlan: Add support for setting a VLANs MSTI Tobias Waldekranz
2024-07-02 12:08 ` [PATCH v3 iproute2 4/4] bridge: mst: Add get/set support for MST states Tobias Waldekranz
2024-07-05 17:31 ` [PATCH v3 iproute2 0/4] Multiple Spanning Tree (MST) Support patchwork-bot+netdevbpf
2024-07-06  0:53   ` David Ahern
2024-07-06  3:49     ` Stephen Hemminger
2024-07-06 15:26       ` David Ahern
2024-07-06 19:56         ` Stephen Hemminger
2024-07-07 16:16           ` David Ahern
2024-07-07 21:16             ` Stephen Hemminger
2024-07-08 22:40 ` 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).