mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-05 16:54:27 +00:00

Since commit c54e1d920f
("flow_offload: add ops to tc_action_ops for
flow action setup") these are unused.
Signed-off-by: Yue Haibing <yuehaibing@huawei.com>
Acked-by: Cong Wang <xiyou.wangcong@gmail.com>
Link: https://patch.msgid.link/20250624014327.3686873-1-yuehaibing@huawei.com
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
35 lines
752 B
C
35 lines
752 B
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 __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;
|
|
}
|
|
|
|
#endif /* __NET_TC_SAMPLE_H */
|