Release 4.10 include/net/tc_act/tc_mirred.h
#ifndef __NET_TC_MIR_H
#define __NET_TC_MIR_H
#include <net/act_api.h>
#include <linux/tc_act/tc_mirred.h>
struct tcf_mirred {
struct tc_action common;
int tcfm_eaction;
int tcfm_ifindex;
bool tcfm_mac_header_xmit;
struct net_device __rcu *tcfm_dev;
struct list_head tcfm_list;
};
#define to_mirred(a) ((struct tcf_mirred *)a)
static inline bool is_tcf_mirred_egress_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;
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp |
sridhar samudrala | sridhar samudrala | 44 | 97.78% | 1 | 50.00% |
shmulik ladkani | shmulik ladkani | 1 | 2.22% | 1 | 50.00% |
| Total | 45 | 100.00% | 2 | 100.00% |
static inline bool is_tcf_mirred_egress_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;
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp |
yotam gigi | yotam gigi | 44 | 97.78% | 1 | 50.00% |
shmulik ladkani | shmulik ladkani | 1 | 2.22% | 1 | 50.00% |
| Total | 45 | 100.00% | 2 | 100.00% |
static inline int tcf_mirred_ifindex(const struct tc_action *a)
{
return to_mirred(a)->tcfm_ifindex;
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp |
sridhar samudrala | sridhar samudrala | 21 | 100.00% | 1 | 100.00% |
| Total | 21 | 100.00% | 1 | 100.00% |
#endif /* __NET_TC_MIR_H */
Overall Contributors
| Person | Tokens | Prop | Commits | CommitProp |
sridhar samudrala | sridhar samudrala | 68 | 42.24% | 1 | 8.33% |
yotam gigi | yotam gigi | 44 | 27.33% | 1 | 8.33% |
jamal hadi salim | jamal hadi salim | 24 | 14.91% | 1 | 8.33% |
david s. miller | david s. miller | 12 | 7.45% | 1 | 8.33% |
stephen hemminger | stephen hemminger | 4 | 2.48% | 1 | 8.33% |
shmulik ladkani | shmulik ladkani | 4 | 2.48% | 2 | 16.67% |
americo wang | americo wang | 3 | 1.86% | 3 | 25.00% |
thomas graf | thomas graf | 1 | 0.62% | 1 | 8.33% |
eric dumazet | eric dumazet | 1 | 0.62% | 1 | 8.33% |
| Total | 161 | 100.00% | 12 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.