diff options
author | Jiri Pirko <jiri@mellanox.com> | 2017-10-13 14:01:03 +0200 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2017-10-16 21:00:41 +0100 |
commit | 1abf272022cf1d18469405f47b4ec49c6a3125db (patch) | |
tree | 581662b962aa5e3e4b47e2fb7f78390f9196e44b /net/sched/cls_fw.c | |
parent | 7fa9d974f3c2a016b9accb18f4ee2ed2a738585c (diff) | |
download | linux-stable-1abf272022cf1d18469405f47b4ec49c6a3125db.tar.gz linux-stable-1abf272022cf1d18469405f47b4ec49c6a3125db.tar.bz2 linux-stable-1abf272022cf1d18469405f47b4ec49c6a3125db.zip |
net: sched: tcindex, fw, flow: use tcf_block_q helper to get struct Qdisc
Use helper to get q pointer per block.
Signed-off-by: Jiri Pirko <jiri@mellanox.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/sched/cls_fw.c')
-rw-r--r-- | net/sched/cls_fw.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/net/sched/cls_fw.c b/net/sched/cls_fw.c index 941245ad07fd..aa1e1f3bd20c 100644 --- a/net/sched/cls_fw.c +++ b/net/sched/cls_fw.c @@ -28,6 +28,7 @@ #include <net/netlink.h> #include <net/act_api.h> #include <net/pkt_cls.h> +#include <net/sch_generic.h> #define HTSIZE 256 @@ -83,9 +84,11 @@ static int fw_classify(struct sk_buff *skb, const struct tcf_proto *tp, } } } else { + struct Qdisc *q = tcf_block_q(tp->chain->block); + /* Old method: classify the packet using its skb mark. */ if (id && (TC_H_MAJ(id) == 0 || - !(TC_H_MAJ(id ^ tp->q->handle)))) { + !(TC_H_MAJ(id ^ q->handle)))) { res->classid = id; res->class = 0; return 0; |