aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoe Perches2017-05-08 17:55:51 -0500
committerLinus Torvalds2017-05-08 19:15:11 -0500
commite4b7d3091def85336d838e38dea91be37bd4d1f5 (patch)
tree01a34aec4963d3996dd03e8a19c706dc021aa11c /scripts
parente795556a581a849bf33b22521bf8ebc97ab899ea (diff)
downloadkernel-e4b7d3091def85336d838e38dea91be37bd4d1f5.tar.gz
kernel-e4b7d3091def85336d838e38dea91be37bd4d1f5.tar.xz
kernel-e4b7d3091def85336d838e38dea91be37bd4d1f5.zip
checkpatch: clarify the EMBEDDED_FUNCTION_NAME message
Try to make the conversion of embedded function names to "%s: ", __func__ a bit clearer. Add a bit more information to the comment describing the test too. Link: http://lkml.kernel.org/r/38f5d32f0aec1cd98cb9ceeedd6a736cc9a802db.1491759835.git.joe@perches.com Signed-off-by: Joe Perches <joe@perches.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/checkpatch.pl12
1 files changed, 7 insertions, 5 deletions
diff --git a/scripts/checkpatch.pl b/scripts/checkpatch.pl
index feb9e856f11d..3e2d9b0fe5a5 100755
--- a/scripts/checkpatch.pl
+++ b/scripts/checkpatch.pl
@@ -5174,14 +5174,16 @@ sub process {
5174 "break quoted strings at a space character\n" . $hereprev); 5174 "break quoted strings at a space character\n" . $hereprev);
5175 } 5175 }
5176 5176
5177#check for an embedded function name in a string when the function is known 5177# check for an embedded function name in a string when the function is known
5178# as part of a diff. This does not work for -f --file checking as it 5178# This does not work very well for -f --file checking as it depends on patch
5179#depends on patch context providing the function name 5179# context providing the function name or a single line form for in-file
5180# function declarations
5180 if ($line =~ /^\+.*$String/ && 5181 if ($line =~ /^\+.*$String/ &&
5181 defined($context_function) && 5182 defined($context_function) &&
5182 get_quoted_string($line, $rawline) =~ /\b$context_function\b/) { 5183 get_quoted_string($line, $rawline) =~ /\b$context_function\b/ &&
5184 length(get_quoted_string($line, $rawline)) != (length($context_function) + 2)) {
5183 WARN("EMBEDDED_FUNCTION_NAME", 5185 WARN("EMBEDDED_FUNCTION_NAME",
5184 "Prefer using \"%s\", __func__ to embedded function names\n" . $herecurr); 5186 "Prefer using '\"%s...\", __func__' to using '$context_function', this function's name, in a string\n" . $herecurr);
5185 } 5187 }
5186 5188
5187# check for spaces before a quoted newline 5189# check for spaces before a quoted newline