Hi, This RFC patchset adds support for offloading tc ingress rules applied to linux bonds. The premise of these patches is that if a rule is applied to a bond port then the rule should be applied to each slave of the bond.
The linux bond itself registers a cb for offloading tc rules. Potential slave netdevs on offload devices can then register with the bond for a further callback - this code is basically the same as registering for an egress dev offload in TC. Then when a rule is offloaded to the bond, it can be relayed to each netdev that has registered with the bond code and which is a slave of the given bond. To prevent sync issues between the kernel and offload device, the linux bond driver is affectively locked when it has offloaded rules. i.e no new ports can be enslaved and no slaves can be released until the offload rules are removed. Similarly, if a port on a bond is deleted, the bond is destroyed, forcing a flush of all offloaded rules. Also included in the RFC are changes to the NFP driver to utilise the new code by registering NFP port representors for bond offload rules and modifying cookie handling to allow the relaying of a rule to multiple ports. Thanks, John John Hurley (6): drivers: net: bonding: add tc offload infastructure to bond driver: net: bonding: allow registration of tc offload callbacks in bond drivers: net: bonding: restrict bond mods when rules are offloaded nfp: add ndo_set_mac_address for representors nfp: register repr ports for bond offloads nfp: support offloading multiple rules with same cookie drivers/net/bonding/bond_main.c | 277 ++++++++++++++++++++- drivers/net/ethernet/netronome/nfp/flower/main.c | 24 +- drivers/net/ethernet/netronome/nfp/flower/main.h | 10 +- .../net/ethernet/netronome/nfp/flower/metadata.c | 20 +- .../net/ethernet/netronome/nfp/flower/offload.c | 33 ++- drivers/net/ethernet/netronome/nfp/nfp_net_repr.c | 1 + include/net/bonding.h | 9 + 7 files changed, 351 insertions(+), 23 deletions(-) -- 2.7.4