/* 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_params { int action; u32 update_flags; struct rcu_head rcu; }; struct tcf_csum { struct tc_action common; struct tcf_csum_params __rcu *params; }; #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
Person | Tokens | Prop | Commits | CommitProp |
Or Gerlitz | 38 | 100.00% | 1 | 100.00% |
Total | 38 | 100.00% | 1 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Or Gerlitz | 20 | 51.28% | 1 | 50.00% |
Davide Caratti | 19 | 48.72% | 1 | 50.00% |
Total | 39 | 100.00% | 2 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Or Gerlitz | 61 | 45.86% | 1 | 14.29% |
Davide Caratti | 39 | 29.32% | 1 | 14.29% |
Grégoire Baron | 29 | 21.80% | 1 | 14.29% |
Américo Wang | 3 | 2.26% | 3 | 42.86% |
Greg Kroah-Hartman | 1 | 0.75% | 1 | 14.29% |
Total | 133 | 100.00% | 7 | 100.00% |