cregit-Linux how code gets into the kernel

Release 4.7 include/net/tc_act/tc_gact.h

#ifndef __NET_TC_GACT_H

#define __NET_TC_GACT_H

#include <net/act_api.h>
#include <linux/tc_act/tc_gact.h>


struct tcf_gact {
	
struct tcf_common	common;
#ifdef CONFIG_GACT_PROB
	
u16			tcfg_ptype;
	
u16			tcfg_pval;
	
int			tcfg_paction;
	
atomic_t		packets;
#endif
};

#define to_gact(a) \
	container_of(a->priv, struct tcf_gact, common)


static inline bool is_tcf_gact_shot(const struct tc_action *a) { #ifdef CONFIG_NET_CLS_ACT struct tcf_gact *gact; if (a->ops && a->ops->type != TCA_ACT_GACT) return false; gact = a->priv; if (gact->tcf_action == TC_ACT_SHOT) return true; #endif return false; }

Contributors

PersonTokensPropCommitsCommitProp
john fastabendjohn fastabend5591.67%150.00%
amir vadaiamir vadai58.33%150.00%
Total60100.00%2100.00%

#endif /* __NET_TC_GACT_H */

Overall Contributors

PersonTokensPropCommitsCommitProp
john fastabendjohn fastabend6055.05%114.29%
jamal hadi salimjamal hadi salim2422.02%114.29%
david s. millerdavid s. miller1412.84%114.29%
amir vadaiamir vadai54.59%114.29%
eric dumazeteric dumazet32.75%114.29%
americo wangamerico wang21.83%114.29%
thomas grafthomas graf10.92%114.29%
Total109100.00%7100.00%
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
{% endraw %}