linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* linux-next: build warnings after merge of Linus' tree
@ 2021-03-29  9:04 Stephen Rothwell
  2021-04-21  6:23 ` Stephen Rothwell
  0 siblings, 1 reply; 7+ messages in thread
From: Stephen Rothwell @ 2021-03-29  9:04 UTC (permalink / raw)
  To: Rob Herring
  Cc: Mauro Carvalho Chehab, Jonathan Corbet, Greg Kroah-Hartman,
	Grant Likely, Linux Kernel Mailing List, Linux Next Mailing List

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

Hi all,

After merging Linus' tree, today's linux-next build (htmldocs) produced
these warnings:

include/linux/of.h:1211: warning: Function parameter or member 'output' not described in 'of_property_read_string_index'
include/linux/of.h:1211: warning: Excess function parameter 'out_string' description in 'of_property_read_string_index'

Introduced by commit

  a87fa1d81a9f ("of: Fix overflow bug in string property parsing functions")

include/linux/of.h:1480: warning: cannot understand function prototype: 'enum of_overlay_notify_action '

Introduced by commit

  39a842e22c1b ("of/overlay: add of overlay notifications")

I assume that these warnings have turned up now due to better(?) tooling.

-- 
Cheers,
Stephen Rothwell

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

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

* Re: linux-next: build warnings after merge of Linus' tree
  2021-03-29  9:04 linux-next: build warnings after merge of Linus' tree Stephen Rothwell
@ 2021-04-21  6:23 ` Stephen Rothwell
  2021-04-21 13:06   ` Rob Herring
  0 siblings, 1 reply; 7+ messages in thread
From: Stephen Rothwell @ 2021-04-21  6:23 UTC (permalink / raw)
  To: Rob Herring
  Cc: Mauro Carvalho Chehab, Jonathan Corbet, Greg Kroah-Hartman,
	Grant Likely, Linux Kernel Mailing List, Linux Next Mailing List

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

Hi all,

On Mon, 29 Mar 2021 20:04:10 +1100 Stephen Rothwell <sfr@canb.auug.org.au> wrote:
> 
> After merging Linus' tree, today's linux-next build (htmldocs) produced
> these warnings:
> 
> include/linux/of.h:1211: warning: Function parameter or member 'output' not described in 'of_property_read_string_index'
> include/linux/of.h:1211: warning: Excess function parameter 'out_string' description in 'of_property_read_string_index'
> 
> Introduced by commit
> 
>   a87fa1d81a9f ("of: Fix overflow bug in string property parsing functions")
> 
> I assume that these warnings have turned up now due to better(?) tooling.

I am still seeing these warnings (as of next-20210420).

-- 
Cheers,
Stephen Rothwell

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

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

* Re: linux-next: build warnings after merge of Linus' tree
  2021-04-21  6:23 ` Stephen Rothwell
@ 2021-04-21 13:06   ` Rob Herring
  0 siblings, 0 replies; 7+ messages in thread
From: Rob Herring @ 2021-04-21 13:06 UTC (permalink / raw)
  To: Stephen Rothwell
  Cc: Mauro Carvalho Chehab, Jonathan Corbet, Greg Kroah-Hartman,
	Grant Likely, Linux Kernel Mailing List, Linux Next Mailing List

On Wed, Apr 21, 2021 at 1:23 AM Stephen Rothwell <sfr@canb.auug.org.au> wrote:
>
> Hi all,
>
> On Mon, 29 Mar 2021 20:04:10 +1100 Stephen Rothwell <sfr@canb.auug.org.au> wrote:
> >
> > After merging Linus' tree, today's linux-next build (htmldocs) produced
> > these warnings:
> >
> > include/linux/of.h:1211: warning: Function parameter or member 'output' not described in 'of_property_read_string_index'
> > include/linux/of.h:1211: warning: Excess function parameter 'out_string' description in 'of_property_read_string_index'
> >
> > Introduced by commit
> >
> >   a87fa1d81a9f ("of: Fix overflow bug in string property parsing functions")
> >
> > I assume that these warnings have turned up now due to better(?) tooling.
>
> I am still seeing these warnings (as of next-20210420).

A fix is now in my tree.

Rob

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

* Re: linux-next: build warnings after merge of Linus' tree
  2023-05-08  4:52 ` Randy Dunlap
  2023-05-08  4:53   ` Randy Dunlap
@ 2023-05-08  7:50   ` Peter Zijlstra
  1 sibling, 0 replies; 7+ messages in thread
From: Peter Zijlstra @ 2023-05-08  7:50 UTC (permalink / raw)
  To: Randy Dunlap
  Cc: Stephen Rothwell, Mathieu Desnoyers, Linux Kernel Mailing List,
	Linux Next Mailing List

On Sun, May 07, 2023 at 09:52:22PM -0700, Randy Dunlap wrote:
> 
> 
> On 5/7/23 21:49, Stephen Rothwell wrote:
> > Hi all,
> > 
> > While building Linus' tree, today's linux-next build (htmldocs)
> > produced these warnings:
> > 
> > kernel/sched/core.c:11496: warning: Cannot understand  * @cid_lock: Guarantee forward-progress of cid allocation.
> >  on line 11496 - I thought it was a doc line
> > kernel/sched/core.c:11505: warning: Cannot understand  * @use_cid_lock: Select cid allocation behavior: lock-free vs spinlock.
> >  on line 11505 - I thought it was a doc line
> > 
> > Introduced by commit
> > 
> >   223baf9d17f2 ("sched: Fix performance regression introduced by mm_cid")
> > 
> 
> I have sent a patch:
>   https://lore.kernel.org/lkml/20230428031111.322-1-rdunlap@infradead.org
> but haven't seen any replies to it (possibly due to the merge window or travel).

