1 #ifndef __NET_PSAMPLE_H
2 #define __NET_PSAMPLE_H
4 #include <uapi/linux/psample.h>
5 #include <linux/module.h>
6 #include <linux/list.h>
16 struct psample_group
*psample_group_get(struct net
*net
, u32 group_num
);
17 void psample_group_put(struct psample_group
*group
);
19 #if IS_ENABLED(CONFIG_PSAMPLE)
21 void psample_sample_packet(struct psample_group
*group
, struct sk_buff
*skb
,
22 u32 trunc_size
, int in_ifindex
, int out_ifindex
,
27 static inline void psample_sample_packet(struct psample_group
*group
,
28 struct sk_buff
*skb
, u32 trunc_size
,
29 int in_ifindex
, int out_ifindex
,
36 #endif /* __NET_PSAMPLE_H */