Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1616770
| From | Hugues FRUCHET <hugues.fruchet@st.com> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | Re: [PATCH v1] checkpatch: test missing initial blank line in block comment |
| Date | 2017-04-05 11:50 +0200 |
| Message-ID | <tsPJE-UB-11@gated-at.bofh.it> (permalink) |
| References | <ts5dM-4gF-5@gated-at.bofh.it> <ts5dM-4gF-3@gated-at.bofh.it> <tsfwv-2wG-37@gated-at.bofh.it> <tsOud-bB-1@gated-at.bofh.it> <tsODU-f3-31@gated-at.bofh.it> |
| Organization | linux.* mail to news gateway |
On 04/05/2017 10:35 AM, Joe Perches wrote:
> On Wed, 2017-04-05 at 08:23 +0000, Hugues FRUCHET wrote:
>> Hi Joe, thanks for reviewing,
>
> Hello Hugues
>
>> I have run the command you advice on the entire kernel code, modifying
>> the script to only match the newly introduced check case.
>> There was 14389 hits, quite huge, so I cannot 100% certify that there
>> are no false positives, but I have checked the output carefully and
>> found 2 limit cases:
>>
>> 1) space character placed just after "/*"
>> WARNING: Block comments starts with an empty /*
>> #330: FILE: arch/alpha/kernel/core_irongate.c:330:
>> + /*
>> + * Check for within the AGP aperture...
>> => 146 hits (grep -c -n -E "\/\* $" /tmp/check.txt)
>>
>> 2) // style comment followed by pointer dereference
>> WARNING: Block comments starts with an empty /*
>> #426: FILE: drivers/media/dvb-core/dvb_ca_en50221.c:426:
>> + // success
>> + *tupleType = _tupleType;
>> => 4 hits
>>
>> Anyway this reveal comment style related issues, so I would say that we
>> can keep script as it is, what do you think about ?
>
> Glancing at the output, there is also the comment
> in a multiline macro case:
>
> WARNING: Block comments starts with an empty /*
> #354: FILE: arch/mips/include/asm/processor.h:354:
> + /* \
> + * Other stuff associated with the process \
>
> Dunno how common that is, but maybe the test
> should be changed to avoid those.
>
Here is a proposal that remove this macro case:
# Missing initial /*
if ($realfile !~ m@^(drivers/net/|net/)@ && #networking exception
$prevrawline =~ /^\+[ \t]\/\**.+[ \t]/ && #start with /*...
$prevrawline !~ /^\+.*\/\*.*\*\/[ \t]*/ && #no inline /*...*/
+ $prevrawline !~ /^\+[ \t]\/\*+[ \t]+\\$/ &&#no macro /*<tab><\>
$rawline =~ /^\+[ \t]*\*/ &&
$realline > 2) {
WARN("MISSING_INITIAL_BLOCK_COMMENT_STYLE",
"Block comments starts with an empty /*\n" . $hereprev);
}
BR,
Hugues.
Back to linux.kernel | Previous | Next — Previous in thread | Next in thread | Find similar | Unroll thread
[PATCH v1] checkpatch: test missing initial blank line in block comment Hugues Fruchet <hugues.fruchet@st.com> - 2017-04-03 10:10 +0200
Re: [PATCH v1] checkpatch: test missing initial blank line in block comment Joe Perches <joe@perches.com> - 2017-04-03 21:10 +0200
Re: [PATCH v1] checkpatch: test missing initial blank line in block comment Hugues FRUCHET <hugues.fruchet@st.com> - 2017-04-05 10:30 +0200
Re: [PATCH v1] checkpatch: test missing initial blank line in block comment Joe Perches <joe@perches.com> - 2017-04-05 10:40 +0200
Re: [PATCH v1] checkpatch: test missing initial blank line in block comment Hugues FRUCHET <hugues.fruchet@st.com> - 2017-04-05 11:50 +0200
Re: [PATCH v1] checkpatch: test missing initial blank line in block comment Joe Perches <joe@perches.com> - 2017-04-05 12:00 +0200
Re: [PATCH v1] checkpatch: test missing initial blank line in block comment Hugues FRUCHET <hugues.fruchet@st.com> - 2017-04-05 15:30 +0200
Re: [PATCH v1] checkpatch: test missing initial blank line in block comment Hugues FRUCHET <hugues.fruchet@st.com> - 2017-04-07 12:00 +0200
Re: [PATCH v1] checkpatch: test missing initial blank line in block comment Joe Perches <joe@perches.com> - 2017-04-07 12:30 +0200
csiph-web