Release 4.12 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 | 44 | 97.78% | 1 | 50.00% |
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 | 44 | 97.78% | 1 | 50.00% |
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 | 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 | 68 | 42.24% | 1 | 8.33% |
Yotam Gigi | 44 | 27.33% | 1 | 8.33% |
Jamal Hadi Salim | 24 | 14.91% | 1 | 8.33% |
David S. Miller | 12 | 7.45% | 1 | 8.33% |
Stephen Hemminger | 4 | 2.48% | 1 | 8.33% |
Shmulik Ladkani | 4 | 2.48% | 2 | 16.67% |
Américo Wang | 3 | 1.86% | 3 | 25.00% |
Eric Dumazet | 1 | 0.62% | 1 | 8.33% |
Thomas Graf | 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.