From 5d501e54fc3b4e9c948b2c78a551abb285d89554 Mon Sep 17 00:00:00 2001 From: Andre Heider Date: Mon, 10 Dec 2018 10:06:50 +0100 Subject: [PATCH] lantiq: add integer latency stat for lantiq-dsl MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit The current stats always have a 'ms' suffix, and they're used by luci. Introduce dsl.latency_[down|up] values, exported in µs without suffix. Signed-off-by: Andre Heider --- .../linux/lantiq/base-files/lib/functions/lantiq_dsl.sh | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/target/linux/lantiq/base-files/lib/functions/lantiq_dsl.sh b/target/linux/lantiq/base-files/lib/functions/lantiq_dsl.sh index a76fec94ed..8665240da4 100755 --- a/target/linux/lantiq/base-files/lib/functions/lantiq_dsl.sh +++ b/target/linux/lantiq/base-files/lib/functions/lantiq_dsl.sh @@ -64,6 +64,12 @@ scale_latency() { printf "%d.%d ms" ${a} ${b} } +scale_latency_us() { + local val=$1 + + expr $val \* 10 +} + # # convert vendorid into human readable form # @@ -428,6 +434,8 @@ latency_delay() { sidd=$(scale_latency $idd) if [ "$action" = "lucistat" ]; then + echo "dsl.latency_down=\"$(scale_latency_us $idd)\"" + echo "dsl.latency_up=\"$(scale_latency_us $idu)\"" echo "dsl.latency_num_down=\"$sidd\"" echo "dsl.latency_num_up=\"$sidu\"" echo "dsl.latency_s_down=\"$idd_s\"" -- 2.30.2