Release 4.15 include/net/tc_act/tc_mirred.h
/* SPDX-License-Identifier: GPL-2.0 */
#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 net *net;
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 | 40.72% | 1 | 7.14% |
Yotam Gigi | 44 | 26.35% | 1 | 7.14% |
Jamal Hadi Salim | 24 | 14.37% | 1 | 7.14% |
David S. Miller | 12 | 7.19% | 1 | 7.14% |
Jiri Pirko | 5 | 2.99% | 1 | 7.14% |
Shmulik Ladkani | 4 | 2.40% | 2 | 14.29% |
Stephen Hemminger | 4 | 2.40% | 1 | 7.14% |
Américo Wang | 3 | 1.80% | 3 | 21.43% |
Thomas Graf | 1 | 0.60% | 1 | 7.14% |
Eric Dumazet | 1 | 0.60% | 1 | 7.14% |
Greg Kroah-Hartman | 1 | 0.60% | 1 | 7.14% |
Total | 167 | 100.00% | 14 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.