ebpf: reduce counter size to allow netronome offload

pull/3952/head
Eric Leblond 6 years ago committed by Victor Julien
parent 2f579e6a4c
commit a37a7c4a21

@ -52,8 +52,8 @@ struct flowv6_keys {
}; };
struct pair { struct pair {
__u64 packets; __u32 packets;
__u64 bytes; __u32 bytes;
__u32 hash; __u32 hash;
}; };

@ -72,8 +72,8 @@ struct flowv6_keys {
}; };
struct pair { struct pair {
__u64 packets; __u32 packets;
__u64 bytes; __u32 bytes;
__u32 hash; __u32 hash;
}; };

@ -56,8 +56,8 @@ struct flowv6_keys {
}; };
struct pair { struct pair {
uint64_t packets; uint32_t packets;
uint64_t bytes; uint32_t bytes;
uint32_t hash; uint32_t hash;
}; };

Loading…
Cancel
Save