staging: rtl8192u: remove redundant assignment to pointer crypt
[linux/fpc-iii.git] / tools / testing / selftests / bpf / netcnt_common.h
blob81084c1c2c235007bbe5994d436aa769afc97b00
1 // SPDX-License-Identifier: GPL-2.0
2 #ifndef __NETCNT_COMMON_H
3 #define __NETCNT_COMMON_H
5 #include <linux/types.h>
7 #define MAX_PERCPU_PACKETS 32
9 struct percpu_net_cnt {
10 __u64 packets;
11 __u64 bytes;
13 __u64 prev_ts;
15 __u64 prev_packets;
16 __u64 prev_bytes;
19 struct net_cnt {
20 __u64 packets;
21 __u64 bytes;
24 #endif