diff options
author | Zhengchao Shao <shaozhengchao@huawei.com> | 2022-09-27 14:48:55 +0200 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2022-10-02 17:07:17 +0200 |
commit | cc9039a1349425516eca369183c5a8d2f139cb1b (patch) | |
tree | 63a87fa2a51b9e7b6cc77581c865a7f37927f679 /net/sched/cls_fw.c | |
parent | net: sched: cls_api: introduce tc_cls_bind_class() helper (diff) | |
download | linux-cc9039a1349425516eca369183c5a8d2f139cb1b.tar.xz linux-cc9039a1349425516eca369183c5a8d2f139cb1b.zip |
net: sched: use tc_cls_bind_class() in filter
Use tc_cls_bind_class() in filter.
Signed-off-by: Zhengchao Shao <shaozhengchao@huawei.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 | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/net/sched/cls_fw.c b/net/sched/cls_fw.c index fa66191574a4..a32351da968c 100644 --- a/net/sched/cls_fw.c +++ b/net/sched/cls_fw.c @@ -416,12 +416,7 @@ static void fw_bind_class(void *fh, u32 classid, unsigned long cl, void *q, { struct fw_filter *f = fh; - if (f && f->res.classid == classid) { - if (cl) - __tcf_bind_filter(q, &f->res, base); - else - __tcf_unbind_filter(q, &f->res); - } + tc_cls_bind_class(classid, cl, q, &f->res, base); } static struct tcf_proto_ops cls_fw_ops __read_mostly = { |