tc_mirred.h 720 字节
Newer Older
L
Linus Torvalds 已提交
1 2 3 4
#ifndef __NET_TC_MIR_H
#define __NET_TC_MIR_H

#include <net/act_api.h>
5
#include <linux/tc_act/tc_mirred.h>
L
Linus Torvalds 已提交
6

7 8 9 10 11
struct tcf_mirred {
	struct tcf_common	common;
	int			tcfm_eaction;
	int			tcfm_ifindex;
	int			tcfm_ok_push;
12
	struct net_device __rcu	*tcfm_dev;
13
	struct list_head	tcfm_list;
L
Linus Torvalds 已提交
14
};
15 16
#define to_mirred(a) \
	container_of(a->priv, struct tcf_mirred, common)
L
Linus Torvalds 已提交
17

18 19 20 21 22 23 24 25 26 27 28 29 30 31
static inline bool is_tcf_mirred_redirect(const struct tc_action *a)
{
#ifdef CONFIG_NET_CLS_ACT
	if (a->ops && a->ops->type == TCA_ACT_MIRRED)
		return to_mirred(a)->tcfm_eaction == TCA_EGRESS_REDIR;
#endif
	return false;
}

static inline int tcf_mirred_ifindex(const struct tc_action *a)
{
	return to_mirred(a)->tcfm_ifindex;
}

32
#endif /* __NET_TC_MIR_H */