From: Larry Finger <Larry.Finger@lwfinger.net>
To: Dan Carpenter <dan.carpenter@oracle.com>
Cc: zajec5@gmail.com, linux-wireless@vger.kernel.org,
b43-dev@lists.infradead.org
Subject: b43: N-PHY: implement RSSI calibration for rev3+
Date: Wed, 25 Jan 2012 06:42:49 -0600 [thread overview]
Message-ID: <4F1FF8C9.4050803@lwfinger.net> (raw)
In-Reply-To: <20120125081815.GA19911@elgon.mountain>
On 01/25/2012 02:18 AM, Dan Carpenter wrote:
> Hello Rafa? Mi?ecki,
>
> The patch e0c9a0219a8f: "b43: N-PHY: implement RSSI calibration for
> rev3+" from Jan 5, 2012, leads to the following Smatch warning:
> drivers/net/wireless/b43/phy_n.c +1381 b43_nphy_rev3_rssi_cal()
> error: buffer overflow 'results[j]' 4<= 4
>
>
> + for (i = 0; i< 4; i++) {
> + s32 curr;
> + s32 mind = 40;
> + s32 minpoll = 249;
> + u8 minvcm = 0;
> + if (2 * core != i)
> + continue;
> + for (j = 0; j< 8; j++) {
> + curr = results[j][i] * results[j][i] +
> + results[j][i + 1] * results[j][i];
> ^^^^^
> On the last iteration through the loop "i + 1" = 4.
>
> + if (curr< mind) {
> + mind = curr;
> + minvcm = j;
> + }
> + if (results[j][i]< minpoll)
> + minpoll = results[j][i];
> + }
> + vcm_final = minvcm;
> + results_min[i] = minpoll;
> + }
>
> I don't know the code well enough to say if this can happen or not.
> Perhaps on the last iteration we always hit the "if (2 * core != i)
> continue" condition. Anyway, since this is the first time this has hit
> linux-next, I thought I would let you know.
The condition you point out will occur for i equals 3. As 2 * anything will
never be equal to 3, the continue will definitely be executed for that case.
This idea would need further investigation, but it certainly appears the the for
loop could be changed to "for (i = 0; i < 4; i += 2)", which would accomplish
the same end and should have the side effect of silencing the Smatch warning.
Larry
WARNING: multiple messages have this Message-ID (diff)
From: Larry Finger <Larry.Finger@lwfinger.net>
To: Dan Carpenter <dan.carpenter@oracle.com>
Cc: zajec5@gmail.com, linux-wireless@vger.kernel.org,
b43-dev@lists.infradead.org
Subject: Re: b43: N-PHY: implement RSSI calibration for rev3+
Date: Wed, 25 Jan 2012 06:42:49 -0600 [thread overview]
Message-ID: <4F1FF8C9.4050803@lwfinger.net> (raw)
In-Reply-To: <20120125081815.GA19911@elgon.mountain>
On 01/25/2012 02:18 AM, Dan Carpenter wrote:
> Hello Rafał Miłecki,
>
> The patch e0c9a0219a8f: "b43: N-PHY: implement RSSI calibration for
> rev3+" from Jan 5, 2012, leads to the following Smatch warning:
> drivers/net/wireless/b43/phy_n.c +1381 b43_nphy_rev3_rssi_cal()
> error: buffer overflow 'results[j]' 4<= 4
>
>
> + for (i = 0; i< 4; i++) {
> + s32 curr;
> + s32 mind = 40;
> + s32 minpoll = 249;
> + u8 minvcm = 0;
> + if (2 * core != i)
> + continue;
> + for (j = 0; j< 8; j++) {
> + curr = results[j][i] * results[j][i] +
> + results[j][i + 1] * results[j][i];
> ^^^^^
> On the last iteration through the loop "i + 1" = 4.
>
> + if (curr< mind) {
> + mind = curr;
> + minvcm = j;
> + }
> + if (results[j][i]< minpoll)
> + minpoll = results[j][i];
> + }
> + vcm_final = minvcm;
> + results_min[i] = minpoll;
> + }
>
> I don't know the code well enough to say if this can happen or not.
> Perhaps on the last iteration we always hit the "if (2 * core != i)
> continue" condition. Anyway, since this is the first time this has hit
> linux-next, I thought I would let you know.
The condition you point out will occur for i equals 3. As 2 * anything will
never be equal to 3, the continue will definitely be executed for that case.
This idea would need further investigation, but it certainly appears the the for
loop could be changed to "for (i = 0; i < 4; i += 2)", which would accomplish
the same end and should have the side effect of silencing the Smatch warning.
Larry
next prev parent reply other threads:[~2012-01-25 12:42 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-01-25 8:18 b43: N-PHY: implement RSSI calibration for rev3+ Dan Carpenter
2012-01-25 12:42 ` Larry Finger [this message]
2012-01-25 12:42 ` Larry Finger
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=4F1FF8C9.4050803@lwfinger.net \
--to=larry.finger@lwfinger.net \
--cc=b43-dev@lists.infradead.org \
--cc=dan.carpenter@oracle.com \
--cc=linux-wireless@vger.kernel.org \
--cc=zajec5@gmail.com \
/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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.