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

18 lines
347 B
C
Raw Normal View History

2024-09-09 08:52:07 +00:00
#ifndef __NET_TC_MIR_H
#define __NET_TC_MIR_H
#include <net/act_api.h>
struct tcf_mirred {
struct tcf_common common;
int tcfm_eaction;
int tcfm_ifindex;
int tcfm_ok_push;
struct net_device *tcfm_dev;
struct list_head tcfm_list;
};
2024-09-09 08:57:42 +00:00
#define to_mirred(a) \
container_of(a->priv, struct tcf_mirred, common)
2024-09-09 08:52:07 +00:00
#endif /* __NET_TC_MIR_H */