blob: 1f4cb477bb5d61562e5c9886b2800eb8659f4114 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001/* SPDX-License-Identifier: GPL-2.0 */
Felix Fietkau22a5dc02015-01-18 16:35:14 -05002#ifndef __NET_TC_CONNMARK_H
3#define __NET_TC_CONNMARK_H
4
5#include <net/act_api.h>
6
7struct tcf_connmark_info {
WANG Congec0595c2016-07-25 16:09:42 -07008 struct tc_action common;
Eric W. Biedermana4ffe312015-09-18 14:33:03 -05009 struct net *net;
Felix Fietkau22a5dc02015-01-18 16:35:14 -050010 u16 zone;
11};
12
WANG Conga85a9702016-07-25 16:09:41 -070013#define to_connmark(a) ((struct tcf_connmark_info *)a)
Felix Fietkau22a5dc02015-01-18 16:35:14 -050014
15#endif /* __NET_TC_CONNMARK_H */