net/flower: Introduce hardware offload support
authorAmir Vadai <[email protected]>
Tue, 8 Mar 2016 10:42:29 +0000 (12:42 +0200)
committerDavid S. Miller <[email protected]>
Thu, 10 Mar 2016 21:24:02 +0000 (16:24 -0500)
commit5b33f48842fa1e13e9c0ea8cc59c1d0df19042db
tree51aafa151a70b38dfd500b261d8e32bd4045332a
parent10f79037b4ac32e8929d73f31f908cfa061e29aa
net/flower: Introduce hardware offload support

This patch is based on a patch made by John Fastabend.
It adds support for offloading cls_flower.
when NETIF_F_HW_TC is on:
  flags = 0       => Rule will be processed twice - by hardware, and if
                     still relevant, by software.
  flags = SKIP_HW => Rull will be processed by software only

If hardware fail/not capabale to apply the rule, operation will NOT
fail. Filter will be processed by SW only.

Acked-by: Jiri Pirko <[email protected]>
Suggested-by: John Fastabend <[email protected]>
Signed-off-by: Amir Vadai <[email protected]>
Signed-off-by: David S. Miller <[email protected]>
include/linux/netdevice.h
include/net/pkt_cls.h
include/uapi/linux/pkt_cls.h
net/sched/cls_flower.c