swh:1:snp:173f8deb0c56c557784b4fd217e7608ac6197844
Raw File
Tip revision: 9f9499ae8e6415cefc4fe0a96ad0e27864353c89 authored by Linus Torvalds on 14 December 2015, 01:42:58 UTC
Linux 4.4-rc5
Tip revision: 9f9499a
tc_connmark.h
#ifndef __NET_TC_CONNMARK_H
#define __NET_TC_CONNMARK_H

#include <net/act_api.h>

struct tcf_connmark_info {
	struct tcf_common common;
	struct net *net;
	u16 zone;
};

#define to_connmark(a) \
	container_of(a->priv, struct tcf_connmark_info, common)

#endif /* __NET_TC_CONNMARK_H */
back to top