From 4ebf531f58bc3d51506b874b49b4b3eb3ab741f3 Mon Sep 17 00:00:00 2001 From: Herbert Wolverson Date: Thu, 24 Oct 2024 13:15:14 -0500 Subject: [PATCH] Stale comment cleanup --- .../lqosd/src/throughput_tracker/tracking_data.rs | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/src/rust/lqosd/src/throughput_tracker/tracking_data.rs b/src/rust/lqosd/src/throughput_tracker/tracking_data.rs index 5654edb0..adf43388 100644 --- a/src/rust/lqosd/src/throughput_tracker/tracking_data.rs +++ b/src/rust/lqosd/src/throughput_tracker/tracking_data.rs @@ -207,17 +207,6 @@ impl ThroughputTracker { let since_boot = Duration::from(now); let expire = (since_boot - Duration::from_secs(timeout_seconds)).as_nanos() as u64; - // Tracker for per-circuit RTT data. We're losing some of the smoothness by sampling - // every flow; the idea is to combine them into a single entry for the circuit. This - // should limit outliers. - //let mut rtt_circuit_tracker: FxHashMap; 2]> = FxHashMap::default(); - - // Tracker for TCP retries. We're storing these per second. - //let mut tcp_retries: FxHashMap> = FxHashMap::default(); - - // Track the expired keys - //let mut expired_keys = Vec::new(); - let mut all_flows_lock = ALL_FLOWS.lock().unwrap(); // Track through all the flows