blob: 68ae16bb0a4a85986aeea06b2d11cc13436a32e0 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001/* SPDX-License-Identifier: GPL-2.0 */
Yotam Gigi6ae0a622017-01-23 11:07:08 +01002#ifndef __NET_PSAMPLE_H
3#define __NET_PSAMPLE_H
4
5#include <uapi/linux/psample.h>
Yotam Gigi6ae0a622017-01-23 11:07:08 +01006#include <linux/list.h>
7
8struct psample_group {
9 struct list_head list;
10 struct net *net;
11 u32 group_num;
12 u32 refcount;
13 u32 seq;
Vlad Buslovdbf47a22019-08-27 21:49:38 +030014 struct rcu_head rcu;
Yotam Gigi6ae0a622017-01-23 11:07:08 +010015};
16
17struct psample_group *psample_group_get(struct net *net, u32 group_num);
Vlad Buslov4a5da472019-09-13 18:28:40 +030018void psample_group_take(struct psample_group *group);
Yotam Gigi6ae0a622017-01-23 11:07:08 +010019void psample_group_put(struct psample_group *group);
20
21#if IS_ENABLED(CONFIG_PSAMPLE)
22
23void psample_sample_packet(struct psample_group *group, struct sk_buff *skb,
24 u32 trunc_size, int in_ifindex, int out_ifindex,
25 u32 sample_rate);
26
27#else
28
29static inline void psample_sample_packet(struct psample_group *group,
30 struct sk_buff *skb, u32 trunc_size,
31 int in_ifindex, int out_ifindex,
32 u32 sample_rate)
33{
34}
35
36#endif
37
38#endif /* __NET_PSAMPLE_H */