docs: Add more message type documentations for checkpatch
- Document a couple of more checkpatch message types. - Add a blank line before all `See:` lines to improve the rst output. - Create a new subsection `Permissions` and move a few types to it. Signed-off-by: Dwaipayan Ray <dwaipayanray1@gmail.com> Acked-by: Lukas Bulwahn <lukas.bulwahn@gmail.com> Link: https://lore.kernel.org/r/20210515132348.19082-1-dwaipayanray1@gmail.com Signed-off-by: Jonathan Corbet <corbet@lwn.net>
This commit is contained in:
parent
cc3496bf86
commit
76001b8bbf
@ -246,6 +246,7 @@ Allocation style
|
|||||||
The first argument for kcalloc or kmalloc_array should be the
|
The first argument for kcalloc or kmalloc_array should be the
|
||||||
number of elements. sizeof() as the first argument is generally
|
number of elements. sizeof() as the first argument is generally
|
||||||
wrong.
|
wrong.
|
||||||
|
|
||||||
See: https://www.kernel.org/doc/html/latest/core-api/memory-allocation.html
|
See: https://www.kernel.org/doc/html/latest/core-api/memory-allocation.html
|
||||||
|
|
||||||
**ALLOC_SIZEOF_STRUCT**
|
**ALLOC_SIZEOF_STRUCT**
|
||||||
@ -264,6 +265,7 @@ Allocation style
|
|||||||
**ALLOC_WITH_MULTIPLY**
|
**ALLOC_WITH_MULTIPLY**
|
||||||
Prefer kmalloc_array/kcalloc over kmalloc/kzalloc with a
|
Prefer kmalloc_array/kcalloc over kmalloc/kzalloc with a
|
||||||
sizeof multiply.
|
sizeof multiply.
|
||||||
|
|
||||||
See: https://www.kernel.org/doc/html/latest/core-api/memory-allocation.html
|
See: https://www.kernel.org/doc/html/latest/core-api/memory-allocation.html
|
||||||
|
|
||||||
|
|
||||||
@ -284,6 +286,7 @@ API usage
|
|||||||
BUG() or BUG_ON() should be avoided totally.
|
BUG() or BUG_ON() should be avoided totally.
|
||||||
Use WARN() and WARN_ON() instead, and handle the "impossible"
|
Use WARN() and WARN_ON() instead, and handle the "impossible"
|
||||||
error condition as gracefully as possible.
|
error condition as gracefully as possible.
|
||||||
|
|
||||||
See: https://www.kernel.org/doc/html/latest/process/deprecated.html#bug-and-bug-on
|
See: https://www.kernel.org/doc/html/latest/process/deprecated.html#bug-and-bug-on
|
||||||
|
|
||||||
**CONSIDER_KSTRTO**
|
**CONSIDER_KSTRTO**
|
||||||
@ -292,12 +295,23 @@ API usage
|
|||||||
may lead to unexpected results in callers. The respective kstrtol(),
|
may lead to unexpected results in callers. The respective kstrtol(),
|
||||||
kstrtoll(), kstrtoul(), and kstrtoull() functions tend to be the
|
kstrtoll(), kstrtoul(), and kstrtoull() functions tend to be the
|
||||||
correct replacements.
|
correct replacements.
|
||||||
|
|
||||||
See: https://www.kernel.org/doc/html/latest/process/deprecated.html#simple-strtol-simple-strtoll-simple-strtoul-simple-strtoull
|
See: https://www.kernel.org/doc/html/latest/process/deprecated.html#simple-strtol-simple-strtoll-simple-strtoul-simple-strtoull
|
||||||
|
|
||||||
|
**IN_ATOMIC**
|
||||||
|
in_atomic() is not for driver use so any such use is reported as an ERROR.
|
||||||
|
Also in_atomic() is often used to determine if we may sleep, but it is not
|
||||||
|
reliable in this use model therefore its use is strongly discouraged.
|
||||||
|
|
||||||
|
However, in_atomic() is ok for core kernel use.
|
||||||
|
|
||||||
|
See: https://lore.kernel.org/lkml/20080320201723.b87b3732.akpm@linux-foundation.org/
|
||||||
|
|
||||||
**LOCKDEP**
|
**LOCKDEP**
|
||||||
The lockdep_no_validate class was added as a temporary measure to
|
The lockdep_no_validate class was added as a temporary measure to
|
||||||
prevent warnings on conversion of device->sem to device->mutex.
|
prevent warnings on conversion of device->sem to device->mutex.
|
||||||
It should not be used for any other purpose.
|
It should not be used for any other purpose.
|
||||||
|
|
||||||
See: https://lore.kernel.org/lkml/1268959062.9440.467.camel@laptop/
|
See: https://lore.kernel.org/lkml/1268959062.9440.467.camel@laptop/
|
||||||
|
|
||||||
**MALFORMED_INCLUDE**
|
**MALFORMED_INCLUDE**
|
||||||
@ -308,11 +322,18 @@ API usage
|
|||||||
**USE_LOCKDEP**
|
**USE_LOCKDEP**
|
||||||
lockdep_assert_held() annotations should be preferred over
|
lockdep_assert_held() annotations should be preferred over
|
||||||
assertions based on spin_is_locked()
|
assertions based on spin_is_locked()
|
||||||
|
|
||||||
See: https://www.kernel.org/doc/html/latest/locking/lockdep-design.html#annotations
|
See: https://www.kernel.org/doc/html/latest/locking/lockdep-design.html#annotations
|
||||||
|
|
||||||
**UAPI_INCLUDE**
|
**UAPI_INCLUDE**
|
||||||
No #include statements in include/uapi should use a uapi/ path.
|
No #include statements in include/uapi should use a uapi/ path.
|
||||||
|
|
||||||
|
**USLEEP_RANGE**
|
||||||
|
usleep_range() should be preferred over udelay(). The proper way of
|
||||||
|
using usleep_range() is mentioned in the kernel docs.
|
||||||
|
|
||||||
|
See: https://www.kernel.org/doc/html/latest/timers/timers-howto.html#delays-information-on-the-various-kernel-delay-sleep-mechanisms
|
||||||
|
|
||||||
|
|
||||||
Comment style
|
Comment style
|
||||||
-------------
|
-------------
|
||||||
@ -338,6 +359,7 @@ Comment style
|
|||||||
**C99_COMMENTS**
|
**C99_COMMENTS**
|
||||||
C99 style single line comments (//) should not be used.
|
C99 style single line comments (//) should not be used.
|
||||||
Prefer the block comment style instead.
|
Prefer the block comment style instead.
|
||||||
|
|
||||||
See: https://www.kernel.org/doc/html/latest/process/coding-style.html#commenting
|
See: https://www.kernel.org/doc/html/latest/process/coding-style.html#commenting
|
||||||
|
|
||||||
|
|
||||||
@ -347,6 +369,7 @@ Commit message
|
|||||||
**BAD_SIGN_OFF**
|
**BAD_SIGN_OFF**
|
||||||
The signed-off-by line does not fall in line with the standards
|
The signed-off-by line does not fall in line with the standards
|
||||||
specified by the community.
|
specified by the community.
|
||||||
|
|
||||||
See: https://www.kernel.org/doc/html/latest/process/submitting-patches.html#developer-s-certificate-of-origin-1-1
|
See: https://www.kernel.org/doc/html/latest/process/submitting-patches.html#developer-s-certificate-of-origin-1-1
|
||||||
|
|
||||||
**BAD_STABLE_ADDRESS_STYLE**
|
**BAD_STABLE_ADDRESS_STYLE**
|
||||||
@ -368,12 +391,26 @@ Commit message
|
|||||||
**COMMIT_MESSAGE**
|
**COMMIT_MESSAGE**
|
||||||
The patch is missing a commit description. A brief
|
The patch is missing a commit description. A brief
|
||||||
description of the changes made by the patch should be added.
|
description of the changes made by the patch should be added.
|
||||||
|
|
||||||
See: https://www.kernel.org/doc/html/latest/process/submitting-patches.html#describe-your-changes
|
See: https://www.kernel.org/doc/html/latest/process/submitting-patches.html#describe-your-changes
|
||||||
|
|
||||||
|
**FROM_SIGN_OFF_MISMATCH**
|
||||||
|
The author's email does not match with that in the Signed-off-by:
|
||||||
|
line(s). This can be sometimes caused due to an improperly configured
|
||||||
|
email client.
|
||||||
|
|
||||||
|
This message is emitted due to any of the following reasons::
|
||||||
|
|
||||||
|
- The email names do not match.
|
||||||
|
- The email addresses do not match.
|
||||||
|
- The email subaddresses do not match.
|
||||||
|
- The email comments do not match.
|
||||||
|
|
||||||
**MISSING_SIGN_OFF**
|
**MISSING_SIGN_OFF**
|
||||||
The patch is missing a Signed-off-by line. A signed-off-by
|
The patch is missing a Signed-off-by line. A signed-off-by
|
||||||
line should be added according to Developer's certificate of
|
line should be added according to Developer's certificate of
|
||||||
Origin.
|
Origin.
|
||||||
|
|
||||||
See: https://www.kernel.org/doc/html/latest/process/submitting-patches.html#sign-your-work-the-developer-s-certificate-of-origin
|
See: https://www.kernel.org/doc/html/latest/process/submitting-patches.html#sign-your-work-the-developer-s-certificate-of-origin
|
||||||
|
|
||||||
**NO_AUTHOR_SIGN_OFF**
|
**NO_AUTHOR_SIGN_OFF**
|
||||||
@ -382,6 +419,7 @@ Commit message
|
|||||||
end of explanation of the patch to denote that the author has
|
end of explanation of the patch to denote that the author has
|
||||||
written it or otherwise has the rights to pass it on as an open
|
written it or otherwise has the rights to pass it on as an open
|
||||||
source patch.
|
source patch.
|
||||||
|
|
||||||
See: https://www.kernel.org/doc/html/latest/process/submitting-patches.html#sign-your-work-the-developer-s-certificate-of-origin
|
See: https://www.kernel.org/doc/html/latest/process/submitting-patches.html#sign-your-work-the-developer-s-certificate-of-origin
|
||||||
|
|
||||||
**DIFF_IN_COMMIT_MSG**
|
**DIFF_IN_COMMIT_MSG**
|
||||||
@ -389,6 +427,7 @@ Commit message
|
|||||||
This causes problems when one tries to apply a file containing both
|
This causes problems when one tries to apply a file containing both
|
||||||
the changelog and the diff because patch(1) tries to apply the diff
|
the changelog and the diff because patch(1) tries to apply the diff
|
||||||
which it found in the changelog.
|
which it found in the changelog.
|
||||||
|
|
||||||
See: https://lore.kernel.org/lkml/20150611134006.9df79a893e3636019ad2759e@linux-foundation.org/
|
See: https://lore.kernel.org/lkml/20150611134006.9df79a893e3636019ad2759e@linux-foundation.org/
|
||||||
|
|
||||||
**GERRIT_CHANGE_ID**
|
**GERRIT_CHANGE_ID**
|
||||||
@ -431,6 +470,7 @@ Comparison style
|
|||||||
**BOOL_COMPARISON**
|
**BOOL_COMPARISON**
|
||||||
Comparisons of A to true and false are better written
|
Comparisons of A to true and false are better written
|
||||||
as A and !A.
|
as A and !A.
|
||||||
|
|
||||||
See: https://lore.kernel.org/lkml/1365563834.27174.12.camel@joe-AO722/
|
See: https://lore.kernel.org/lkml/1365563834.27174.12.camel@joe-AO722/
|
||||||
|
|
||||||
**COMPARISON_TO_NULL**
|
**COMPARISON_TO_NULL**
|
||||||
@ -492,6 +532,7 @@ Macros, Attributes and Symbols
|
|||||||
The kernel does *not* use the ``__DATE__`` and ``__TIME__`` macros,
|
The kernel does *not* use the ``__DATE__`` and ``__TIME__`` macros,
|
||||||
and enables warnings if they are used as they can lead to
|
and enables warnings if they are used as they can lead to
|
||||||
non-deterministic builds.
|
non-deterministic builds.
|
||||||
|
|
||||||
See: https://www.kernel.org/doc/html/latest/kbuild/reproducible-builds.html#timestamps
|
See: https://www.kernel.org/doc/html/latest/kbuild/reproducible-builds.html#timestamps
|
||||||
|
|
||||||
**DEFINE_ARCH_HAS**
|
**DEFINE_ARCH_HAS**
|
||||||
@ -502,6 +543,7 @@ Macros, Attributes and Symbols
|
|||||||
want architectures able to override them with optimized ones, we
|
want architectures able to override them with optimized ones, we
|
||||||
should either use weak functions (appropriate for some cases), or
|
should either use weak functions (appropriate for some cases), or
|
||||||
the symbol that protects them should be the same symbol we use.
|
the symbol that protects them should be the same symbol we use.
|
||||||
|
|
||||||
See: https://lore.kernel.org/lkml/CA+55aFycQ9XJvEOsiM3txHL5bjUc8CeKWJNR_H+MiicaddB42Q@mail.gmail.com/
|
See: https://lore.kernel.org/lkml/CA+55aFycQ9XJvEOsiM3txHL5bjUc8CeKWJNR_H+MiicaddB42Q@mail.gmail.com/
|
||||||
|
|
||||||
**INIT_ATTRIBUTE**
|
**INIT_ATTRIBUTE**
|
||||||
@ -528,6 +570,20 @@ Macros, Attributes and Symbols
|
|||||||
...
|
...
|
||||||
}
|
}
|
||||||
|
|
||||||
|
**MISPLACED_INIT**
|
||||||
|
It is possible to use section markers on variables in a way
|
||||||
|
which gcc doesn't understand (or at least not the way the
|
||||||
|
developer intended)::
|
||||||
|
|
||||||
|
static struct __initdata samsung_pll_clock exynos4_plls[nr_plls] = {
|
||||||
|
|
||||||
|
does not put exynos4_plls in the .initdata section. The __initdata
|
||||||
|
marker can be virtually anywhere on the line, except right after
|
||||||
|
"struct". The preferred location is before the "=" sign if there is
|
||||||
|
one, or before the trailing ";" otherwise.
|
||||||
|
|
||||||
|
See: https://lore.kernel.org/lkml/1377655732.3619.19.camel@joe-AO722/
|
||||||
|
|
||||||
**MULTISTATEMENT_MACRO_USE_DO_WHILE**
|
**MULTISTATEMENT_MACRO_USE_DO_WHILE**
|
||||||
Macros with multiple statements should be enclosed in a
|
Macros with multiple statements should be enclosed in a
|
||||||
do - while block. Same should also be the case for macros
|
do - while block. Same should also be the case for macros
|
||||||
@ -541,6 +597,10 @@ Macros, Attributes and Symbols
|
|||||||
|
|
||||||
See: https://www.kernel.org/doc/html/latest/process/coding-style.html#macros-enums-and-rtl
|
See: https://www.kernel.org/doc/html/latest/process/coding-style.html#macros-enums-and-rtl
|
||||||
|
|
||||||
|
**PREFER_FALLTHROUGH**
|
||||||
|
Use the `fallthrough;` pseudo keyword instead of
|
||||||
|
`/* fallthrough */` like comments.
|
||||||
|
|
||||||
**WEAK_DECLARATION**
|
**WEAK_DECLARATION**
|
||||||
Using weak declarations like __attribute__((weak)) or __weak
|
Using weak declarations like __attribute__((weak)) or __weak
|
||||||
can have unintended link defects. Avoid using them.
|
can have unintended link defects. Avoid using them.
|
||||||
@ -551,6 +611,7 @@ Functions and Variables
|
|||||||
|
|
||||||
**CAMELCASE**
|
**CAMELCASE**
|
||||||
Avoid CamelCase Identifiers.
|
Avoid CamelCase Identifiers.
|
||||||
|
|
||||||
See: https://www.kernel.org/doc/html/latest/process/coding-style.html#naming
|
See: https://www.kernel.org/doc/html/latest/process/coding-style.html#naming
|
||||||
|
|
||||||
**FUNCTION_WITHOUT_ARGS**
|
**FUNCTION_WITHOUT_ARGS**
|
||||||
@ -583,6 +644,27 @@ Functions and Variables
|
|||||||
return bar;
|
return bar;
|
||||||
|
|
||||||
|
|
||||||
|
Permissions
|
||||||
|
-----------
|
||||||
|
|
||||||
|
**EXECUTE_PERMISSIONS**
|
||||||
|
There is no reason for source files to be executable. The executable
|
||||||
|
bit can be removed safely.
|
||||||
|
|
||||||
|
**EXPORTED_WORLD_WRITABLE**
|
||||||
|
Exporting world writable sysfs/debugfs files is usually a bad thing.
|
||||||
|
When done arbitrarily they can introduce serious security bugs.
|
||||||
|
In the past, some of the debugfs vulnerabilities would seemingly allow
|
||||||
|
any local user to write arbitrary values into device registers - a
|
||||||
|
situation from which little good can be expected to emerge.
|
||||||
|
|
||||||
|
See: https://lore.kernel.org/linux-arm-kernel/cover.1296818921.git.segoon@openwall.com/
|
||||||
|
|
||||||
|
**NON_OCTAL_PERMISSIONS**
|
||||||
|
Permission bits should use 4 digit octal permissions (like 0700 or 0444).
|
||||||
|
Avoid using any other base like decimal.
|
||||||
|
|
||||||
|
|
||||||
Spacing and Brackets
|
Spacing and Brackets
|
||||||
--------------------
|
--------------------
|
||||||
|
|
||||||
@ -616,7 +698,7 @@ Spacing and Brackets
|
|||||||
|
|
||||||
1. With a type on the left::
|
1. With a type on the left::
|
||||||
|
|
||||||
;int [] a;
|
int [] a;
|
||||||
|
|
||||||
2. At the beginning of a line for slice initialisers::
|
2. At the beginning of a line for slice initialisers::
|
||||||
|
|
||||||
@ -630,6 +712,7 @@ Spacing and Brackets
|
|||||||
Code indent should use tabs instead of spaces.
|
Code indent should use tabs instead of spaces.
|
||||||
Outside of comments, documentation and Kconfig,
|
Outside of comments, documentation and Kconfig,
|
||||||
spaces are never used for indentation.
|
spaces are never used for indentation.
|
||||||
|
|
||||||
See: https://www.kernel.org/doc/html/latest/process/coding-style.html#indentation
|
See: https://www.kernel.org/doc/html/latest/process/coding-style.html#indentation
|
||||||
|
|
||||||
**CONCATENATED_STRING**
|
**CONCATENATED_STRING**
|
||||||
@ -644,17 +727,20 @@ Spacing and Brackets
|
|||||||
|
|
||||||
**ELSE_AFTER_BRACE**
|
**ELSE_AFTER_BRACE**
|
||||||
`else {` should follow the closing block `}` on the same line.
|
`else {` should follow the closing block `}` on the same line.
|
||||||
|
|
||||||
See: https://www.kernel.org/doc/html/latest/process/coding-style.html#placing-braces-and-spaces
|
See: https://www.kernel.org/doc/html/latest/process/coding-style.html#placing-braces-and-spaces
|
||||||
|
|
||||||
**LINE_SPACING**
|
**LINE_SPACING**
|
||||||
Vertical space is wasted given the limited number of lines an
|
Vertical space is wasted given the limited number of lines an
|
||||||
editor window can display when multiple blank lines are used.
|
editor window can display when multiple blank lines are used.
|
||||||
|
|
||||||
See: https://www.kernel.org/doc/html/latest/process/coding-style.html#spaces
|
See: https://www.kernel.org/doc/html/latest/process/coding-style.html#spaces
|
||||||
|
|
||||||
**OPEN_BRACE**
|
**OPEN_BRACE**
|
||||||
The opening brace should be following the function definitions on the
|
The opening brace should be following the function definitions on the
|
||||||
next line. For any non-functional block it should be on the same line
|
next line. For any non-functional block it should be on the same line
|
||||||
as the last construct.
|
as the last construct.
|
||||||
|
|
||||||
See: https://www.kernel.org/doc/html/latest/process/coding-style.html#placing-braces-and-spaces
|
See: https://www.kernel.org/doc/html/latest/process/coding-style.html#placing-braces-and-spaces
|
||||||
|
|
||||||
**POINTER_LOCATION**
|
**POINTER_LOCATION**
|
||||||
@ -671,6 +757,7 @@ Spacing and Brackets
|
|||||||
|
|
||||||
**SPACING**
|
**SPACING**
|
||||||
Whitespace style used in the kernel sources is described in kernel docs.
|
Whitespace style used in the kernel sources is described in kernel docs.
|
||||||
|
|
||||||
See: https://www.kernel.org/doc/html/latest/process/coding-style.html#spaces
|
See: https://www.kernel.org/doc/html/latest/process/coding-style.html#spaces
|
||||||
|
|
||||||
**SWITCH_CASE_INDENT_LEVEL**
|
**SWITCH_CASE_INDENT_LEVEL**
|
||||||
@ -700,8 +787,40 @@ Spacing and Brackets
|
|||||||
Trailing whitespace should always be removed.
|
Trailing whitespace should always be removed.
|
||||||
Some editors highlight the trailing whitespace and cause visual
|
Some editors highlight the trailing whitespace and cause visual
|
||||||
distractions when editing files.
|
distractions when editing files.
|
||||||
|
|
||||||
See: https://www.kernel.org/doc/html/latest/process/coding-style.html#spaces
|
See: https://www.kernel.org/doc/html/latest/process/coding-style.html#spaces
|
||||||
|
|
||||||
|
**UNNECESSARY_PARENTHESES**
|
||||||
|
Parentheses are not required in the following cases::
|
||||||
|
|
||||||
|
1. Function pointer uses::
|
||||||
|
|
||||||
|
(foo->bar)();
|
||||||
|
|
||||||
|
could be::
|
||||||
|
|
||||||
|
foo->bar();
|
||||||
|
|
||||||
|
2. Comparisons in if::
|
||||||
|
|
||||||
|
if ((foo->bar) && (foo->baz))
|
||||||
|
if ((foo == bar))
|
||||||
|
|
||||||
|
could be::
|
||||||
|
|
||||||
|
if (foo->bar && foo->baz)
|
||||||
|
if (foo == bar)
|
||||||
|
|
||||||
|
3. addressof/dereference single Lvalues::
|
||||||
|
|
||||||
|
&(foo->bar)
|
||||||
|
*(foo->bar)
|
||||||
|
|
||||||
|
could be::
|
||||||
|
|
||||||
|
&foo->bar
|
||||||
|
*foo->bar
|
||||||
|
|
||||||
**WHILE_AFTER_BRACE**
|
**WHILE_AFTER_BRACE**
|
||||||
while should follow the closing bracket on the same line::
|
while should follow the closing bracket on the same line::
|
||||||
|
|
||||||
@ -727,13 +846,40 @@ Others
|
|||||||
For DOS-formatted patches, there are extra ^M symbols at the end of
|
For DOS-formatted patches, there are extra ^M symbols at the end of
|
||||||
the line. These should be removed.
|
the line. These should be removed.
|
||||||
|
|
||||||
**EXECUTE_PERMISSIONS**
|
**FSF_MAILING_ADDRESS**
|
||||||
There is no reason for source files to be executable. The executable
|
Kernel maintainers reject new instances of the GPL boilerplate paragraph
|
||||||
bit can be removed safely.
|
directing people to write to the FSF for a copy of the GPL, since the
|
||||||
|
FSF has moved in the past and may do so again.
|
||||||
|
So do not write paragraphs about writing to the Free Software Foundation's
|
||||||
|
mailing address.
|
||||||
|
|
||||||
**NON_OCTAL_PERMISSIONS**
|
See: https://lore.kernel.org/lkml/20131006222342.GT19510@leaf/
|
||||||
Permission bits should use 4 digit octal permissions (like 0700 or 0444).
|
|
||||||
Avoid using any other base like decimal.
|
**LONG_LINE**
|
||||||
|
The line has exceeded the specified maximum length. Consider refactoring
|
||||||
|
it.
|
||||||
|
To use a different maximum line length, the --max-line-length=n option
|
||||||
|
may be added while invoking checkpatch.
|
||||||
|
|
||||||
|
See: https://www.kernel.org/doc/html/latest/process/coding-style.html#breaking-long-lines-and-strings
|
||||||
|
|
||||||
|
**LONG_LINE_STRING**
|
||||||
|
A string starts before but extends beyond the maximum line length.
|
||||||
|
To use a different maximum line length, the --max-line-length=n option
|
||||||
|
may be added while invoking checkpatch.
|
||||||
|
|
||||||
|
See: https://www.kernel.org/doc/html/latest/process/coding-style.html#breaking-long-lines-and-strings
|
||||||
|
|
||||||
|
**LONG_LINE_COMMENT**
|
||||||
|
A comment starts before but extends beyond the maximum line length.
|
||||||
|
To use a different maximum line length, the --max-line-length=n option
|
||||||
|
may be added while invoking checkpatch.
|
||||||
|
|
||||||
|
See: https://www.kernel.org/doc/html/latest/process/coding-style.html#breaking-long-lines-and-strings
|
||||||
|
|
||||||
|
**MEMSET**
|
||||||
|
The memset use appears to be incorrect. This may be caused due to
|
||||||
|
badly ordered parameters. Please recheck the usage.
|
||||||
|
|
||||||
**NOT_UNIFIED_DIFF**
|
**NOT_UNIFIED_DIFF**
|
||||||
The patch file does not appear to be in unified-diff format. Please
|
The patch file does not appear to be in unified-diff format. Please
|
||||||
@ -742,6 +888,13 @@ Others
|
|||||||
**PRINTF_0XDECIMAL**
|
**PRINTF_0XDECIMAL**
|
||||||
Prefixing 0x with decimal output is defective and should be corrected.
|
Prefixing 0x with decimal output is defective and should be corrected.
|
||||||
|
|
||||||
|
**SPDX_LICENSE_TAG**
|
||||||
|
The source file is missing or has an improper SPDX identifier tag.
|
||||||
|
The Linux kernel requires the precise SPDX identifier in all source files,
|
||||||
|
and it is thoroughly documented in the kernel docs.
|
||||||
|
|
||||||
|
See: https://www.kernel.org/doc/html/latest/process/license-rules.html
|
||||||
|
|
||||||
**TRAILING_STATEMENTS**
|
**TRAILING_STATEMENTS**
|
||||||
Trailing statements (for example after any conditional) should be
|
Trailing statements (for example after any conditional) should be
|
||||||
on the next line.
|
on the next line.
|
||||||
@ -753,3 +906,6 @@ Others
|
|||||||
|
|
||||||
if (x == y)
|
if (x == y)
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
**TYPO_SPELLING**
|
||||||
|
Some words may have been misspelled. Consider reviewing them.
|
||||||
|
Loading…
Reference in New Issue
Block a user