aboutsummaryrefslogtreecommitdiffstats
path: root/include/net
diff options
context:
space:
mode:
authorAmir Vadai <amir@vadai.me>2016-03-08 05:42:32 -0500
committerDavid S. Miller <davem@davemloft.net>2016-03-10 16:24:02 -0500
commit519afb1813eab066a0c9995a08861fd0af75d5ae (patch)
treec243ac1aeadbced12d88a844b88bad1cc7524091 /include/net
parent00175aec941e9c306d8a5ce930b2d91f7c04468c (diff)
net/act_skbedit: Utility functions for mark action
Enable device drivers to query the action, if and only if is a mark action and what value to use for marking. Acked-by: Jiri Pirko <jiri@mellanox.com> Signed-off-by: Amir Vadai <amir@vadai.me> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/net')
-rw-r--r--include/net/tc_act/tc_skbedit.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/include/net/tc_act/tc_skbedit.h b/include/net/tc_act/tc_skbedit.h
index 0df9a0db4a8e..b496d5ad7d42 100644
--- a/include/net/tc_act/tc_skbedit.h
+++ b/include/net/tc_act/tc_skbedit.h
@@ -20,6 +20,7 @@
20#define __NET_TC_SKBEDIT_H 20#define __NET_TC_SKBEDIT_H
21 21
22#include <net/act_api.h> 22#include <net/act_api.h>
23#include <linux/tc_act/tc_skbedit.h>
23 24
24struct tcf_skbedit { 25struct tcf_skbedit {
25 struct tcf_common common; 26 struct tcf_common common;
@@ -32,4 +33,19 @@ struct tcf_skbedit {
32#define to_skbedit(a) \ 33#define to_skbedit(a) \
33 container_of(a->priv, struct tcf_skbedit, common) 34 container_of(a->priv, struct tcf_skbedit, common)
34 35
36/* Return true iff action is mark */
37static inline bool is_tcf_skbedit_mark(const struct tc_action *a)
38{
39#ifdef CONFIG_NET_CLS_ACT
40 if (a->ops && a->ops->type == TCA_ACT_SKBEDIT)
41 return to_skbedit(a)->flags == SKBEDIT_F_MARK;
42#endif
43 return false;
44}
45
46static inline u32 tcf_skbedit_mark(const struct tc_action *a)
47{
48 return to_skbedit(a)->mark;
49}
50
35#endif /* __NET_TC_SKBEDIT_H */ 51#endif /* __NET_TC_SKBEDIT_H */