#ifndef __NET_TC_SAMPLE_H #define __NET_TC_SAMPLE_H #include <net/act_api.h> #include <linux/tc_act/tc_sample.h> #include <net/psample.h> struct tcf_sample { struct tc_action common; u32 rate; bool truncate; u32 trunc_size; struct psample_group __rcu *psample_group; u32 psample_group_num; struct list_head tcfm_list; struct rcu_head rcu; }; #define to_sample(a) ((struct tcf_sample *)a)
static inline bool is_tcf_sample(const struct tc_action *a) { #ifdef CONFIG_NET_CLS_ACT return a->ops && a->ops->type == TCA_ACT_SAMPLE; #else return false; #endif }Contributors
Person | Tokens | Prop | Commits | CommitProp |
Yotam Gigi | 36 | 100.00% | 1 | 100.00% |
Total | 36 | 100.00% | 1 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Yotam Gigi | 21 | 100.00% | 1 | 100.00% |
Total | 21 | 100.00% | 1 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Yotam Gigi | 21 | 100.00% | 1 | 100.00% |
Total | 21 | 100.00% | 1 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Yotam Gigi | 21 | 100.00% | 1 | 100.00% |
Total | 21 | 100.00% | 1 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Yotam Gigi | 26 | 100.00% | 1 | 100.00% |
Total | 26 | 100.00% | 1 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Yotam Gigi | 185 | 100.00% | 1 | 100.00% |
Total | 185 | 100.00% | 1 | 100.00% |