Skip to content

Commit 9a52aee

Browse files
ybelkadimichal42
authored andcommitted
scripts/kernel-doc: check that non-void fcts describe their return value
If a function has a return value, but its kernel-doc comment doesn't contain a "Return" section, then emit the following warning: Warning(file.h:129): No description found for return value of 'fct' Note: This check emits a lot of warnings at the moment, because many functions don't have a 'Return' doc section. So until the number of warnings goes sufficiently down, the check is only performed in verbose mode. Signed-off-by: Yacine Belkadi <yacine.belkadi.1@gmail.com> Acked-by: Randy Dunlap <rdunlap@infradead.org> Signed-off-by: Michal Marek <mmarek@suse.cz>
1 parent ddf5eab commit 9a52aee

File tree

1 file changed

+34
-0
lines changed

1 file changed

+34
-0
lines changed

scripts/kernel-doc

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -137,6 +137,8 @@ use strict;
137137
# should document the "Context:" of the function, e.g. whether the functions
138138
# can be called form interrupts. Unlike other sections you can end it with an
139139
# empty line.
140+
# A non-void function should have a "Return:" section describing the return
141+
# value(s).
140142
# Example-sections should contain the string EXAMPLE so that they are marked
141143
# appropriately in DocBook.
142144
#
@@ -315,6 +317,7 @@ my $section_default = "Description"; # default section
315317
my $section_intro = "Introduction";
316318
my $section = $section_default;
317319
my $section_context = "Context";
320+
my $section_return = "Return";
318321

319322
my $undescribed = "-- undescribed --";
320323

@@ -2038,6 +2041,28 @@ sub check_sections($$$$$$) {
20382041
}
20392042
}
20402043

2044+
##
2045+
# Checks the section describing the return value of a function.
2046+
sub check_return_section {
2047+
my $file = shift;
2048+
my $declaration_name = shift;
2049+
my $return_type = shift;
2050+
2051+
# Ignore an empty return type (It's a macro)
2052+
# Ignore functions with a "void" return type. (But don't ignore "void *")
2053+
if (($return_type eq "") || ($return_type =~ /void\s*\w*\s*$/)) {
2054+
return;
2055+
}
2056+
2057+
if (!defined($sections{$section_return}) ||
2058+
$sections{$section_return} eq "") {
2059+
print STDERR "Warning(${file}:$.): " .
2060+
"No description found for return value of " .
2061+
"'$declaration_name'\n";
2062+
++$warnings;
2063+
}
2064+
}
2065+
20412066
##
20422067
# takes a function prototype and the name of the current file being
20432068
# processed and spits out all the details stored in the global
@@ -2109,6 +2134,15 @@ sub dump_function($$) {
21092134
my $prms = join " ", @parameterlist;
21102135
check_sections($file, $declaration_name, "function", $sectcheck, $prms, "");
21112136

2137+
# This check emits a lot of warnings at the moment, because many
2138+
# functions don't have a 'Return' doc section. So until the number
2139+
# of warnings goes sufficiently down, the check is only performed in
2140+
# verbose mode.
2141+
# TODO: always perform the check.
2142+
if ($verbose) {
2143+
check_return_section($file, $declaration_name, $return_type);
2144+
}
2145+
21122146
output_declaration($declaration_name,
21132147
'function',
21142148
{'function' => $declaration_name,

0 commit comments

Comments
 (0)