I have it, and now that -rc1 is out the door, I'll queue it for -urgent.

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

* Re: linux-next: build warnings after merge of Linus' tree
  2023-05-08  4:52 ` Randy Dunlap
@ 2023-05-08  4:53   ` Randy Dunlap
  2023-05-08  7:50   ` Peter Zijlstra
  1 sibling, 0 replies; 7+ messages in thread
From: Randy Dunlap @ 2023-05-08  4:53 UTC (permalink / raw)
  To: Stephen Rothwell, Peter Zijlstra
  Cc: Mathieu Desnoyers, Linux Kernel Mailing List, Linux Next Mailing List



On 5/7/23 21:52, Randy Dunlap wrote:
> 
> 
> On 5/7/23 21:49, Stephen Rothwell wrote:
>> Hi all,
>>
>> While building Linus' tree, today's linux-next build (htmldocs)
>> produced these warnings:
>>
>> kernel/sched/core.c:11496: warning: Cannot understand  * @cid_lock: Guarantee forward-progress of cid allocation.
>>  on line 11496 - I thought it was a doc line
>> kernel/sched/core.c:11505: warning: Cannot understand  * @use_cid_lock: Select cid allocation behavior: lock-free vs spinlock.
>>  on line 11505 - I thought it was a doc line
>>
>> Introduced by commit
>>
>>   223baf9d17f2 ("sched: Fix performance regression introduced by mm_cid")
>>
> 
> I have sent a patch:
>   https://lore.kernel.org/lkml/20230428031111.322-1-rdunlap@infradead.org
> but haven't seen any replies to it (possibly due to the merge window or travel).
> 

Oops, Peter did reply, but no info on merging it.

-- 
~Randy

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

* Re: linux-next: build warnings after merge of Linus' tree
  2023-05-08  4:49 Stephen Rothwell
@ 2023-05-08  4:52 ` Randy Dunlap
  2023-05-08  4:53   ` Randy Dunlap
  2023-05-08  7:50   ` Peter Zijlstra
  0 siblings, 2 replies; 7+ messages in thread
From: Randy Dunlap @ 2023-05-08  4:52 UTC (permalink / raw)
  To: Stephen Rothwell, Peter Zijlstra
  Cc: Mathieu Desnoyers, Linux Kernel Mailing List, Linux Next Mailing List



On 5/7/23 21:49, Stephen Rothwell wrote:
> Hi all,
> 
> While building Linus' tree, today's linux-next build (htmldocs)
> produced these warnings:
> 
> kernel/sched/core.c:11496: warning: Cannot understand  * @cid_lock: Guarantee forward-progress of cid allocation.
>  on line 11496 - I thought it was a doc line
> kernel/sched/core.c:11505: warning: Cannot understand  * @use_cid_lock: Select cid allocation behavior: lock-free vs spinlock.
>  on line 11505 - I thought it was a doc line
> 
> Introduced by commit
> 
>   223baf9d17f2 ("sched: Fix performance regression introduced by mm_cid")
> 

I have sent a patch:
  https://lore.kernel.org/lkml/20230428031111.322-1-rdunlap@infradead.org
but haven't seen any replies to it (possibly due to the merge window or travel).

-- 
~Randy

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

* linux-next: build warnings after merge of Linus' tree
@ 2023-05-08  4:49 Stephen Rothwell
  2023-05-08  4:52 ` Randy Dunlap
  0 siblings, 1 reply; 7+ messages in thread
From: Stephen Rothwell @ 2023-05-08  4:49 UTC (permalink / raw)
  To: Peter Zijlstra
  Cc: Mathieu Desnoyers, Linux Kernel Mailing List, Linux Next Mailing List

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

Hi all,

While building Linus' tree, today's linux-next build (htmldocs)
produced these warnings:

kernel/sched/core.c:11496: warning: Cannot understand  * @cid_lock: Guarantee forward-progress of cid allocation.
 on line 11496 - I thought it was a doc line
kernel/sched/core.c:11505: warning: Cannot understand  * @use_cid_lock: Select cid allocation behavior: lock-free vs spinlock.
 on line 11505 - I thought it was a doc line

Introduced by commit

  223baf9d17f2 ("sched: Fix performance regression introduced by mm_cid")

-- 
Cheers,
Stephen Rothwell

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

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

end of thread, other threads:[~2023-05-08  7:51 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-03-29  9:04 linux-next: build warnings after merge of Linus' tree Stephen Rothwell
2021-04-21  6:23 ` Stephen Rothwell
2021-04-21 13:06   ` Rob Herring
2023-05-08  4:49 Stephen Rothwell
2023-05-08  4:52 ` Randy Dunlap
2023-05-08  4:53   ` Randy Dunlap
2023-05-08  7:50   ` Peter Zijlstra

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).