From c055fb337bc1e9ee8d7a55cc45901192b56475a4 Mon Sep 17 00:00:00 2001 From: Herbert Wolverson Date: Mon, 10 Jul 2023 20:30:28 +0000 Subject: [PATCH] Fix stale comment --- src/rust/lqosd/src/throughput_tracker/tracking_data.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/rust/lqosd/src/throughput_tracker/tracking_data.rs b/src/rust/lqosd/src/throughput_tracker/tracking_data.rs index aae6af37..e95d906b 100644 --- a/src/rust/lqosd/src/throughput_tracker/tracking_data.rs +++ b/src/rust/lqosd/src/throughput_tracker/tracking_data.rs @@ -30,8 +30,6 @@ impl ThroughputTracker { pub(crate) fn copy_previous_and_reset_rtt(&self) { // Copy previous byte/packet numbers and reset RTT data - // We're using Rayon's "par_iter_mut" to spread the operation across - // all CPU cores. let self_cycle = self.cycle.load(std::sync::atomic::Ordering::Relaxed); self.raw_data.iter_mut().for_each(|mut v| { if v.first_cycle < self_cycle {