Merge branch 'cxgb4-tc-offload'
authorDavid S. Miller <davem@davemloft.net>
Thu, 22 Sep 2016 05:40:07 +0000 (01:40 -0400)
committerDavid S. Miller <davem@davemloft.net>
Thu, 22 Sep 2016 05:40:07 +0000 (01:40 -0400)
commitf9d1846f137a26d38c058c497b70babc606839be
tree130ce15004d896b5b146ecbdcc5b52a072d713f0
parentecf4ee41d25832a6ec52f8b54dfaa46c08b949d5
parentb20ff726fa8360a0508d2d79ecdee5a45d854e99
Merge branch 'cxgb4-tc-offload'

Rahul Lakkireddy says:

====================
cxgb4: add support for offloading TC u32 filters

This series of patches add support to offload TC u32 filters onto
Chelsio NICs.

Patch 1 moves current common filter code to separate files
in order to provide a common api for performing packet classification
and filtering in Chelsio NICs.

Patch 2 enables filters for normal NIC configuration and implements
common api for setting and deleting filters.

Patches 3-5 add support for TC u32 offload via ndo_setup_tc.

---
v3:

Based on review and suggestion from David Miller <davem@davemloft.net>
- Fixed all local variable declarations by placing them in longest line
  first and shortest line last order.

v2:

Based on review and suggestions from Jiri Pirko <jiri@resnulli.us>:
- Replaced macros S and U with appropriate static helper functions.
- Moved completion code for set and delete filters to respective
  functions cxgb4_set_filter() and cxgb4_del_filter().  Renamed the
  original functions to __cxgb4_set_filter() and __cxgb4_del_filter()
  in case synchronization is not required.
- Dropped debugfs patch.
- Merged code for inserting and deleting u32 filters into a single
  patch.
- Reworked and fixed bugs with traversing the actions list.
- Removed all unnecessary extra ().
====================

Signed-off-by: David S. Miller <davem@davemloft.net>