cregit-Linux how code gets into the kernel

Release 4.12 include/net/tc_act/tc_csum.h

#ifndef __NET_TC_CSUM_H

#define __NET_TC_CSUM_H

#include <linux/types.h>
#include <net/act_api.h>
#include <linux/tc_act/tc_csum.h>


struct tcf_csum {
	
struct tc_action common;

	
u32 update_flags;
};

#define to_tcf_csum(a) ((struct tcf_csum *)a)


static inline bool is_tcf_csum(const struct tc_action *a) { #ifdef CONFIG_NET_CLS_ACT if (a->ops && a->ops->type == TCA_ACT_CSUM) return true; #endif return false; }

Contributors

PersonTokensPropCommitsCommitProp
Or Gerlitz38100.00%1100.00%
Total38100.00%1100.00%


static inline u32 tcf_csum_update_flags(const struct tc_action *a) { return to_tcf_csum(a)->update_flags; }

Contributors

PersonTokensPropCommitsCommitProp
Or Gerlitz21100.00%1100.00%
Total21100.00%1100.00%

#endif /* __NET_TC_CSUM_H */

Overall Contributors

PersonTokensPropCommitsCommitProp
Or Gerlitz6264.58%120.00%
Grégoire Baron3132.29%120.00%
Américo Wang33.12%360.00%
Total96100.00%5100.00%
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
Created with cregit.