linux-stable/include/net/tc_act/tc_sample.h
Cong Wang 90a6ec8535 act_sample: get rid of tcf_sample_cleanup_rcu()
Similar to commit d7fb60b9ca ("net_sched: get rid of tcfa_rcu"),
TC actions don't need to respect RCU grace period, because it
is either just detached from tc filter (standalone case) or
it is removed together with tc filter (bound case) in which case
RCU grace period is already respected at filter layer.

Fixes: 5c5670fae4 ("net/sched: Introduce sample tc action")
Reported-by: Eric Dumazet <eric.dumazet@gmail.com>
Cc: Jamal Hadi Salim <jhs@mojatatu.com>
Cc: Jiri Pirko <jiri@resnulli.us>
Cc: Yotam Gigi <yotamg@mellanox.com>
Signed-off-by: Cong Wang <xiyou.wangcong@gmail.com>
Reviewed-by: Eric Dumazet <edumazet@google.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2017-11-30 10:19:17 -05:00

50 lines
1 KiB
C

/* SPDX-License-Identifier: GPL-2.0 */
#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;
};
#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 */