aboutsummaryrefslogtreecommitdiffstats
path: root/include/net/tc_act/tc_connmark.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/net/tc_act/tc_connmark.h')
-rw-r--r--include/net/tc_act/tc_connmark.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/include/net/tc_act/tc_connmark.h b/include/net/tc_act/tc_connmark.h
new file mode 100644
index 000000000000..5c1104c2e24f
--- /dev/null
+++ b/include/net/tc_act/tc_connmark.h
@@ -0,0 +1,14 @@
+#ifndef __NET_TC_CONNMARK_H
+#define __NET_TC_CONNMARK_H
+
+#include <net/act_api.h>
+
+struct tcf_connmark_info {
+ struct tcf_common common;
+ u16 zone;
+};
+
+#define to_connmark(a) \
+ container_of(a->priv, struct tcf_connmark_info, common)
+
+#endif /* __NET_TC_CONNMARK_H */