projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
97a3f84
)
net_sched: remove unused parameter for tcf_action_delete()
author
Cong Wang
<
[email protected]
>
Sun, 19 Aug 2018 19:22:07 +0000
(12:22 -0700)
committer
David S. Miller
<
[email protected]
>
Tue, 21 Aug 2018 19:45:44 +0000
(12:45 -0700)
Fixes: 16af6067392c ("net: sched: implement reference counted action release")
Cc: Jiri Pirko <
[email protected]
>
Cc: Vlad Buslov <
[email protected]
>
Signed-off-by: Cong Wang <
[email protected]
>
Signed-off-by: David S. Miller <
[email protected]
>
net/sched/act_api.c
patch
|
blob
|
history
diff --git
a/net/sched/act_api.c
b/net/sched/act_api.c
index 00bf7d2b0bdd1feb363ae157ea41b4ebd9ccb156..ba55226928a3cea545bebf27fa56d090f1325a26 100644
(file)
--- a/
net/sched/act_api.c
+++ b/
net/sched/act_api.c
@@
-1177,8
+1177,7
@@
err_out:
return err;
}
-static int tcf_action_delete(struct net *net, struct tc_action *actions[],
- struct netlink_ext_ack *extack)
+static int tcf_action_delete(struct net *net, struct tc_action *actions[])
{
int i;
@@
-1227,7
+1226,7
@@
tcf_del_notify(struct net *net, struct nlmsghdr *n, struct tc_action *actions[],
}
/* now do the delete */
- ret = tcf_action_delete(net, actions
, extack
);
+ ret = tcf_action_delete(net, actions);
if (ret < 0) {
NL_SET_ERR_MSG(extack, "Failed to delete TC action");
kfree_skb(skb);