diff options
Diffstat (limited to 'include/net/tc_act/tc_connmark.h')
| -rw-r--r-- | include/net/tc_act/tc_connmark.h | 5 | 
1 files changed, 2 insertions, 3 deletions
| diff --git a/include/net/tc_act/tc_connmark.h b/include/net/tc_act/tc_connmark.h index 02caa406611b..59b515d32bb4 100644 --- a/include/net/tc_act/tc_connmark.h +++ b/include/net/tc_act/tc_connmark.h @@ -4,12 +4,11 @@  #include <net/act_api.h>  struct tcf_connmark_info { -	struct tcf_common common; +	struct tc_action common;  	struct net *net;  	u16 zone;  }; -#define to_connmark(a) \ -	container_of(a->priv, struct tcf_connmark_info, common) +#define to_connmark(a) ((struct tcf_connmark_info *)a)  #endif /* __NET_TC_CONNMARK_H */ |