1
0
mirror of https://github.com/physwizz/a155-U-u1.git synced 2025-07-03 17:37:33 +00:00
Files
a155-U-u1/kernel-5.10/include/net/tc_act/tc_connmark.h
physwizz 99537be4e2 first
2024-03-11 06:53:12 +11:00

16 lines
297 B
C

/* SPDX-License-Identifier: GPL-2.0 */
#ifndef __NET_TC_CONNMARK_H
#define __NET_TC_CONNMARK_H
#include <net/act_api.h>
struct tcf_connmark_info {
struct tc_action common;
struct net *net;
u16 zone;
};
#define to_connmark(a) ((struct tcf_connmark_info *)a)
#endif /* __NET_TC_CONNMARK_H */