1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef __NET_PSAMPLE_H
3 #define __NET_PSAMPLE_H
5 #include <uapi/linux/psample.h>
6 #include <linux/list.h>
17 struct psample_group
*psample_group_get(struct net
*net
, u32 group_num
);
18 void psample_group_take(struct psample_group
*group
);
19 void psample_group_put(struct psample_group
*group
);
21 #if IS_ENABLED(CONFIG_PSAMPLE)
23 void psample_sample_packet(struct psample_group
*group
, struct sk_buff
*skb
,
24 u32 trunc_size
, int in_ifindex
, int out_ifindex
,
29 static inline void psample_sample_packet(struct psample_group
*group
,
30 struct sk_buff
*skb
, u32 trunc_size
,
31 int in_ifindex
, int out_ifindex
,
38 #endif /* __NET_PSAMPLE_H */