public inbox for development@lists.ipfire.org
 help / color / mirror / Atom feed
From: Michael Tremer <michael.tremer@ipfire.org>
To: development@lists.ipfire.org
Subject: Re: [PATCH] network-functions.pl: Improve wifi_get_link_quality
Date: Wed, 04 Aug 2021 16:36:38 +0200	[thread overview]
Message-ID: <3F363A0D-6B08-4C8F-A296-040E1E701F6A@ipfire.org> (raw)
In-Reply-To: <20210723110942.679-1-hofmann@leo-andres.de>

[-- Attachment #1: Type: text/plain, Size: 1256 bytes --]

Hello,

Good catch :)

Reviewed-by: Michael Tremer <michael.tremer(a)ipfire.org>

-Michael

> On 23 Jul 2021, at 13:09, Leo-Andres Hofmann <hofmann(a)leo-andres.de> wrote:
> 
> iwconfig doesn't return values for "Link Quality" if the interface
> is disconnected, causing a division by zero error. If there are odd
> values, the resulting percentage may contain many decimal places.
> 
> This patch makes wifi_get_link_quality return zero instead of failing
> and rounds the percentage to a more meaningful integer.
> 
> Signed-off-by: Leo-Andres Hofmann <hofmann(a)leo-andres.de>
> ---
> config/cfgroot/network-functions.pl | 6 +++++-
> 1 file changed, 5 insertions(+), 1 deletion(-)
> 
> diff --git a/config/cfgroot/network-functions.pl b/config/cfgroot/network-functions.pl
> index b7a840559..c0abc76b5 100644
> --- a/config/cfgroot/network-functions.pl
> +++ b/config/cfgroot/network-functions.pl
> @@ -403,7 +403,11 @@ sub wifi_get_link_quality($) {
> 
> 	my ($cur, $max) = $status =~ /Link Quality=(\d+)\/(\d+)/;
> 
> -	return $cur * 100 / $max;
> +	if($max > 0) {
> +		return sprintf('%.0f', ($cur * 100) / $max);
> +	}
> +
> +	return 0;
> }
> 
> sub wifi_get_signal_level($) {
> -- 
> 2.27.0.windows.1
> 


      reply	other threads:[~2021-08-04 14:36 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-07-23 11:09 Leo-Andres Hofmann
2021-08-04 14:36 ` Michael Tremer [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=3F363A0D-6B08-4C8F-A296-040E1E701F6A@ipfire.org \
    --to=michael.tremer@ipfire.org \
    --cc=development@lists.ipfire.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox