All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] wireless: brcmfmac: cfg80211: Fix check for ISO3166 code
@ 2018-03-14 19:02 Stefan Wahren
  2018-03-14 21:43 ` Franky Lin
                   ` (3 more replies)
  0 siblings, 4 replies; 10+ messages in thread
From: Stefan Wahren @ 2018-03-14 19:02 UTC (permalink / raw)
  To: Arend van Spriel, Franky Lin, Hante Meuleman, Chi-Hsien Lin, Wright Feng
  Cc: Kalle Valo, Johannes Berg, Hans de Goede, linux-wireless,
	brcm80211-dev-list.pdl, brcm80211-dev-list, Stefan Wahren

The commit "regulatory: add NUL to request alpha2" increases the length of
alpha2 to 3. This causes a regression on brcmfmac, because
brcmf_cfg80211_reg_notifier() expect valid ISO3166 codes in the complete
array. So fix this accordingly.

Signed-off-by: Stefan Wahren <stefan.wahren@i2se.com>
---
 drivers/net/wireless/broadcom/brcm80211/brcmfmac/cfg80211.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/net/wireless/broadcom/brcm80211/brcmfmac/cfg80211.c b/drivers/net/wireless/broadcom/brcm80211/brcmfmac/cfg80211.c
index 74a8302..5ed718d 100644
--- a/drivers/net/wireless/broadcom/brcm80211/brcmfmac/cfg80211.c
+++ b/drivers/net/wireless/broadcom/brcm80211/brcmfmac/cfg80211.c
@@ -6805,7 +6805,7 @@ static void brcmf_cfg80211_reg_notifier(struct wiphy *wiphy,
 		return;
 
 	/* ignore non-ISO3166 country codes */
-	for (i = 0; i < sizeof(req->alpha2); i++)
+	for (i = 0; i < 2; i++)
 		if (req->alpha2[i] < 'A' || req->alpha2[i] > 'Z') {
 			brcmf_err("not an ISO3166 code (0x%02x 0x%02x)\n",
 				  req->alpha2[0], req->alpha2[1]);
-- 
2.7.4

^ permalink raw reply related	[flat|nested] 10+ messages in thread

* Re: [PATCH] wireless: brcmfmac: cfg80211: Fix check for ISO3166 code
  2018-03-14 19:02 [PATCH] wireless: brcmfmac: cfg80211: Fix check for ISO3166 code Stefan Wahren
@ 2018-03-14 21:43 ` Franky Lin
  2018-03-15  6:27 ` Rafał Miłecki
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 10+ messages in thread
From: Franky Lin @ 2018-03-14 21:43 UTC (permalink / raw)
  To: Stefan Wahren
  Cc: Arend van Spriel, Hante Meuleman, Chi-Hsien Lin, Wright Feng,
	Kalle Valo, Johannes Berg, Hans de Goede,
	open list:BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER,
	open list:BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER,
	brcm80211-dev-list

On Wed, Mar 14, 2018 at 12:02 PM, Stefan Wahren <stefan.wahren@i2se.com> wrote:
> The commit "regulatory: add NUL to request alpha2" increases the length of
> alpha2 to 3. This causes a regression on brcmfmac, because
> brcmf_cfg80211_reg_notifier() expect valid ISO3166 codes in the complete
> array. So fix this accordingly.
>
> Signed-off-by: Stefan Wahren <stefan.wahren@i2se.com>
Acked-by: Franky Lin <franky.lin@broadcom.com>
> ---
>  drivers/net/wireless/broadcom/brcm80211/brcmfmac/cfg80211.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/net/wireless/broadcom/brcm80211/brcmfmac/cfg80211.c b/drivers/net/wireless/broadcom/brcm80211/brcmfmac/cfg80211.c
> index 74a8302..5ed718d 100644
> --- a/drivers/net/wireless/broadcom/brcm80211/brcmfmac/cfg80211.c
> +++ b/drivers/net/wireless/broadcom/brcm80211/brcmfmac/cfg80211.c
> @@ -6805,7 +6805,7 @@ static void brcmf_cfg80211_reg_notifier(struct wiphy *wiphy,
>                 return;
>
>         /* ignore non-ISO3166 country codes */
> -       for (i = 0; i < sizeof(req->alpha2); i++)
> +       for (i = 0; i < 2; i++)
>                 if (req->alpha2[i] < 'A' || req->alpha2[i] > 'Z') {
>                         brcmf_err("not an ISO3166 code (0x%02x 0x%02x)\n",
>                                   req->alpha2[0], req->alpha2[1]);
> --
> 2.7.4
>

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [PATCH] wireless: brcmfmac: cfg80211: Fix check for ISO3166 code
  2018-03-14 19:02 [PATCH] wireless: brcmfmac: cfg80211: Fix check for ISO3166 code Stefan Wahren
  2018-03-14 21:43 ` Franky Lin
@ 2018-03-15  6:27 ` Rafał Miłecki
  2018-03-15  7:57   ` Stefan Wahren
  2018-03-15  9:15 ` Kalle Valo
  2018-03-20 10:08 ` brcmfmac: " Kalle Valo
  3 siblings, 1 reply; 10+ messages in thread
From: Rafał Miłecki @ 2018-03-15  6:27 UTC (permalink / raw)
  To: Stefan Wahren
  Cc: Arend van Spriel, Franky Lin, Hante Meuleman, Chi-Hsien Lin,
	Wright Feng, Kalle Valo, Johannes Berg, Hans de Goede,
	linux-wireless,
	open list:BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER,
	open list:BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER
	<brcm80211-dev-list.pdl@broadcom.com>,

On 14 March 2018 at 20:02, Stefan Wahren <stefan.wahren@i2se.com> wrote:
> The commit "regulatory: add NUL to request alpha2" increases the length of
> alpha2 to 3. This causes a regression on brcmfmac, because
> brcmf_cfg80211_reg_notifier() expect valid ISO3166 codes in the complete
> array. So fix this accordingly.
>
> Signed-off-by: Stefan Wahren <stefan.wahren@i2se.com>

It sounds like it's worth a:
Fixes: <sha> ("regulatory: add NUL to request alpha2")

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [PATCH] wireless: brcmfmac: cfg80211: Fix check for ISO3166 code
  2018-03-15  6:27 ` Rafał Miłecki
@ 2018-03-15  7:57   ` Stefan Wahren
  2018-03-15  9:13     ` Kalle Valo
  0 siblings, 1 reply; 10+ messages in thread
From: Stefan Wahren @ 2018-03-15  7:57 UTC (permalink / raw)
  To: Rafał Miłecki
  Cc: Arend van Spriel, Franky Lin, Hante Meuleman, Chi-Hsien Lin,
	Wright Feng, Kalle Valo, Johannes Berg, Hans de Goede,
	linux-wireless,
	open list:BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER,
	open list:BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER,
	brcm80211-dev-list

Am 15.03.2018 um 07:27 schrieb Rafał Miłecki:
> On 14 March 2018 at 20:02, Stefan Wahren <stefan.wahren@i2se.com> wrote:
>> The commit "regulatory: add NUL to request alpha2" increases the length of
>> alpha2 to 3. This causes a regression on brcmfmac, because
>> brcmf_cfg80211_reg_notifier() expect valid ISO3166 codes in the complete
>> array. So fix this accordingly.
>>
>> Signed-off-by: Stefan Wahren <stefan.wahren@i2se.com>
> It sounds like it's worth a:
> Fixes: <sha> ("regulatory: add NUL to request alpha2")

I wasn't sure that i can take the hash from linux-next. I will add this.

Thanks
Stefan

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [PATCH] wireless: brcmfmac: cfg80211: Fix check for ISO3166 code
  2018-03-15  7:57   ` Stefan Wahren
@ 2018-03-15  9:13     ` Kalle Valo
  0 siblings, 0 replies; 10+ messages in thread
From: Kalle Valo @ 2018-03-15  9:13 UTC (permalink / raw)
  To: Stefan Wahren
  Cc: Rafał Miłecki, Arend van Spriel, Franky Lin,
	Hante Meuleman, Chi-Hsien Lin, Wright Feng, Johannes Berg,
	Hans de Goede, linux-wireless,
	open list:BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER,
	brcm80211-dev-list

Stefan Wahren <stefan.wahren@i2se.com> writes:

> Am 15.03.2018 um 07:27 schrieb Rafa=C5=82 Mi=C5=82ecki:
>> On 14 March 2018 at 20:02, Stefan Wahren <stefan.wahren@i2se.com> wrote:
>>> The commit "regulatory: add NUL to request alpha2" increases the length=
 of
>>> alpha2 to 3. This causes a regression on brcmfmac, because
>>> brcmf_cfg80211_reg_notifier() expect valid ISO3166 codes in the complete
>>> array. So fix this accordingly.
>>>
>>> Signed-off-by: Stefan Wahren <stefan.wahren@i2se.com>
>> It sounds like it's worth a:
>> Fixes: <sha> ("regulatory: add NUL to request alpha2")
>
> I wasn't sure that i can take the hash from linux-next. I will add this.

Yeah, taking commit id from linux-next is not always safe. It depends on
the maintainer as some people never rebase and some do it quite often.
But in this case commit 657308f73e67 ("regulatory: add NUL to request
alpha2") is already in Linus' tree so the commit id won't change
anymore.

--=20
Kalle Valo

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [PATCH] wireless: brcmfmac: cfg80211: Fix check for ISO3166 code
  2018-03-14 19:02 [PATCH] wireless: brcmfmac: cfg80211: Fix check for ISO3166 code Stefan Wahren
  2018-03-14 21:43 ` Franky Lin
  2018-03-15  6:27 ` Rafał Miłecki
@ 2018-03-15  9:15 ` Kalle Valo
  2018-03-15  9:27   ` Arend van Spriel
  2018-03-20 10:08 ` brcmfmac: " Kalle Valo
  3 siblings, 1 reply; 10+ messages in thread
From: Kalle Valo @ 2018-03-15  9:15 UTC (permalink / raw)
  To: Stefan Wahren
  Cc: Arend van Spriel, Franky Lin, Hante Meuleman, Chi-Hsien Lin,
	Wright Feng, Johannes Berg, Hans de Goede, linux-wireless,
	brcm80211-dev-list.pdl, brcm80211-dev-list

Stefan Wahren <stefan.wahren@i2se.com> writes:

> The commit "regulatory: add NUL to request alpha2" increases the length of
> alpha2 to 3. This causes a regression on brcmfmac, because
> brcmf_cfg80211_reg_notifier() expect valid ISO3166 codes in the complete
> array. So fix this accordingly.
>
> Signed-off-by: Stefan Wahren <stefan.wahren@i2se.com>

Arend, the first release for 657308f73e67 is v4.16-rc3 so should this go
to v4.16 as well?

And "wireless:" in the title is useless, I can remove that.

-- 
Kalle Valo

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [PATCH] wireless: brcmfmac: cfg80211: Fix check for ISO3166 code
  2018-03-15  9:15 ` Kalle Valo
@ 2018-03-15  9:27   ` Arend van Spriel
  2018-03-15  9:30     ` Kalle Valo
  0 siblings, 1 reply; 10+ messages in thread
From: Arend van Spriel @ 2018-03-15  9:27 UTC (permalink / raw)
  To: Kalle Valo, Stefan Wahren
  Cc: Franky Lin, Hante Meuleman, Chi-Hsien Lin, Wright Feng,
	Johannes Berg, Hans de Goede, linux-wireless,
	brcm80211-dev-list.pdl, brcm80211-dev-list

On 3/15/2018 10:15 AM, Kalle Valo wrote:
> Stefan Wahren <stefan.wahren@i2se.com> writes:
>
>> The commit "regulatory: add NUL to request alpha2" increases the length of
>> alpha2 to 3. This causes a regression on brcmfmac, because
>> brcmf_cfg80211_reg_notifier() expect valid ISO3166 codes in the complete
>> array. So fix this accordingly.
>>
>> Signed-off-by: Stefan Wahren <stefan.wahren@i2se.com>
>
> Arend, the first release for 657308f73e67 is v4.16-rc3 so should this go
> to v4.16 as well?
>
> And "wireless:" in the title is useless, I can remove that.

And ": cfg80211" as well?

Regards,
Arend

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [PATCH] wireless: brcmfmac: cfg80211: Fix check for ISO3166 code
  2018-03-15  9:27   ` Arend van Spriel
@ 2018-03-15  9:30     ` Kalle Valo
  2018-03-15  9:33       ` Arend van Spriel
  0 siblings, 1 reply; 10+ messages in thread
From: Kalle Valo @ 2018-03-15  9:30 UTC (permalink / raw)
  To: Arend van Spriel
  Cc: Stefan Wahren, Franky Lin, Hante Meuleman, Chi-Hsien Lin,
	Wright Feng, Johannes Berg, Hans de Goede, linux-wireless,
	brcm80211-dev-list.pdl, brcm80211-dev-list

Arend van Spriel <arend.vanspriel@broadcom.com> writes:

> On 3/15/2018 10:15 AM, Kalle Valo wrote:
>> Stefan Wahren <stefan.wahren@i2se.com> writes:
>>
>>> The commit "regulatory: add NUL to request alpha2" increases the length of
>>> alpha2 to 3. This causes a regression on brcmfmac, because
>>> brcmf_cfg80211_reg_notifier() expect valid ISO3166 codes in the complete
>>> array. So fix this accordingly.
>>>
>>> Signed-off-by: Stefan Wahren <stefan.wahren@i2se.com>
>>
>> Arend, the first release for 657308f73e67 is v4.16-rc3 so should this go
>> to v4.16 as well?
>>
>> And "wireless:" in the title is useless, I can remove that.
>
> And ": cfg80211" as well?

Ok, I'll remove that.

-- 
Kalle Valo

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [PATCH] wireless: brcmfmac: cfg80211: Fix check for ISO3166 code
  2018-03-15  9:30     ` Kalle Valo
@ 2018-03-15  9:33       ` Arend van Spriel
  0 siblings, 0 replies; 10+ messages in thread
From: Arend van Spriel @ 2018-03-15  9:33 UTC (permalink / raw)
  To: Kalle Valo
  Cc: Stefan Wahren, Franky Lin, Hante Meuleman, Chi-Hsien Lin,
	Wright Feng, Johannes Berg, Hans de Goede, linux-wireless,
	brcm80211-dev-list.pdl, brcm80211-dev-list

On 3/15/2018 10:30 AM, Kalle Valo wrote:
> Arend van Spriel <arend.vanspriel@broadcom.com> writes:
>
>> On 3/15/2018 10:15 AM, Kalle Valo wrote:
>>> Stefan Wahren <stefan.wahren@i2se.com> writes:
>>>
>>>> The commit "regulatory: add NUL to request alpha2" increases the length of
>>>> alpha2 to 3. This causes a regression on brcmfmac, because
>>>> brcmf_cfg80211_reg_notifier() expect valid ISO3166 codes in the complete
>>>> array. So fix this accordingly.
>>>>
>>>> Signed-off-by: Stefan Wahren <stefan.wahren@i2se.com>
>>>
>>> Arend, the first release for 657308f73e67 is v4.16-rc3 so should this go
>>> to v4.16 as well?
>>>
>>> And "wireless:" in the title is useless, I can remove that.
>>
>> And ": cfg80211" as well?
>
> Ok, I'll remove that.

Thanks

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: brcmfmac: Fix check for ISO3166 code
  2018-03-14 19:02 [PATCH] wireless: brcmfmac: cfg80211: Fix check for ISO3166 code Stefan Wahren
                   ` (2 preceding siblings ...)
  2018-03-15  9:15 ` Kalle Valo
@ 2018-03-20 10:08 ` Kalle Valo
  3 siblings, 0 replies; 10+ messages in thread
From: Kalle Valo @ 2018-03-20 10:08 UTC (permalink / raw)
  To: Stefan Wahren
  Cc: Arend van Spriel, Franky Lin, Hante Meuleman, Chi-Hsien Lin,
	Wright Feng, Johannes Berg, Hans de Goede, linux-wireless,
	brcm80211-dev-list.pdl, brcm80211-dev-list, Stefan Wahren

Stefan Wahren <stefan.wahren@i2se.com> wrote:

> The commit "regulatory: add NUL to request alpha2" increases the length of
> alpha2 to 3. This causes a regression on brcmfmac, because
> brcmf_cfg80211_reg_notifier() expect valid ISO3166 codes in the complete
> array. So fix this accordingly.
> 
> Fixes: 657308f73e67 ("regulatory: add NUL to request alpha2")
> Signed-off-by: Stefan Wahren <stefan.wahren@i2se.com>
> Acked-by: Franky Lin <franky.lin@broadcom.com>

Patch applied to wireless-drivers.git, thanks.

9b9322db5c5a brcmfmac: Fix check for ISO3166 code

-- 
https://patchwork.kernel.org/patch/10283389/

https://wireless.wiki.kernel.org/en/developers/documentation/submittingpatches

^ permalink raw reply	[flat|nested] 10+ messages in thread

end of thread, other threads:[~2018-03-20 10:08 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-03-14 19:02 [PATCH] wireless: brcmfmac: cfg80211: Fix check for ISO3166 code Stefan Wahren
2018-03-14 21:43 ` Franky Lin
2018-03-15  6:27 ` Rafał Miłecki
2018-03-15  7:57   ` Stefan Wahren
2018-03-15  9:13     ` Kalle Valo
2018-03-15  9:15 ` Kalle Valo
2018-03-15  9:27   ` Arend van Spriel
2018-03-15  9:30     ` Kalle Valo
2018-03-15  9:33       ` Arend van Spriel
2018-03-20 10:08 ` brcmfmac: " Kalle Valo

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.