public inbox for linux-doc@vger.kernel.org
 help / color / mirror / Atom feed
From: Akira Yokosawa <akiyks@gmail.com>
To: corbet@lwn.net
Cc: linux-doc@vger.kernel.org,
	linux-kernel-mentees@lists.linuxfoundation.org,
	swarupkotikalapudi@gmail.com, yujie.liu@intel.com,
	Akira Yokosawa <akiyks@gmail.com>
Subject: Re: [PATCH] scripts/kernel-doc: fix make htmldoc warning
Date: Mon, 30 Oct 2023 09:02:32 +0900	[thread overview]
Message-ID: <645ffbbc-8b33-4a93-94b6-6487e31c7f4b@gmail.com> (raw)
In-Reply-To: <87a5s15mm5.fsf@meer.lwn.net>

Hi,

On Date: Sun, 29 Oct 2023 12:06:58 -0600, Jonathan Corbet wrote:
> Swarup Laxman Kotiaklapudi <swarupkotikalapudi@gmail.com> writes:
> 
>> make htmldocs has below warnings:
>>
>> ..
>> Variable length lookbehind is experimental in regex;
>> marked by <-- HERE in m/(?<=^|\s)-Werror(?=$|\s)
>> <-- HERE / at ./scripts/kernel-doc line 188.
>> ...
> 
> So how do you get this warning?  I've not seen it.  Which version of
> Perl? 

I get this warning on Ubuntu 22.04LTS, whose perl is v5.34.0.

Swarup's change silences the warning there.

I could provide a tested-by: tag if I was familiar with that
"variable length lookbehind" thing ...

        Thanks, Akira

> 
>> "-Werror" option in make command,
>> needs "-Werror" to have space before
>> and after while running make command,
>> hence space checking is sepratly done,
>> and is not part of lookbehind regular expression.
>>
>> Below command also didn't
>> show any error:
>>  make KCFLAGS="-Werror=return-type" W=1 kernel/fork.o
>>
>> Fixes: 91f950e8b9d8 ("scripts/kernel-doc: match -Werror flag strictly")
>> Signed-off-by: Swarup Laxman Kotiaklapudi <swarupkotikalapudi@gmail.com>
>> ---
>>  scripts/kernel-doc | 2 +-
>>  1 file changed, 1 insertion(+), 1 deletion(-)
>>
>> diff --git a/scripts/kernel-doc b/scripts/kernel-doc
>> index d660e1f4b483..aa9e3e198d12 100755
>> --- a/scripts/kernel-doc
>> +++ b/scripts/kernel-doc
>> @@ -185,7 +185,7 @@ if (defined($ENV{'KBUILD_VERBOSE'}) && $ENV{'KBUILD_VERBOSE'} =~ '1') {
>>  if (defined($ENV{'KCFLAGS'})) {
>>  	my $kcflags = "$ENV{'KCFLAGS'}";
>>  
>> -	if ($kcflags =~ /(?<=^|\s)-Werror(?=$|\s)/) {
>> +	if ($kcflags =~ /(?<=^|)(\s)-Werror(?=$|)(\s)/) {
>>  		$Werror = 1;
>>  	}
>>  }
> 
> Thanks,
> 
> jon


  reply	other threads:[~2023-10-30  0:02 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-10-28 18:22 [PATCH] scripts/kernel-doc: fix make htmldoc warning Swarup Laxman Kotiaklapudi
2023-10-29 18:06 ` Jonathan Corbet
2023-10-30  0:02   ` Akira Yokosawa [this message]
2023-10-30  5:37     ` Yujie Liu
2023-10-30  9:18   ` Yujie Liu

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=645ffbbc-8b33-4a93-94b6-6487e31c7f4b@gmail.com \
    --to=akiyks@gmail.com \
    --cc=corbet@lwn.net \
    --cc=linux-doc@vger.kernel.org \
    --cc=linux-kernel-mentees@lists.linuxfoundation.org \
    --cc=swarupkotikalapudi@gmail.com \
    --cc=yujie.liu@intel.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox