From e3d47fda6f2fca76b102c603f1b9e39974f118a3 Mon Sep 17 00:00:00 2001 From: Christian Deacon Date: Tue, 11 Feb 2025 08:19:51 -0500 Subject: [PATCH] Oops, fix error with USE_FLOW_RL commented. --- src/xdp/rl.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/xdp/rl.h b/src/xdp/rl.h index fbd775c..9687e07 100644 --- a/src/xdp/rl.h +++ b/src/xdp/rl.h @@ -28,7 +28,7 @@ static __always_inline void UpdateIpStats(__u64 *pps, __u64 *bps, __u32 ip, __u1 struct ip_stats *ip_stats = bpf_map_lookup_elem(&ip_stats_map, &key); #else - struct ip_stats *ip_stats* = bpf_map_lookup_elem(&ip_stats_map, &ip); + struct ip_stats *ip_stats = bpf_map_lookup_elem(&ip_stats_map, &ip); #endif if (ip_stats)