mbox series

[net-next,0/6] Mirroring for Ocelot switches

Message ID 20220316204144.2679277-1-vladimir.oltean@nxp.com (mailing list archive)
Headers show
Series Mirroring for Ocelot switches | expand

Message

Vladimir Oltean March 16, 2022, 8:41 p.m. UTC
This series adds support for tc-matchall (port-based) and tc-flower
(flow-based) offloading of the tc-mirred action. Support has been added
for both the ocelot switchdev driver and felix DSA driver.

Vladimir Oltean (6):
  net: mscc: ocelot: refactor policer work out of
    ocelot_setup_tc_cls_matchall
  net: mscc: ocelot: add port mirroring support using tc-matchall
  net: mscc: ocelot: establish functions for handling VCAP aux resources
  net: mscc: ocelot: offload per-flow mirroring using tc-mirred and VCAP
    IS2
  net: dsa: pass extack to dsa_switch_ops :: port_mirror_add()
  net: dsa: felix: add port mirroring support

 drivers/net/dsa/b53/b53_common.c          |   3 +-
 drivers/net/dsa/b53/b53_priv.h            |   3 +-
 drivers/net/dsa/microchip/ksz8795.c       |   2 +-
 drivers/net/dsa/microchip/ksz9477.c       |   2 +-
 drivers/net/dsa/mt7530.c                  |   2 +-
 drivers/net/dsa/mv88e6xxx/chip.c          |   3 +-
 drivers/net/dsa/ocelot/felix.c            |  20 +++
 drivers/net/dsa/qca8k.c                   |   2 +-
 drivers/net/dsa/sja1105/sja1105_main.c    |   2 +-
 drivers/net/ethernet/mscc/ocelot.c        |  76 +++++++++
 drivers/net/ethernet/mscc/ocelot.h        |   7 +-
 drivers/net/ethernet/mscc/ocelot_flower.c |  21 +++
 drivers/net/ethernet/mscc/ocelot_net.c    | 183 +++++++++++++++++-----
 drivers/net/ethernet/mscc/ocelot_vcap.c   |  53 +++++--
 include/net/dsa.h                         |   2 +-
 include/soc/mscc/ocelot.h                 |   9 ++
 include/soc/mscc/ocelot_vcap.h            |   2 +
 net/dsa/slave.c                           |   3 +-
 18 files changed, 333 insertions(+), 62 deletions(-)

Comments

patchwork-bot+netdevbpf@kernel.org March 18, 2022, 1 a.m. UTC | #1
Hello:

This series was applied to netdev/net-next.git (master)
by Jakub Kicinski <kuba@kernel.org>:

On Wed, 16 Mar 2022 22:41:38 +0200 you wrote:
> This series adds support for tc-matchall (port-based) and tc-flower
> (flow-based) offloading of the tc-mirred action. Support has been added
> for both the ocelot switchdev driver and felix DSA driver.
> 
> Vladimir Oltean (6):
>   net: mscc: ocelot: refactor policer work out of
>     ocelot_setup_tc_cls_matchall
>   net: mscc: ocelot: add port mirroring support using tc-matchall
>   net: mscc: ocelot: establish functions for handling VCAP aux resources
>   net: mscc: ocelot: offload per-flow mirroring using tc-mirred and VCAP
>     IS2
>   net: dsa: pass extack to dsa_switch_ops :: port_mirror_add()
>   net: dsa: felix: add port mirroring support
> 
> [...]

Here is the summary with links:
  - [net-next,1/6] net: mscc: ocelot: refactor policer work out of ocelot_setup_tc_cls_matchall
    https://git.kernel.org/netdev/net-next/c/4fa72108029c
  - [net-next,2/6] net: mscc: ocelot: add port mirroring support using tc-matchall
    https://git.kernel.org/netdev/net-next/c/ccb6ed426f10
  - [net-next,3/6] net: mscc: ocelot: establish functions for handling VCAP aux resources
    https://git.kernel.org/netdev/net-next/c/c3d427eac90f
  - [net-next,4/6] net: mscc: ocelot: offload per-flow mirroring using tc-mirred and VCAP IS2
    https://git.kernel.org/netdev/net-next/c/f2a0e216bee5
  - [net-next,5/6] net: dsa: pass extack to dsa_switch_ops :: port_mirror_add()
    https://git.kernel.org/netdev/net-next/c/0148bb50b8fd
  - [net-next,6/6] net: dsa: felix: add port mirroring support
    https://git.kernel.org/netdev/net-next/c/5e497497681e

You are awesome, thank you!