aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/coccinelle
diff options
context:
space:
mode:
authorHimanshu Jha <himanshujha199640@gmail.com>2018-01-13 21:28:15 +0530
committerMasahiro Yamada <yamada.masahiro@socionext.com>2018-01-16 23:39:55 +0900
commit3e47599fd61d6ba650b09e023f97bc9b9e7e390f (patch)
treee3c75e2d72fcc7cfe270d5c64085d502ad2e9fef /scripts/coccinelle
parentCoccinelle: alloc_cast: Add more memory allocating functions to the list (diff)
downloadlinux-dev-3e47599fd61d6ba650b09e023f97bc9b9e7e390f.tar.xz
linux-dev-3e47599fd61d6ba650b09e023f97bc9b9e7e390f.zip
Coccinelle: ifnullfree: Trim the warning reported in report mode
Remove the unncessary part of the warning reported, in the report mode, so that a single warning produced does not exceed more than line and hence improve readability of the warnings produced in the subsequent reports to a file. Signed-off-by: Himanshu Jha <himanshujha199640@gmail.com> Acked-by: Julia Lawall <julia.lawall@lip6.fr> Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Diffstat (limited to 'scripts/coccinelle')
-rw-r--r--scripts/coccinelle/free/ifnullfree.cocci2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/coccinelle/free/ifnullfree.cocci b/scripts/coccinelle/free/ifnullfree.cocci
index 14a4cd98e83b..a70e123cb12b 100644
--- a/scripts/coccinelle/free/ifnullfree.cocci
+++ b/scripts/coccinelle/free/ifnullfree.cocci
@@ -55,5 +55,5 @@ cocci.print_main("NULL check before that freeing function is not needed", p)
p << r.p;
@@
-msg = "WARNING: NULL check before freeing functions like kfree, debugfs_remove, debugfs_remove_recursive or usb_free_urb is not needed. Maybe consider reorganizing relevant code to avoid passing NULL values."
+msg = "WARNING: NULL check before some freeing functions is not needed."
coccilib.report.print_report(p[0], msg)