[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <20260123112856.GS166857@noisy.programming.kicks-ass.net>
Date: Fri, 23 Jan 2026 12:28:56 +0100
From: Peter Zijlstra <peterz@...radead.org>
To: Mauro Carvalho Chehab <mchehab+huawei@...nel.org>
Cc: Randy Dunlap <rdunlap@...radead.org>,
Stephen Rothwell <sfr@...b.auug.org.au>,
Thomas Gleixner <tglx@...utronix.de>,
Ingo Molnar <mingo@...nel.org>, "H. Peter Anvin" <hpa@...or.com>,
Marco Elver <elver@...gle.com>,
Linux Kernel Mailing List <linux-kernel@...r.kernel.org>,
Linux Next Mailing List <linux-next@...r.kernel.org>,
Mauro Carvalho Chehab <mchehab@...nel.org>,
Linux Documentation <linux-doc@...r.kernel.org>,
Jonathan Corbet <corbet@....net>
Subject: Re: linux-next: [DOCS] build warning after merge of the tip tree
On Fri, Jan 23, 2026 at 08:11:26AM +0100, Mauro Carvalho Chehab wrote:
> > tools/lib/python/kdoc/kdoc_parser.py | 1 +
> > 1 file changed, 1 insertion(+)
> >
> > --- a/tools/lib/python/kdoc/kdoc_parser.py
> > +++ b/tools/lib/python/kdoc/kdoc_parser.py
> > @@ -186,6 +186,7 @@ function_xforms = [
> > (KernRe(r"__sched +"), ""),
> > (KernRe(r"_noprof"), ""),
> > (KernRe(r"__always_unused *"), ""),
> > + (KernRe(r"__cond_acquires\s*\(.*\)"), ""),
>
> Regex here is too broad, as it is greedy: it may drop more
> than expected. Perhaps:
>
> (KernRe(r"__cond_acquires\s*\([^\)]*\)"), ""),
I have of course no idea what so ever how any of this works, but it
occurs to me that __acquires() and __releases() are not in that same
list, what happens to them?
Also, there will 'soon' be an equivalent: __cond_releases():
https://lkml.kernel.org/r/20260121111213.634625032@infradead.org
Powered by blists - more mailing lists