net: sched: remove redundant 'rtnl_held' argument
authorVlad Buslov <vladbu@nvidia.com>
Fri, 27 Nov 2020 15:12:05 +0000 (17:12 +0200)
committerJakub Kicinski <kuba@kernel.org>
Tue, 1 Dec 2020 19:24:56 +0000 (11:24 -0800)
commit0fca55ed988a694f5896f36de2a8f18715a78279
tree0f303bc1548cf5c875302ba429b69bb68c47f3b8
parentcb7fb043e69a109057fa94510ff5d5602207d548
net: sched: remove redundant 'rtnl_held' argument

Functions tfilter_notify_chain() and tcf_get_next_proto() are always called
with rtnl lock held in current implementation. Moreover, attempting to call
them without rtnl lock would cause a warning down the call chain in
function __tcf_get_next_proto() that requires the lock to be held by
callers. Remove the 'rtnl_held' argument in order to simplify the code and
make rtnl lock requirement explicit.

Signed-off-by: Vlad Buslov <vladbu@nvidia.com>
Link: https://lore.kernel.org/r/20201127151205.23492-1-vladbu@nvidia.com
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
include/net/pkt_cls.h
net/sched/cls_api.c
net/sched/sch_api.c