From 1873826a3f3a41d7afe851f1c47b90fc0c22f50b Mon Sep 17 00:00:00 2001 From: Johannes Truschnigg Date: Sun, 20 Mar 2022 11:26:12 +0100 Subject: [PATCH] Remove EXP debug output --- __sqm_lagthrottle.awk | 1 - 1 file changed, 1 deletion(-) diff --git a/__sqm_lagthrottle.awk b/__sqm_lagthrottle.awk index 5ba3751..5263575 100644 --- a/__sqm_lagthrottle.awk +++ b/__sqm_lagthrottle.awk @@ -121,7 +121,6 @@ BEGIN { function slice_bw_window_rx(bw_lower_bound_rx, bw_upper_bound_rx) { bw_bound_delta_rx = (bw_upper_bound_rx - bw_lower_bound_rx) bw_steps_rx = 1 + int((log(bw_bound_delta_rx) / log(10)) ^ bw_slice_exponent) - print "# EXP=" bw_slice_exponent print "# STEPS_RX=" bw_steps_rx for (k = 0; k <= bw_steps_rx; k++) { STEPS_RX[k] = int((bw_lower_bound_rx + (k * (bw_bound_delta_rx / bw_steps_rx)))) -- 2.39.5