mbox series

[net-next,0/5] cxgb4: add support for ethtool n-tuple filters

Message ID 20200619142139.27982-1-vishal@chelsio.com
Headers show
Series cxgb4: add support for ethtool n-tuple filters | expand

Message

Vishal Kulkarni June 19, 2020, 2:21 p.m. UTC
Patch 1: Adds data structure to maintain list of filters and handles init/dinit
	 of the same.

Patch 2: Handles addition of filters via ETHTOOL_SRXCLSRLINS.

Patch 3: Handles deletion of filtes via ETHTOOL_SRXCLSRLDEL.

Patch 4: Handles viewing of added filters.

Patch 5: Adds FLOW_ACTION_QUEUE support.

Vishal Kulkarni (5):
  cxgb4: add skeleton for ethtool n-tuple filters
  cxgb4: add ethtool n-tuple filter insertion
  cxgb4: add ethtool n-tuple filter deletion
  cxgb4: add support to fetch ethtool n-tuple filters
  cxgb4: add action to steer flows to specific Rxq

 drivers/net/ethernet/chelsio/cxgb4/cxgb4.h    |  15 +
 .../ethernet/chelsio/cxgb4/cxgb4_ethtool.c    | 335 ++++++++++++++++++
 .../net/ethernet/chelsio/cxgb4/cxgb4_filter.c |   5 +
 .../net/ethernet/chelsio/cxgb4/cxgb4_filter.h |   3 +
 .../net/ethernet/chelsio/cxgb4/cxgb4_main.c   |  22 +-
 .../ethernet/chelsio/cxgb4/cxgb4_tc_flower.c  | 131 ++++---
 .../ethernet/chelsio/cxgb4/cxgb4_tc_flower.h  |   9 +
 .../net/ethernet/chelsio/cxgb4/cxgb4_uld.h    |   2 +
 drivers/net/ethernet/chelsio/cxgb4/t4_regs.h  |   4 +
 9 files changed, 463 insertions(+), 63 deletions(-)

Comments

David Miller June 19, 2020, 8:17 p.m. UTC | #1
From: Vishal Kulkarni <vishal@chelsio.com>
Date: Fri, 19 Jun 2020 19:51:34 +0530

> Patch 1: Adds data structure to maintain list of filters and handles init/dinit
> 	 of the same.
> 
> Patch 2: Handles addition of filters via ETHTOOL_SRXCLSRLINS.
> 
> Patch 3: Handles deletion of filtes via ETHTOOL_SRXCLSRLDEL.
> 
> Patch 4: Handles viewing of added filters.
> 
> Patch 5: Adds FLOW_ACTION_QUEUE support.

Series applied, thank you.