aboutsummaryrefslogtreecommitdiffstats
path: root/net/sched/cls_route.c
diff options
context:
space:
mode:
authorZhengchao Shao <shaozhengchao@huawei.com>2022-09-27 20:48:55 +0800
committerDavid S. Miller <davem@davemloft.net>2022-10-02 16:07:17 +0100
commitcc9039a1349425516eca369183c5a8d2f139cb1b (patch)
tree63a87fa2a51b9e7b6cc77581c865a7f37927f679 /net/sched/cls_route.c
parentnet: sched: cls_api: introduce tc_cls_bind_class() helper (diff)
downloadlinux-dev-cc9039a1349425516eca369183c5a8d2f139cb1b.tar.xz
linux-dev-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_route.c')
-rw-r--r--net/sched/cls_route.c7
1 files changed, 1 insertions, 6 deletions
diff --git a/net/sched/cls_route.c b/net/sched/cls_route.c
index 17bb04af2fa8..9e43b929d4ca 100644
--- a/net/sched/cls_route.c
+++ b/net/sched/cls_route.c
@@ -649,12 +649,7 @@ static void route4_bind_class(void *fh, u32 classid, unsigned long cl, void *q,
{
struct route4_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_route4_ops __read_mostly = {