diff options
author | Jiri Pirko <jiri@mellanox.com> | 2017-08-09 14:30:32 +0200 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2017-08-11 13:47:01 -0700 |
commit | 7690f2a51d8afe51ac97e7fae66b081f192a7158 (patch) | |
tree | 8b019c06efa7371566fc5c96bbd1cfbdd4230dbe /include | |
parent | 861932ecc36063196c80ca3e240502b0f6d0e977 (diff) | |
download | linux-7690f2a51d8afe51ac97e7fae66b081f192a7158.tar.bz2 |
net: sched: propagate classid down to offload drivers
Drivers need classid to decide they support this specific qdisc+class
or not. So propagate it down via the tc_cls_common_offload struct.
Signed-off-by: Jiri Pirko <jiri@mellanox.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include')
-rw-r--r-- | include/net/pkt_cls.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/net/pkt_cls.h b/include/net/pkt_cls.h index 0f78e6560b2d..1f1de20e584f 100644 --- a/include/net/pkt_cls.h +++ b/include/net/pkt_cls.h @@ -410,6 +410,7 @@ struct tc_cls_common_offload { u32 chain_index; __be16 protocol; u32 prio; + u32 classid; }; static inline void @@ -420,6 +421,7 @@ tc_cls_common_offload_init(struct tc_cls_common_offload *cls_common, cls_common->chain_index = tp->chain->index; cls_common->protocol = tp->protocol; cls_common->prio = tp->prio; + cls_common->classid = tp->classid; } struct tc_cls_u32_knode { |