]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - include/net/psample.h
ACPI: PM: Introduce "poweroff" callbacks for ACPI PM domain and LPSS
[mirror_ubuntu-bionic-kernel.git] / include / net / psample.h
CommitLineData
b2441318 1/* SPDX-License-Identifier: GPL-2.0 */
6ae0a628
YG
2#ifndef __NET_PSAMPLE_H
3#define __NET_PSAMPLE_H
4
5#include <uapi/linux/psample.h>
6#include <linux/module.h>
7#include <linux/list.h>
8
9struct psample_group {
10 struct list_head list;
11 struct net *net;
12 u32 group_num;
13 u32 refcount;
14 u32 seq;
a0c82d24 15 struct rcu_head rcu;
6ae0a628
YG
16};
17
18struct psample_group *psample_group_get(struct net *net, u32 group_num);
19void 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 */