diff options
author | Cong Wang <xiyou.wangcong@gmail.com> | 2017-12-05 12:53:07 -0800 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2017-12-05 18:07:58 -0500 |
commit | 9a63b255dffd6de31fe47a80d16d26d0291d3714 (patch) | |
tree | d70a3d947f0272293c1b0f0a2542b5b508a5474f /net/sched/act_sample.c | |
parent | 8bf543810021ca8aebbec19237b68714f97f7f2c (diff) | |
download | linux-9a63b255dffd6de31fe47a80d16d26d0291d3714.tar.gz linux-9a63b255dffd6de31fe47a80d16d26d0291d3714.tar.bz2 linux-9a63b255dffd6de31fe47a80d16d26d0291d3714.zip |
net_sched: remove unused parameter from act cleanup ops
No one actually uses it.
Cc: Jiri Pirko <jiri@mellanox.com>
Cc: Jamal Hadi Salim <jhs@mojatatu.com>
Signed-off-by: Cong Wang <xiyou.wangcong@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/sched/act_sample.c')
-rw-r--r-- | net/sched/act_sample.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/sched/act_sample.c b/net/sched/act_sample.c index 9438969290a6..859a93903339 100644 --- a/net/sched/act_sample.c +++ b/net/sched/act_sample.c @@ -96,7 +96,7 @@ static int tcf_sample_init(struct net *net, struct nlattr *nla, return ret; } -static void tcf_sample_cleanup(struct tc_action *a, int bind) +static void tcf_sample_cleanup(struct tc_action *a) { struct tcf_sample *s = to_sample(a); struct psample_group *psample_group; |