Skip to content

Commit

Permalink
net/sched: cls_flower: Provide a filter to replace/destroy hardware f…
Browse files Browse the repository at this point in the history
…ilter functions

Instead of providing many arguments to fl_hw_{replace/destroy}_filter
functions, just provide cls_fl_filter struct that includes all the relevant
args.

This patches doesn't add any new functionality.

Signed-off-by: Hadar Hen Zion <hadarh@mellanox.com>
Acked-by: Jiri Pirko <jiri@mellanox.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
Hadar Hen Zion authored and David S. Miller committed Dec 2, 2016
1 parent 7968521 commit 3036dab
Showing 1 changed file with 11 additions and 16 deletions.
27 changes: 11 additions & 16 deletions net/sched/cls_flower.c
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ static void fl_destroy_filter(struct rcu_head *head)
kfree(f);
}

static void fl_hw_destroy_filter(struct tcf_proto *tp, unsigned long cookie)
static void fl_hw_destroy_filter(struct tcf_proto *tp, struct cls_fl_filter *f)
{
struct net_device *dev = tp->q->dev_queue->dev;
struct tc_cls_flower_offload offload = {0};
Expand All @@ -211,7 +211,7 @@ static void fl_hw_destroy_filter(struct tcf_proto *tp, unsigned long cookie)
return;

offload.command = TC_CLSFLOWER_DESTROY;
offload.cookie = cookie;
offload.cookie = (unsigned long)f;

tc.type = TC_SETUP_CLSFLOWER;
tc.cls_flower = &offload;
Expand All @@ -222,32 +222,30 @@ static void fl_hw_destroy_filter(struct tcf_proto *tp, unsigned long cookie)
static int fl_hw_replace_filter(struct tcf_proto *tp,
struct flow_dissector *dissector,
struct fl_flow_key *mask,
struct fl_flow_key *key,
struct tcf_exts *actions,
unsigned long cookie, u32 flags)
struct cls_fl_filter *f)
{
struct net_device *dev = tp->q->dev_queue->dev;
struct tc_cls_flower_offload offload = {0};
struct tc_to_netdev tc;
int err;

if (!tc_can_offload(dev, tp))
return tc_skip_sw(flags) ? -EINVAL : 0;
return tc_skip_sw(f->flags) ? -EINVAL : 0;

offload.command = TC_CLSFLOWER_REPLACE;
offload.cookie = cookie;
offload.cookie = (unsigned long)f;
offload.dissector = dissector;
offload.mask = mask;
offload.key = key;
offload.exts = actions;
offload.key = &f->key;
offload.exts = &f->exts;

tc.type = TC_SETUP_CLSFLOWER;
tc.cls_flower = &offload;

err = dev->netdev_ops->ndo_setup_tc(dev, tp->q->handle, tp->protocol,
&tc);

if (tc_skip_sw(flags))
if (tc_skip_sw(f->flags))
return err;

return 0;
Expand Down Expand Up @@ -276,7 +274,7 @@ static void __fl_delete(struct tcf_proto *tp, struct cls_fl_filter *f)
{
list_del_rcu(&f->list);
if (!tc_skip_hw(f->flags))
fl_hw_destroy_filter(tp, (unsigned long)f);
fl_hw_destroy_filter(tp, f);
tcf_unbind_filter(tp, &f->res);
call_rcu(&f->rcu, fl_destroy_filter);
}
Expand Down Expand Up @@ -748,10 +746,7 @@ static int fl_change(struct net *net, struct sk_buff *in_skb,
err = fl_hw_replace_filter(tp,
&head->dissector,
&mask.key,
&fnew->key,
&fnew->exts,
(unsigned long)fnew,
fnew->flags);
fnew);
if (err)
goto errout;
}
Expand All @@ -760,7 +755,7 @@ static int fl_change(struct net *net, struct sk_buff *in_skb,
rhashtable_remove_fast(&head->ht, &fold->ht_node,
head->ht_params);
if (!tc_skip_hw(fold->flags))
fl_hw_destroy_filter(tp, (unsigned long)fold);
fl_hw_destroy_filter(tp, fold);
}

*arg = (unsigned long) fnew;
Expand Down

0 comments on commit 3036dab

Please sign in to comment.