diff options
author | Patrick McHardy <kaber@trash.net> | 2008-01-23 20:33:13 -0800 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2008-01-28 15:11:17 -0800 |
commit | ab27cfb85c5778400740ad0c401bde65616774eb (patch) | |
tree | 0ba260a2a4ee2e80b75a188192f345e7bd079cfd /include/net | |
parent | c96c9471dd86ba24dc3826bf5688b99d3caf3ace (diff) | |
download | kernel_goldelico_gta04-ab27cfb85c5778400740ad0c401bde65616774eb.zip kernel_goldelico_gta04-ab27cfb85c5778400740ad0c401bde65616774eb.tar.gz kernel_goldelico_gta04-ab27cfb85c5778400740ad0c401bde65616774eb.tar.bz2 |
[NET_SCHED]: act_api: use PTR_ERR in tcf_action_init/tcf_action_get
Signed-off-by: Patrick McHardy <kaber@trash.net>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/net')
-rw-r--r-- | include/net/act_api.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/net/act_api.h b/include/net/act_api.h index c5ac61a..565eed8 100644 --- a/include/net/act_api.h +++ b/include/net/act_api.h @@ -114,8 +114,8 @@ extern int tcf_register_action(struct tc_action_ops *a); extern int tcf_unregister_action(struct tc_action_ops *a); extern void tcf_action_destroy(struct tc_action *a, int bind); extern int tcf_action_exec(struct sk_buff *skb, struct tc_action *a, struct tcf_result *res); -extern struct tc_action *tcf_action_init(struct nlattr *nla, struct nlattr *est, char *n, int ovr, int bind, int *err); -extern struct tc_action *tcf_action_init_1(struct nlattr *nla, struct nlattr *est, char *n, int ovr, int bind, int *err); +extern struct tc_action *tcf_action_init(struct nlattr *nla, struct nlattr *est, char *n, int ovr, int bind); +extern struct tc_action *tcf_action_init_1(struct nlattr *nla, struct nlattr *est, char *n, int ovr, int bind); extern int tcf_action_dump(struct sk_buff *skb, struct tc_action *a, int, int); extern int tcf_action_dump_old(struct sk_buff *skb, struct tc_action *a, int, int); extern int tcf_action_dump_1(struct sk_buff *skb, struct tc_action *a, int, int); |