mirror of
https://github.com/torvalds/linux.git
synced 2024-11-25 05:32:00 +00:00
net_sched: cls_basic: remove unnecessary iteration and use passed arg
Signed-off-by: Jiri Pirko <jiri@resnulli.us> Acked-by: Jamal Hadi Salim <jhs@mojatatu.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
ae0bf0402a
commit
e4386456ae
@ -113,18 +113,12 @@ static void basic_destroy(struct tcf_proto *tp)
|
|||||||
|
|
||||||
static int basic_delete(struct tcf_proto *tp, unsigned long arg)
|
static int basic_delete(struct tcf_proto *tp, unsigned long arg)
|
||||||
{
|
{
|
||||||
struct basic_head *head = rtnl_dereference(tp->root);
|
struct basic_filter *f = (struct basic_filter *) arg;
|
||||||
struct basic_filter *t, *f = (struct basic_filter *) arg;
|
|
||||||
|
|
||||||
list_for_each_entry(t, &head->flist, link)
|
list_del_rcu(&f->link);
|
||||||
if (t == f) {
|
tcf_unbind_filter(tp, &f->res);
|
||||||
list_del_rcu(&t->link);
|
call_rcu(&f->rcu, basic_delete_filter);
|
||||||
tcf_unbind_filter(tp, &t->res);
|
return 0;
|
||||||
call_rcu(&t->rcu, basic_delete_filter);
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
return -ENOENT;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static const struct nla_policy basic_policy[TCA_BASIC_MAX + 1] = {
|
static const struct nla_policy basic_policy[TCA_BASIC_MAX + 1] = {
|
||||||
|
Loading…
Reference in New Issue
Block a user