aboutsummaryrefslogtreecommitdiffstats
path: root/include/net/pkt_cls.h
diff options
context:
space:
mode:
authorJiri Pirko <jiri@mellanox.com>2017-08-04 14:29:01 +0200
committerDavid S. Miller <davem@davemloft.net>2017-08-04 11:21:23 -0700
commitaf089e701adfb5898fee00a56ea4bb421edc308d (patch)
tree9883486ceadce4bd69c2b23fb866251000079559 /include/net/pkt_cls.h
parentnet: sched: remove redundant helpers tcf_exts_is_predicative and tcf_exts_is_available (diff)
downloadlinux-dev-af089e701adfb5898fee00a56ea4bb421edc308d.tar.xz
linux-dev-af089e701adfb5898fee00a56ea4bb421edc308d.zip
net: sched: fix return value of tcf_exts_exec
Return the defined TC_ACT_OK instead of 0. Signed-off-by: Jiri Pirko <jiri@mellanox.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to '')
-rw-r--r--include/net/pkt_cls.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/net/pkt_cls.h b/include/net/pkt_cls.h
index 817badf733b5..61ce521688b2 100644
--- a/include/net/pkt_cls.h
+++ b/include/net/pkt_cls.h
@@ -182,7 +182,7 @@ static inline bool tcf_exts_has_one_action(struct tcf_exts *exts)
* @exts: tc filter extensions handle
* @res: desired result
*
- * Executes all configured extensions. Returns 0 on a normal execution,
+ * Executes all configured extensions. Returns TC_ACT_OK on a normal execution,
* a negative number if the filter must be considered unmatched or
* a positive action code (TC_ACT_*) which must be returned to the
* underlying layer.
@@ -196,7 +196,7 @@ tcf_exts_exec(struct sk_buff *skb, struct tcf_exts *exts,
return tcf_action_exec(skb, exts->actions, exts->nr_actions,
res);
#endif
- return 0;
+ return TC_ACT_OK;
}
int tcf_exts_validate(struct net *net, struct tcf_proto *tp,