linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* linux-next: build warning after merge of the mac80211-next tree
@ 2020-11-09  5:43 Stephen Rothwell
  2020-11-10  8:43 ` Johannes Berg
  0 siblings, 1 reply; 14+ messages in thread
From: Stephen Rothwell @ 2020-11-09  5:43 UTC (permalink / raw)
  To: Johannes Berg, Wireless
  Cc: Jouni Malinen, Rohan Dutta, Linux Kernel Mailing List,
	Linux Next Mailing List

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

Hi all,

After merging the mac80211-next tree, today's linux-next build (htmldocs)
produced this warning:

Documentation/driver-api/80211/cfg80211:48: include/net/cfg80211.h:1014: WARNING: Unexpected indentation.
Documentation/driver-api/80211/cfg80211:48: include/net/cfg80211.h:1016: WARNING: Block quote ends without a blank line; unexpected unindent.
Documentation/driver-api/80211/cfg80211:48: include/net/cfg80211.h:1019: WARNING: Unexpected indentation.

Introduced by commit

  9f0ffa418483 ("cfg80211: Add support to configure SAE PWE value to drivers")

-- 
Cheers,
Stephen Rothwell

[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 488 bytes --]

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

* Re: linux-next: build warning after merge of the mac80211-next tree
  2020-11-09  5:43 linux-next: build warning after merge of the mac80211-next tree Stephen Rothwell
@ 2020-11-10  8:43 ` Johannes Berg
  0 siblings, 0 replies; 14+ messages in thread
From: Johannes Berg @ 2020-11-10  8:43 UTC (permalink / raw)
  To: Stephen Rothwell, Wireless
  Cc: Jouni Malinen, Rohan Dutta, Linux Kernel Mailing List,
	Linux Next Mailing List

On Mon, 2020-11-09 at 16:43 +1100, Stephen Rothwell wrote:
> Hi all,
> 
> After merging the mac80211-next tree, today's linux-next build (htmldocs)
> produced this warning:
> 
> Documentation/driver-api/80211/cfg80211:48: include/net/cfg80211.h:1014: WARNING: Unexpected indentation.
> Documentation/driver-api/80211/cfg80211:48: include/net/cfg80211.h:1016: WARNING: Block quote ends without a blank line; unexpected unindent.
> Documentation/driver-api/80211/cfg80211:48: include/net/cfg80211.h:1019: WARNING: Unexpected indentation.
> 
> Introduced by commit
> 
>   9f0ffa418483 ("cfg80211: Add support to configure SAE PWE value to drivers")

Thanks Stephen, fixing it now.

johannes


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

* Re: linux-next: build warning after merge of the mac80211-next tree
  2021-04-13 10:39 ` Grumbach, Emmanuel
@ 2021-04-13 11:32   ` Johannes Berg
  0 siblings, 0 replies; 14+ messages in thread
From: Johannes Berg @ 2021-04-13 11:32 UTC (permalink / raw)
  To: Grumbach, Emmanuel, Stephen Rothwell, Wireless
  Cc: Linux Kernel Mailing List, Linux Next Mailing List

