aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndy Whitcroft2012-12-17 18:01:52 -0600
committerLinus Torvalds2012-12-17 19:15:19 -0600
commit03df4b51f33e1fdd35fe7bc19f1f450726395207 (patch)
tree13994b0b62313a4e0f93c1f6c349b01c53ea958e /scripts
parent78e3f1f01d23c1a0d5828669d35afa2e7951987d (diff)
downloadkernel-common-03df4b51f33e1fdd35fe7bc19f1f450726395207.tar.gz
kernel-common-03df4b51f33e1fdd35fe7bc19f1f450726395207.tar.xz
kernel-common-03df4b51f33e1fdd35fe7bc19f1f450726395207.zip
checkpatch: consolidate if (foo) bar(foo) checks and add debugfs_remove
Consolidate the if (foo) bar(foo) detectors into a single check. Add debugfs_remove and family. Based on a patch by Constantine Shulyupin. Signed-off-by: Andy Whitcroft <apw@canonical.com> Cc: Constantine Shulyupin <const@MakeLinux.com>. Cc: 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.pl20
1 files changed, 6 insertions, 14 deletions
diff --git a/scripts/checkpatch.pl b/scripts/checkpatch.pl
index d2d5ba17ad6..a1b870d188c 100755
--- a/scripts/checkpatch.pl
+++ b/scripts/checkpatch.pl
@@ -3198,20 +3198,12 @@ sub process {
3198 $herecurr); 3198 $herecurr);
3199 } 3199 }
3200 3200
3201# check for needless kfree() checks 3201# check for needless "if (<foo>) fn(<foo>)" uses
3202 if ($prevline =~ /\bif\s*\(([^\)]*)\)/) { 3202 if ($prevline =~ /\bif\s*\(\s*($Lval)\s*\)/) {
3203 my $expr = $1; 3203 my $expr = '\s*\(\s*' . quotemeta($1) . '\s*\)\s*;';
3204 if ($line =~ /\bkfree\(\Q$expr\E\);/) { 3204 if ($line =~ /\b(kfree|usb_free_urb|debugfs_remove(?:_recursive)?)$expr/) {
3205 WARN("NEEDLESS_KFREE", 3205 WARN('NEEDLESS_IF',
3206 "kfree(NULL) is safe this check is probably not required\n" . $hereprev); 3206 "$1(NULL) is safe this check is probably not required\n" . $hereprev);
3207 }
3208 }
3209# check for needless usb_free_urb() checks
3210 if ($prevline =~ /\bif\s*\(([^\)]*)\)/) {
3211 my $expr = $1;
3212 if ($line =~ /\busb_free_urb\(\Q$expr\E\);/) {
3213 WARN("NEEDLESS_USB_FREE_URB",
3214 "usb_free_urb(NULL) is safe this check is probably not required\n" . $hereprev);
3215 } 3207 }
3216 } 3208 }
3217 3209