btrfs: migrate the block group ref counting stuff
[linux/fpc-iii.git] / include / net / psample.h
blob6b578ce69cd8a2b78d0fcaed3005f435380c4823
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>
8 struct psample_group {
9 struct list_head list;
10 struct net *net;
11 u32 group_num;
12 u32 refcount;
13 u32 seq;
14 struct rcu_head rcu;
17 struct psample_group *psample_group_get(struct net *net, u32 group_num);
18 void psample_group_put(struct psample_group *group);
20 #if IS_ENABLED(CONFIG_PSAMPLE)
22 void psample_sample_packet(struct psample_group *group, struct sk_buff *skb,
23 u32 trunc_size, int in_ifindex, int out_ifindex,
24 u32 sample_rate);
26 #else
28 static inline void psample_sample_packet(struct psample_group *group,
29 struct sk_buff *skb, u32 trunc_size,
30 int in_ifindex, int out_ifindex,
31 u32 sample_rate)
35 #endif
37 #endif /* __NET_PSAMPLE_H */