On Tue, 2021-04-13 at 10:39 +0000, Grumbach, Emmanuel wrote:
> Hi,
> 
> > 
> > Hi all,
> > 
> > After merging the mac80211-next tree, today's linux-next build (htmldocs)
> > produced this warning:
> > 
> > include/net/cfg80211.h:6643: warning: expecting prototype for
> > wiphy_rfkill_set_hw_state(). Prototype was for
> > wiphy_rfkill_set_hw_state_reason() instead
> > include/net/cfg80211.h:6643: warning: expecting prototype for
> 
> Ouch
> 
> Johannes, this is the fix:
> diff --git a/include/net/cfg80211.h b/include/net/cfg80211.h
> index 3b296f2b7a2c..c6134220dd8f 100644
> --- a/include/net/cfg80211.h
> +++ b/include/net/cfg80211.h
> @@ -6634,7 +6634,7 @@ void cfg80211_notify_new_peer_candidate(struct net_device *dev,
>   */
>  
> 
>  /**
> - * wiphy_rfkill_set_hw_state - notify cfg80211 about hw block state
> + * wiphy_rfkill_set_hw_state_reason - notify cfg80211 about hw block state
>   * @wiphy: the wiphy
>   * @blocked: block status
>   * @reason: one of reasons in &enum rfkill_hard_block_reasons
> 
> Do you want a patch or you amend the original commit?
> It is not in net-next yet.

Please send a separate fix anyway, I've pushed it out publicly after all
and try not to rebase unless absolutely necessary.

johannes


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

* RE: linux-next: build warning after merge of the mac80211-next tree
  2021-04-13 10:33 Stephen Rothwell
@ 2021-04-13 10:39 ` Grumbach, Emmanuel
  2021-04-13 11:32   ` Johannes Berg
  0 siblings, 1 reply; 14+ messages in thread
From: Grumbach, Emmanuel @ 2021-04-13 10:39 UTC (permalink / raw)
  To: Stephen Rothwell, Johannes Berg, Wireless
  Cc: Linux Kernel Mailing List, Linux Next Mailing List

Hi,

> 
> Hi all,
> 
> After merging the mac80211-next tree, today's linux-next build (htmldocs)
> produced this warning:
> 
> include/net/cfg80211.h:6643: warning: expecting prototype for
> wiphy_rfkill_set_hw_state(). Prototype was for
> wiphy_rfkill_set_hw_state_reason() instead
> include/net/cfg80211.h:6643: warning: expecting prototype for

Ouch

Johannes, this is the fix:
diff --git a/include/net/cfg80211.h b/include/net/cfg80211.h
index 3b296f2b7a2c..c6134220dd8f 100644
--- a/include/net/cfg80211.h
+++ b/include/net/cfg80211.h
@@ -6634,7 +6634,7 @@ void cfg80211_notify_new_peer_candidate(struct net_device *dev,
  */
 
 /**
- * wiphy_rfkill_set_hw_state - notify cfg80211 about hw block state
+ * wiphy_rfkill_set_hw_state_reason - notify cfg80211 about hw block state
  * @wiphy: the wiphy
  * @blocked: block status
  * @reason: one of reasons in &enum rfkill_hard_block_reasons

Do you want a patch or you amend the original commit?
It is not in net-next yet.

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

* linux-next: build warning after merge of the mac80211-next tree
@ 2021-04-13 10:33 Stephen Rothwell
  2021-04-13 10:39 ` Grumbach, Emmanuel
  0 siblings, 1 reply; 14+ messages in thread
From: Stephen Rothwell @ 2021-04-13 10:33 UTC (permalink / raw)
  To: Johannes Berg, Wireless
  Cc: Emmanuel Grumbach, Linux Kernel Mailing List, Linux Next Mailing List

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

Hi all,

After merging the mac80211-next tree, today's linux-next build (htmldocs)
produced this warning:

include/net/cfg80211.h:6643: warning: expecting prototype for wiphy_rfkill_set_hw_state(). Prototype was for wiphy_rfkill_set_hw_state_reason() instead
include/net/cfg80211.h:6643: warning: expecting prototype for wiphy_rfkill_set_hw_state(). Prototype was for wiphy_rfkill_set_hw_state_reason() instead
include/net/cfg80211.h:6643: warning: expecting prototype for wiphy_rfkill_set_hw_state(). Prototype was for wiphy_rfkill_set_hw_state_reason() instead
include/net/cfg80211.h:6643: warning: expecting prototype for wiphy_rfkill_set_hw_state(). Prototype was for wiphy_rfkill_set_hw_state_reason() instead
include/net/cfg80211.h:6643: warning: expecting prototype for wiphy_rfkill_set_hw_state(). Prototype was for wiphy_rfkill_set_hw_state_reason() instead
include/net/cfg80211.h:6643: warning: expecting prototype for wiphy_rfkill_set_hw_state(). Prototype was for wiphy_rfkill_set_hw_state_reason() instead
include/net/cfg80211.h:6643: warning: expecting prototype for wiphy_rfkill_set_hw_state(). Prototype was for wiphy_rfkill_set_hw_state_reason() instead
include/net/cfg80211.h:6643: warning: expecting prototype for wiphy_rfkill_set_hw_state(). Prototype was for wiphy_rfkill_set_hw_state_reason() instead
include/net/cfg80211.h:6643: warning: expecting prototype for wiphy_rfkill_set_hw_state(). Prototype was for wiphy_rfkill_set_hw_state_reason() instead
include/net/cfg80211.h:6643: warning: expecting prototype for wiphy_rfkill_set_hw_state(). Prototype was for wiphy_rfkill_set_hw_state_reason() instead
include/net/cfg80211.h:6643: warning: expecting prototype for wiphy_rfkill_set_hw_state(). Prototype was for wiphy_rfkill_set_hw_state_reason() instead
include/net/cfg80211.h:6643: warning: expecting prototype for wiphy_rfkill_set_hw_state(). Prototype was for wiphy_rfkill_set_hw_state_reason() instead
include/net/cfg80211.h:6643: warning: expecting prototype for wiphy_rfkill_set_hw_state(). Prototype was for wiphy_rfkill_set_hw_state_reason() instead
include/net/cfg80211.h:6643: warning: expecting prototype for wiphy_rfkill_set_hw_state(). Prototype was for wiphy_rfkill_set_hw_state_reason() instead
include/net/cfg80211.h:6643: warning: expecting prototype for wiphy_rfkill_set_hw_state(). Prototype was for wiphy_rfkill_set_hw_state_reason() instead
include/net/cfg80211.h:6643: warning: expecting prototype for wiphy_rfkill_set_hw_state(). Prototype was for wiphy_rfkill_set_hw_state_reason() instead
include/net/cfg80211.h:6643: warning: expecting prototype for wiphy_rfkill_set_hw_state(). Prototype was for wiphy_rfkill_set_hw_state_reason() instead

Introduced by commit

  6f779a66dc84 ("cfg80211: allow specifying a reason for hw_rfkill")

-- 
Cheers,
Stephen Rothwell

[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 488 bytes --]

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

* Re: linux-next: build warning after merge of the mac80211-next tree
  2018-05-24  8:51       ` Arnd Bergmann
@ 2018-05-24 10:08         ` Kalle Valo
  0 siblings, 0 replies; 14+ messages in thread
From: Kalle Valo @ 2018-05-24 10:08 UTC (permalink / raw)
  To: Arnd Bergmann
  Cc: Stephen Rothwell, Johannes Berg, Linux-Next Mailing List,
	Linux Kernel Mailing List, Toke Høiland-Jørgensen,
	linux-wireless

Arnd Bergmann <arnd@arndb.de> writes:

> On Thu, May 24, 2018 at 6:11 AM, Kalle Valo <kvalo@codeaurora.org> wrote:
>> Arnd Bergmann <arnd@arndb.de> writes:
>>> I also bisected this new warning to the same commit above:
>>>
>>> net/batman-adv/bat_v_elp.c: In function 'batadv_v_elp_get_throughput':
>>> net/batman-adv/bat_v_elp.c:154:1: warning: the frame size of 1736
>>> bytes is larger than 1024 bytes [-Wframe-larger-than=]
>>
>> This should fix it:
>>
>> 8689c051a201 cfg80211: dynamically allocate per-tid stats for station info
>>
>> https://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git/commit/?id=8689c051a20195b228e19acb155c7d6e48a86753
>
> Thanks for the pointer, I'll just wait for that to make it into
> linux-next (which hasn't been released in a few days now) then.

Yeah, Stephen announced that he won't be making linux-next builds this
week. I think he will be back next week.

-- 
Kalle Valo

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

* Re: linux-next: build warning after merge of the mac80211-next tree
  2018-05-24  4:11     ` Kalle Valo
@ 2018-05-24  8:51       ` Arnd Bergmann
  2018-05-24 10:08         ` Kalle Valo
  0 siblings, 1 reply; 14+ messages in thread
From: Arnd Bergmann @ 2018-05-24  8:51 UTC (permalink / raw)
  To: Kalle Valo
  Cc: Stephen Rothwell, Johannes Berg, Linux-Next Mailing List,
	Linux Kernel Mailing List, Toke Høiland-Jørgensen,
	linux-wireless

On Thu, May 24, 2018 at 6:11 AM, Kalle Valo <kvalo@codeaurora.org> wrote:
> Arnd Bergmann <arnd@arndb.de> writes:
>> I also bisected this new warning to the same commit above:
>>
>> net/batman-adv/bat_v_elp.c: In function 'batadv_v_elp_get_throughput':
>> net/batman-adv/bat_v_elp.c:154:1: warning: the frame size of 1736
>> bytes is larger than 1024 bytes [-Wframe-larger-than=]
>
> This should fix it:
>
> 8689c051a201 cfg80211: dynamically allocate per-tid stats for station info
>
> https://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git/commit/?id=8689c051a20195b228e19acb155c7d6e48a86753

Thanks for the pointer, I'll just wait for that to make it into
linux-next (which
hasn't been released in a few days now) then.

      Arnd

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

* Re: linux-next: build warning after merge of the mac80211-next tree
  2018-05-23 21:55   ` Arnd Bergmann
@ 2018-05-24  4:11     ` Kalle Valo
  2018-05-24  8:51       ` Arnd Bergmann
  0 siblings, 1 reply; 14+ messages in thread
From: Kalle Valo @ 2018-05-24  4:11 UTC (permalink / raw)
  To: Arnd Bergmann
  Cc: Stephen Rothwell, Johannes Berg, Linux-Next Mailing List,
	Linux Kernel Mailing List, Toke Høiland-Jørgensen,
	linux-wireless

Arnd Bergmann <arnd@arndb.de> writes:

> On Fri, May 11, 2018 at 2:20 PM, Kalle Valo <kvalo@codeaurora.org> wrote:
>> Stephen Rothwell <sfr@canb.auug.org.au> writes:
>>
>>> After merging the mac80211-next tree, today's linux-next build (arm_multi
>>> v7_defconfig) produced this warning:
>>>
>>> drivers/net/wireless/marvell/mwifiex/uap_event.c: In function 'mwifiex_process_uap_event':
>>> drivers/net/wireless/marvell/mwifiex/uap_event.c:333:1: warning: the frame size of 1680 bytes is larger than 1024 bytes [-Wframe-larger-than=]
>>>  }
>>>  ^
>>> drivers/net/wireless/broadcom/brcm80211/brcmfmac/cfg80211.c: In function 'brcmf_notify_connect_status_ap':
>>> drivers/net/wireless/broadcom/brcm80211/brcmfmac/cfg80211.c:5530:1: warning: the frame size of 1680 bytes is larger than 1024 bytes [-Wframe-larger-than=]
>>>  }
>>>  ^
>>>
>>> Maybe introduced by commit
>>>
>>>   52539ca89f36 ("cfg80211: Expose TXQ stats and parameters to userspace")
>>
>> Btw Stephen for mac80211 reports it would be a good idea to also cc
>> linux-wireless list, in case Johannes is not around etc.
>
> I also bisected this new warning to the same commit above:
>
> net/batman-adv/bat_v_elp.c: In function 'batadv_v_elp_get_throughput':
> net/batman-adv/bat_v_elp.c:154:1: warning: the frame size of 1736
> bytes is larger than 1024 bytes [-Wframe-larger-than=]

This should fix it:

8689c051a201 cfg80211: dynamically allocate per-tid stats for station info

https://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git/commit/?id=8689c051a20195b228e19acb155c7d6e48a86753

-- 
Kalle Valo

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

* Re: linux-next: build warning after merge of the mac80211-next tree
  2018-05-11 12:20 ` Kalle Valo
  2018-05-12  3:55   ` Stephen Rothwell
@ 2018-05-23 21:55   ` Arnd Bergmann
  2018-05-24  4:11     ` Kalle Valo
  1 sibling, 1 reply; 14+ messages in thread
From: Arnd Bergmann @ 2018-05-23 21:55 UTC (permalink / raw)
  To: Kalle Valo
  Cc: Stephen Rothwell, Johannes Berg, Linux-Next Mailing List,
	Linux Kernel Mailing List, Toke Høiland-Jørgensen,
	linux-wireless

On Fri, May 11, 2018 at 2:20 PM, Kalle Valo <kvalo@codeaurora.org> wrote:
> Stephen Rothwell <sfr@canb.auug.org.au> writes:
>
>> After merging the mac80211-next tree, today's linux-next build (arm_multi
>> v7_defconfig) produced this warning:
>>
>> drivers/net/wireless/marvell/mwifiex/uap_event.c: In function 'mwifiex_process_uap_event':
>> drivers/net/wireless/marvell/mwifiex/uap_event.c:333:1: warning: the frame size of 1680 bytes is larger than 1024 bytes [-Wframe-larger-than=]
>>  }
>>  ^
>> drivers/net/wireless/broadcom/brcm80211/brcmfmac/cfg80211.c: In function 'brcmf_notify_connect_status_ap':
>> drivers/net/wireless/broadcom/brcm80211/brcmfmac/cfg80211.c:5530:1: warning: the frame size of 1680 bytes is larger than 1024 bytes [-Wframe-larger-than=]
>>  }
>>  ^
>>
>> Maybe introduced by commit
>>
>>   52539ca89f36 ("cfg80211: Expose TXQ stats and parameters to userspace")
>
> Btw Stephen for mac80211 reports it would be a good idea to also cc
> linux-wireless list, in case Johannes is not around etc.

I also bisected this new warning to the same commit above:

net/batman-adv/bat_v_elp.c: In function 'batadv_v_elp_get_throughput':
net/batman-adv/bat_v_elp.c:154:1: warning: the frame size of 1736
bytes is larger than 1024 bytes [-Wframe-larger-than=]

      Arnd

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

* Re: linux-next: build warning after merge of the mac80211-next tree
  2018-05-09  4:56 Stephen Rothwell
  2018-05-09  7:44 ` Johannes Berg
  2018-05-11 12:20 ` Kalle Valo
@ 2018-05-12  3:57 ` Stephen Rothwell
  2 siblings, 0 replies; 14+ messages in thread
From: Stephen Rothwell @ 2018-05-12  3:57 UTC (permalink / raw)
  To: Johannes Berg
  Cc: Linux-Next Mailing List, Linux Kernel Mailing List,
	Toke Høiland-Jørgensen, Wireless

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

Hi all,

Just cc'ing the wireless list at Kalle's suggestion.

On Wed, 9 May 2018 14:56:24 +1000 Stephen Rothwell <sfr@canb.auug.org.au> wrote:
>
> Hi Johannes,
> 
> After merging the mac80211-next tree, today's linux-next build (arm_multi
> v7_defconfig) produced this warning:
> 
> drivers/net/wireless/marvell/mwifiex/uap_event.c: In function 'mwifiex_process_uap_event':
> drivers/net/wireless/marvell/mwifiex/uap_event.c:333:1: warning: the frame size of 1680 bytes is larger than 1024 bytes [-Wframe-larger-than=]
>  }
>  ^
> drivers/net/wireless/broadcom/brcm80211/brcmfmac/cfg80211.c: In function 'brcmf_notify_connect_status_ap':
> drivers/net/wireless/broadcom/brcm80211/brcmfmac/cfg80211.c:5530:1: warning: the frame size of 1680 bytes is larger than 1024 bytes [-Wframe-larger-than=]
>  }
>  ^
> 
> Maybe introduced by commit
> 
>   52539ca89f36 ("cfg80211: Expose TXQ stats and parameters to userspace")

-- 
Cheers,
Stephen Rothwell

[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 488 bytes --]

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

* Re: linux-next: build warning after merge of the mac80211-next tree
  2018-05-11 12:20 ` Kalle Valo
@ 2018-05-12  3:55   ` Stephen Rothwell
  2018-05-23 21:55   ` Arnd Bergmann
  1 sibling, 0 replies; 14+ messages in thread
From: Stephen Rothwell @ 2018-05-12  3:55 UTC (permalink / raw)
  To: Kalle Valo
  Cc: Johannes Berg, Linux-Next Mailing List,
	Linux Kernel Mailing List, Toke Høiland-Jørgensen,
	Wireless

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

Hi Kalle,

On Fri, 11 May 2018 15:20:23 +0300 Kalle Valo <kvalo@codeaurora.org> wrote:
>
> Btw Stephen for mac80211 reports it would be a good idea to also cc
> linux-wireless list, in case Johannes is not around etc.

Thanks for the suggestion.  Done.

-- 
Cheers,
Stephen Rothwell

[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 488 bytes --]

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

* Re: linux-next: build warning after merge of the mac80211-next tree
  2018-05-09  4:56 Stephen Rothwell
  2018-05-09  7:44 ` Johannes Berg
@ 2018-05-11 12:20 ` Kalle Valo
  2018-05-12  3:55   ` Stephen Rothwell
  2018-05-23 21:55   ` Arnd Bergmann
  2018-05-12  3:57 ` Stephen Rothwell
  2 siblings, 2 replies; 14+ messages in thread
From: Kalle Valo @ 2018-05-11 12:20 UTC (permalink / raw)
  To: Stephen Rothwell
  Cc: Johannes Berg, Linux-Next Mailing List,
	Linux Kernel Mailing List, Toke Høiland-Jørgensen

Stephen Rothwell <sfr@canb.auug.org.au> writes:

> After merging the mac80211-next tree, today's linux-next build (arm_multi
> v7_defconfig) produced this warning:
>
> drivers/net/wireless/marvell/mwifiex/uap_event.c: In function 'mwifiex_process_uap_event':
> drivers/net/wireless/marvell/mwifiex/uap_event.c:333:1: warning: the frame size of 1680 bytes is larger than 1024 bytes [-Wframe-larger-than=]
>  }
>  ^
> drivers/net/wireless/broadcom/brcm80211/brcmfmac/cfg80211.c: In function 'brcmf_notify_connect_status_ap':
> drivers/net/wireless/broadcom/brcm80211/brcmfmac/cfg80211.c:5530:1: warning: the frame size of 1680 bytes is larger than 1024 bytes [-Wframe-larger-than=]
>  }
>  ^
>
> Maybe introduced by commit
>
>   52539ca89f36 ("cfg80211: Expose TXQ stats and parameters to userspace")

Btw Stephen for mac80211 reports it would be a good idea to also cc
linux-wireless list, in case Johannes is not around etc.

-- 
Kalle Valo

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

* Re: linux-next: build warning after merge of the mac80211-next tree
  2018-05-09  4:56 Stephen Rothwell
@ 2018-05-09  7:44 ` Johannes Berg
  2018-05-11 12:20 ` Kalle Valo
  2018-05-12  3:57 ` Stephen Rothwell
  2 siblings, 0 replies; 14+ messages in thread
From: Johannes Berg @ 2018-05-09  7:44 UTC (permalink / raw)
  To: Stephen Rothwell
  Cc: Linux-Next Mailing List, Linux Kernel Mailing List,
	Toke Høiland-Jørgensen

Thanks Stephen,

The 0-day bot also gave me this heads-up, there are a few more places
like it too. I'd asked Toke to fix the ones in the stack, but we both
missed the ones in the drivers. I'll get a fix in for that one way or
the other.

johannes

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

* linux-next: build warning after merge of the mac80211-next tree
@ 2018-05-09  4:56 Stephen Rothwell
  2018-05-09  7:44 ` Johannes Berg
                   ` (2 more replies)
  0 siblings, 3 replies; 14+ messages in thread
From: Stephen Rothwell @ 2018-05-09  4:56 UTC (permalink / raw)
  To: Johannes Berg
  Cc: Linux-Next Mailing List, Linux Kernel Mailing List,
	Toke Høiland-Jørgensen

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

Hi Johannes,

After merging the mac80211-next tree, today's linux-next build (arm_multi
v7_defconfig) produced this warning:

drivers/net/wireless/marvell/mwifiex/uap_event.c: In function 'mwifiex_process_uap_event':
drivers/net/wireless/marvell/mwifiex/uap_event.c:333:1: warning: the frame size of 1680 bytes is larger than 1024 bytes [-Wframe-larger-than=]
 }
 ^
drivers/net/wireless/broadcom/brcm80211/brcmfmac/cfg80211.c: In function 'brcmf_notify_connect_status_ap':
drivers/net/wireless/broadcom/brcm80211/brcmfmac/cfg80211.c:5530:1: warning: the frame size of 1680 bytes is larger than 1024 bytes [-Wframe-larger-than=]
 }
 ^

Maybe introduced by commit

  52539ca89f36 ("cfg80211: Expose TXQ stats and parameters to userspace")

-- 
Cheers,
Stephen Rothwell

[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 488 bytes --]

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

end of thread, other threads:[~2021-04-13 11:32 UTC | newest]

Thread overview: 14+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-11-09  5:43 linux-next: build warning after merge of the mac80211-next tree Stephen Rothwell
2020-11-10  8:43 ` Johannes Berg
  -- strict thread matches above, loose matches on Subject: below --
2021-04-13 10:33 Stephen Rothwell
2021-04-13 10:39 ` Grumbach, Emmanuel
2021-04-13 11:32   ` Johannes Berg
2018-05-09  4:56 Stephen Rothwell
2018-05-09  7:44 ` Johannes Berg
2018-05-11 12:20 ` Kalle Valo
2018-05-12  3:55   ` Stephen Rothwell
2018-05-23 21:55   ` Arnd Bergmann
2018-05-24  4:11     ` Kalle Valo
2018-05-24  8:51       ` Arnd Bergmann
2018-05-24 10:08         ` Kalle Valo
2018-05-12  3:57 ` Stephen Rothwell

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).