#ifndef __NET_TC_SAMPLE_H #define __NET_TC_SAMPLE_H #include #include #include 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 } static inline __u32 tcf_sample_rate(const struct tc_action *a) { return to_sample(a)->rate; } static inline bool tcf_sample_truncate(const struct tc_action *a) { return to_sample(a)->truncate; } static inline int tcf_sample_trunc_size(const struct tc_action *a) { return to_sample(a)->trunc_size; } static inline struct psample_group * tcf_sample_psample_group(const struct tc_action *a) { return rcu_dereference(to_sample(a)->psample_group); } #endif /* __NET_TC_SAMPLE_H */ '>emaclite-cleanup net-next plumbingsTobias Klauser
summaryrefslogtreecommitdiff
path: root/net/dccp
diff options
context:
space:
mode:
authorColin Ian King <colin.king@canonical.com>2017-01-11 15:36:20 +0000
committerMark Brown <broonie@kernel.org>2017-01-18 16:32:44 +0000
commitb98acbff9a05b371c5f0ca6e44a3af8ce9274379 (patch)
treed6835885f859a456e62ce93621041138d6a54f9b /net/dccp
parentd00b74613fb18dfd0a5aa99270ee2e72d5c808d7 (diff)
regulator: twl6030: fix range comparison, allowing vsel = 59
The range min_uV > 1350000 && min_uV <= 150000 is never reachable because of a typo in the previous range check and hence vsel = 59 is never reached. Fix the previous range check to enable the vsel = 59 setting. Fixes CoverityScan CID#728454 ("Logially dead code") Signed-off-by: Colin Ian King <colin.king@canonical.com> Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'net/dccp')