diff options
author | John Fastabend <john.fastabend@gmail.com> | 2016-02-17 08:17:09 +0300 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2016-02-17 17:47:36 +0300 |
commit | a1b7c5fd7fe98f51fbbc393ee1fc4c1cdb2f0119 (patch) | |
tree | aa39ec0662d43efb9739f83877bcf92588f3bcfb /include/linux/netdevice.h | |
parent | 16e5cc647173a97e33b3e3ba81f73eb455561794 (diff) | |
download | linux-a1b7c5fd7fe98f51fbbc393ee1fc4c1cdb2f0119.tar.xz |
net: sched: add cls_u32 offload hooks for netdevs
This patch allows netdev drivers to consume cls_u32 offloads via
the ndo_setup_tc ndo op.
This works aligns with how network drivers have been doing qdisc
offloads for mqprio.
Signed-off-by: John Fastabend <john.r.fastabend@intel.com>
Acked-by: Jiri Pirko <jiri@mellanox.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/linux/netdevice.h')
-rw-r--r-- | include/linux/netdevice.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/include/linux/netdevice.h b/include/linux/netdevice.h index e396060f815f..47671ce04ac4 100644 --- a/include/linux/netdevice.h +++ b/include/linux/netdevice.h @@ -779,17 +779,21 @@ static inline bool netdev_phys_item_id_same(struct netdev_phys_item_id *a, typedef u16 (*select_queue_fallback_t)(struct net_device *dev, struct sk_buff *skb); -/* This structure holds attributes of qdisc and classifiers +/* These structures hold the attributes of qdisc and classifiers * that are being passed to the netdevice through the setup_tc op. */ enum { TC_SETUP_MQPRIO, + TC_SETUP_CLSU32, }; +struct tc_cls_u32_offload; + struct tc_to_netdev { unsigned int type; union { u8 tc; + struct tc_cls_u32_offload *cls_u32; }; }; |