[PATCH] checkpatch: Don't warn about returning EPOLL* defines

From: Ben Shelton
Date: Tue Dec 03 2019 - 12:59:07 EST


The EPOLL* defines are bit definitions, not errno values, so they should
be returned as-is, not as negative values.

Signed-off-by: Ben Shelton <benjamin.h.shelton@xxxxxxxxx>
Cc: Andy Whitcroft <apw@xxxxxxxxxxxxx>
Cc: Joe Perches <joe@xxxxxxxxxxx>
---
scripts/checkpatch.pl | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/scripts/checkpatch.pl b/scripts/checkpatch.pl
index 592911a..caad932 100755
--- a/scripts/checkpatch.pl
+++ b/scripts/checkpatch.pl
@@ -4867,7 +4867,7 @@ sub process {
}

# Return of what appears to be an errno should normally be negative
- if ($sline =~ /\breturn(?:\s*\(+\s*|\s+)(E[A-Z]+)(?:\s*\)+\s*|\s*)[;:,]/) {
+ if ($sline =~ /\breturn(?:\s*\(+\s*|\s+)(E(?!POLL)[A-Z]+)(?:\s*\)+\s*|\s*)[;:,]/) {
my $name = $1;
if ($name ne 'EOF' && $name ne 'ERROR') {
WARN("USE_NEGATIVE_ERRNO",
--
2.6.4