Commit b144e7ec authored by Cong Wang's avatar Cong Wang Committed by David S. Miller

net_sched: remove unused parameter for tcf_action_delete()

Fixes: 16af6067 ("net: sched: implement reference counted action release")
Cc: Jiri Pirko <jiri@mellanox.com>
Cc: Vlad Buslov <vladbu@mellanox.com>
Signed-off-by: default avatarCong Wang <xiyou.wangcong@gmail.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 97a3f84f
...@@ -1177,8 +1177,7 @@ static int tca_action_flush(struct net *net, struct nlattr *nla, ...@@ -1177,8 +1177,7 @@ static int tca_action_flush(struct net *net, struct nlattr *nla,
return err; return err;
} }
static int tcf_action_delete(struct net *net, struct tc_action *actions[], static int tcf_action_delete(struct net *net, struct tc_action *actions[])
struct netlink_ext_ack *extack)
{ {
int i; int i;
...@@ -1227,7 +1226,7 @@ tcf_del_notify(struct net *net, struct nlmsghdr *n, struct tc_action *actions[], ...@@ -1227,7 +1226,7 @@ tcf_del_notify(struct net *net, struct nlmsghdr *n, struct tc_action *actions[],
} }
/* now do the delete */ /* now do the delete */
ret = tcf_action_delete(net, actions, extack); ret = tcf_action_delete(net, actions);
if (ret < 0) { if (ret < 0) {
NL_SET_ERR_MSG(extack, "Failed to delete TC action"); NL_SET_ERR_MSG(extack, "Failed to delete TC action");
kfree_skb(skb); kfree_skb(skb);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment