diff options
author | WANG Cong <xiyou.wangcong@gmail.com> | 2014-02-12 01:07:32 (GMT) |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2014-02-13 00:23:32 (GMT) |
commit | a5b5c958ffd1610545d6b4b8290aa9c5266d10fa (patch) | |
tree | 532a87c5ae6d0c2f2f766820c051f7a5b8f7a366 /include/net | |
parent | 86062033feb8a1692f7a3d570c652f1b4a4b4b52 (diff) | |
download | linux-a5b5c958ffd1610545d6b4b8290aa9c5266d10fa.tar.xz |
net_sched: act: refactor cleanup ops
For bindcnt and refcnt etc., they are common for all actions,
not need to repeat such operations for their own, they can be unified
now. Actions just need to do its specific cleanup if needed.
Cc: Jamal Hadi Salim <jhs@mojatatu.com>
Cc: David S. Miller <davem@davemloft.net>
Signed-off-by: Cong Wang <xiyou.wangcong@gmail.com>
Signed-off-by: Jamal Hadi Salim <jhs@mojatatu.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/net')
-rw-r--r-- | include/net/act_api.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/net/act_api.h b/include/net/act_api.h index 24ae910..3d22f42 100644 --- a/include/net/act_api.h +++ b/include/net/act_api.h @@ -89,7 +89,7 @@ struct tc_action_ops { struct module *owner; int (*act)(struct sk_buff *, const struct tc_action *, struct tcf_result *); int (*dump)(struct sk_buff *, struct tc_action *, int, int); - int (*cleanup)(struct tc_action *, int bind); + void (*cleanup)(struct tc_action *, int bind); int (*lookup)(struct tc_action *, u32); int (*init)(struct net *net, struct nlattr *nla, struct nlattr *est, struct tc_action *act, int ovr, |