diff options
author | Cong Wang <xiyou.wangcong@gmail.com> | 2018-08-29 20:15:35 +0300 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2018-09-01 08:50:15 +0300 |
commit | f061b48c1787e6fece2190e27da6878f4f1796d0 (patch) | |
tree | 11125d848a42e2d552f66d6c2b6806ac529c06e6 /net/sched/act_police.c | |
parent | fd3c040b244b7aba6b18f7d12c87fd774b2257a8 (diff) | |
download | linux-f061b48c1787e6fece2190e27da6878f4f1796d0.tar.xz |
Revert "net: sched: act: add extack for lookup callback"
This reverts commit 331a9295de23 ("net: sched: act: add extack for lookup callback").
This extack is never used after 6 months... In fact, it can be just
set in the caller, right after ->lookup().
Cc: Alexander Aring <aring@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_police.c')
-rw-r--r-- | net/sched/act_police.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/net/sched/act_police.c b/net/sched/act_police.c index 5d8bfa878477..393c7a670300 100644 --- a/net/sched/act_police.c +++ b/net/sched/act_police.c @@ -312,8 +312,7 @@ nla_put_failure: return -1; } -static int tcf_police_search(struct net *net, struct tc_action **a, u32 index, - struct netlink_ext_ack *extack) +static int tcf_police_search(struct net *net, struct tc_action **a, u32 index) { struct tc_action_net *tn = net_generic(net, police_net_id); |