diff options
author | Jiri Pirko <jiri@mellanox.com> | 2017-02-09 16:38:55 +0300 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2017-02-10 19:38:08 +0300 |
commit | 79112c26f14c38ddbac3b2739469e373ef424fe6 (patch) | |
tree | 1418a89412cd012c2613e9db9abc9dea783ad03f /net/sched/sch_api.c | |
parent | b4c4ebcf3ca22bf9b04fa9c6ccfbfdfe0a256d07 (diff) | |
download | linux-79112c26f14c38ddbac3b2739469e373ef424fe6.tar.xz |
sched: rename tcf_destroy to tcf_destroy_proto
This function destroys TC filter protocol, not TC filter. So name it
accordingly.
Signed-off-by: Jiri Pirko <jiri@mellanox.com>
Acked-by: Jamal Hadi Salim <jhs@mojatatu.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/sched/sch_api.c')
-rw-r--r-- | net/sched/sch_api.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/sched/sch_api.c b/net/sched/sch_api.c index ef53ede11590..f30b517f2282 100644 --- a/net/sched/sch_api.c +++ b/net/sched/sch_api.c @@ -1900,7 +1900,7 @@ reset: } EXPORT_SYMBOL(tc_classify); -bool tcf_destroy(struct tcf_proto *tp, bool force) +bool tcf_proto_destroy(struct tcf_proto *tp, bool force) { if (tp->ops->destroy(tp, force)) { module_put(tp->ops->owner); @@ -1917,7 +1917,7 @@ void tcf_destroy_chain(struct tcf_proto __rcu **fl) while ((tp = rtnl_dereference(*fl)) != NULL) { RCU_INIT_POINTER(*fl, tp->next); - tcf_destroy(tp, true); + tcf_proto_destroy(tp, true); } } EXPORT_SYMBOL(tcf_destroy_chain); |