blob: 02caa406611b496e6e830c9fb85b467c55875732 [file] [log] [blame]
Felix Fietkau22a5dc02015-01-18 16:35:14 -05001#ifndef __NET_TC_CONNMARK_H
2#define __NET_TC_CONNMARK_H
3
4#include <net/act_api.h>
5
6struct tcf_connmark_info {
7 struct tcf_common common;
Eric W. Biedermana4ffe312015-09-18 14:33:03 -05008 struct net *net;
Felix Fietkau22a5dc02015-01-18 16:35:14 -05009 u16 zone;
10};
11
12#define to_connmark(a) \
13 container_of(a->priv, struct tcf_connmark_info, common)
14
15#endif /* __NET_TC_CONNMARK_H */