M7350/kernel/include/net/tc_act/tc_defact.h

15 lines
276 B
C
Raw Normal View History

2024-09-09 08:52:07 +00:00
#ifndef __NET_TC_DEF_H
#define __NET_TC_DEF_H
#include <net/act_api.h>
struct tcf_defact {
struct tcf_common common;
u32 tcfd_datalen;
void *tcfd_defdata;
};
2024-09-09 08:57:42 +00:00
#define to_defact(a) \
container_of(a->priv, struct tcf_defact, common)
2024-09-09 08:52:07 +00:00
#endif /* __NET_TC_DEF_H */