Message ID | 20210330145419.381355-1-ciorneiioana@gmail.com |
---|---|
Headers | show |
Series | dpaa2-switch: add STP support | expand |
Hello: This series was applied to netdev/net-next.git (refs/heads/master): On Tue, 30 Mar 2021 17:54:14 +0300 you wrote: > From: Ioana Ciornei <ioana.ciornei@nxp.com> > > This patch set adds support for STP to the dpaa2-switch. > > First of all, it fixes a bug which was determined by the improper usage > of bridge BR_STATE_* values directly in the MC ABI. > The next patches deal with creating an ACL table per port and trapping > the STP frames to the control interface by adding an entry into each > table. > The last patch configures proper learning state depending on the STP > state. > > [...] Here is the summary with links: - [net-next,1/5] dpaa2-switch: fix the translation between the bridge and dpsw STP states https://git.kernel.org/netdev/net-next/c/6aa6791d1a0f - [net-next,2/5] dpaa2-switch: create and assign an ACL table per port https://git.kernel.org/netdev/net-next/c/90f071023529 - [net-next,3/5] dpaa2-switch: keep track of the current learning state per port https://git.kernel.org/netdev/net-next/c/62734c7405b7 - [net-next,4/5] dpaa2-switch: trap STP frames to the CPU https://git.kernel.org/netdev/net-next/c/1a64ed129cce - [net-next,5/5] dpaa2-switch: setup learning state on STP state change https://git.kernel.org/netdev/net-next/c/bc96781a8959 You are awesome, thank you! -- Deet-doot-dot, I am a bot. https://korg.docs.kernel.org/patchwork/pwbot.html
From: Ioana Ciornei <ioana.ciornei@nxp.com> This patch set adds support for STP to the dpaa2-switch. First of all, it fixes a bug which was determined by the improper usage of bridge BR_STATE_* values directly in the MC ABI. The next patches deal with creating an ACL table per port and trapping the STP frames to the control interface by adding an entry into each table. The last patch configures proper learning state depending on the STP state. Ioana Ciornei (5): dpaa2-switch: fix the translation between the bridge and dpsw STP states dpaa2-switch: create and assign an ACL table per port dpaa2-switch: keep track of the current learning state per port dpaa2-switch: trap STP frames to the CPU dpaa2-switch: setup learning state on STP state change .../ethernet/freescale/dpaa2/dpaa2-switch.c | 152 ++++++++++++-- .../ethernet/freescale/dpaa2/dpaa2-switch.h | 7 + .../net/ethernet/freescale/dpaa2/dpsw-cmd.h | 75 +++++++ drivers/net/ethernet/freescale/dpaa2/dpsw.c | 190 ++++++++++++++++++ drivers/net/ethernet/freescale/dpaa2/dpsw.h | 121 +++++++++++ 5 files changed, 533 insertions(+), 12 deletions(-)