diff options
author | Andy Whitcroft <apw@canonical.com> | 2012-12-17 19:01:52 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2012-12-17 20:15:19 -0500 |
commit | 03df4b51f33e1fdd35fe7bc19f1f450726395207 (patch) | |
tree | 13994b0b62313a4e0f93c1f6c349b01c53ea958e /scripts | |
parent | 78e3f1f01d23c1a0d5828669d35afa2e7951987d (diff) |
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-x | scripts/checkpatch.pl | 20 |
1 files changed, 6 insertions, 14 deletions
diff --git a/scripts/checkpatch.pl b/scripts/checkpatch.pl index d2d5ba17ad6c..a1b870d188c4 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 | ||