cregit-Linux how code gets into the kernel

Release 4.15 include/net/tc_act/tc_csum.h

/* SPDX-License-Identifier: GPL-2.0 */
#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 Gerlitz6263.92%116.67%
Grégoire Baron3131.96%116.67%
Américo Wang33.09%350.00%
Greg Kroah-Hartman11.03%116.67%
Total97100.00%6100.00%
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
Created with cregit.