]> git.proxmox.com Git - mirror_ubuntu-focal-kernel.git/commitdiff
net: sched: ingress: set 'unlocked' flag for Qdisc ops
authorVlad Buslov <vladbu@mellanox.com>
Wed, 12 Jun 2019 07:14:35 +0000 (10:14 +0300)
committerDavid S. Miller <davem@davemloft.net>
Wed, 12 Jun 2019 16:28:05 +0000 (09:28 -0700)
To remove rtnl lock dependency in tc filter update API when using ingress
Qdisc, set QDISC_CLASS_OPS_DOIT_UNLOCKED flag in ingress Qdisc_class_ops.

Ingress Qdisc ops don't require any modifications to be used without rtnl
lock on tc filter update path. Ingress implementation never changes its
q->block and only releases it when Qdisc is being destroyed. This means it
is enough for RTM_{NEWTFILTER|DELTFILTER|GETTFILTER} message handlers to
hold ingress Qdisc reference while using it without relying on rtnl lock
protection. Unlocked Qdisc ops support is already implemented in filter
update path by unlocked cls API patch set.

Signed-off-by: Vlad Buslov <vladbu@mellanox.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/sched/sch_ingress.c

index 0f65f617756bf7535d9db1f3c56a4427007052f3..d5382554e281a116545c278fc97f3fca4f01e537 100644 (file)
@@ -114,6 +114,7 @@ nla_put_failure:
 }
 
 static const struct Qdisc_class_ops ingress_class_ops = {
+       .flags          =       QDISC_CLASS_OPS_DOIT_UNLOCKED,
        .leaf           =       ingress_leaf,
        .find           =       ingress_find,
        .walk           =       ingress_walk,