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_metadata {
22 u64 out_tc_occ; /* bytes */
23 u64 latency; /* nanoseconds */
27 rate_as_probability:1,
29 const u8 *user_cookie;
33 struct psample_group *psample_group_get(struct net *net, u32 group_num);
34 void psample_group_take(struct psample_group *group);
35 void psample_group_put(struct psample_group *group);
39 #if IS_ENABLED(CONFIG_PSAMPLE)
41 void psample_sample_packet(struct psample_group *group,
42 const struct sk_buff *skb, u32 sample_rate,
43 const struct psample_metadata *md);
47 static inline void psample_sample_packet(struct psample_group *group,
48 const struct sk_buff *skb,
50 const struct psample_metadata *md)
56 #endif /* __NET_PSAMPLE_H */