tc_mirred.h 918 字节
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
#define to_mirred(a) ((struct tcf_mirred *)a)
L
Linus Torvalds 已提交
16

17 18 19 20 21 22 23 24 25
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;
}

26 27 28 29 30 31 32 33 34
static inline bool is_tcf_mirred_mirror(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_MIRROR;
#endif
	return false;
}

35 36 37 38 39
static inline int tcf_mirred_ifindex(const struct tc_action *a)
{
	return to_mirred(a)->tcfm_ifindex;
}

40
#endif /* __NET_TC_MIR_H */