cregit-Linux how code gets into the kernel

Release 4.12 include/net/tc_act/tc_sample.h

#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

PersonTokensPropCommitsCommitProp
Yotam Gigi36100.00%1100.00%
Total36100.00%1100.00%


static inline __u32 tcf_sample_rate(const struct tc_action *a) { return to_sample(a)->rate; }

Contributors

PersonTokensPropCommitsCommitProp
Yotam Gigi21100.00%1100.00%
Total21100.00%1100.00%


static inline bool tcf_sample_truncate(const struct tc_action *a) { return to_sample(a)->truncate; }

Contributors

PersonTokensPropCommitsCommitProp
Yotam Gigi21100.00%1100.00%
Total21100.00%1100.00%


static inline int tcf_sample_trunc_size(const struct tc_action *a) { return to_sample(a)->trunc_size; }

Contributors

PersonTokensPropCommitsCommitProp
Yotam Gigi21100.00%1100.00%
Total21100.00%1100.00%


static inline struct psample_group * tcf_sample_psample_group(const struct tc_action *a) { return rcu_dereference(to_sample(a)->psample_group); }

Contributors

PersonTokensPropCommitsCommitProp
Yotam Gigi26100.00%1100.00%
Total26100.00%1100.00%

#endif /* __NET_TC_SAMPLE_H */

Overall Contributors

PersonTokensPropCommitsCommitProp
Yotam Gigi185100.00%1100.00%
Total185100.00%1100.00%
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
Created with cregit.