Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1273544
| From | kbuild test robot <fengguang.wu@intel.com> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | [PATCH] null_blk: fix ifnullfree.cocci warnings |
| Date | 2015-11-19 23:20 +0100 |
| Message-ID | <qwFIB-6YF-1@gated-at.bofh.it> (permalink) |
| References | <qwFIB-6YF-3@gated-at.bofh.it> |
| Organization | linux.* mail to news gateway |
drivers/block/null_blk.c:850:2-20: 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. NULL check before some freeing functions is not needed. Based on checkpatch warning "kfree(NULL) is safe this check is probably not required" and kfreeaddr.cocci by Julia Lawall. Generated by: scripts/coccinelle/free/ifnullfree.cocci CC: Matias Bjørling <m@bjorling.me> Signed-off-by: Fengguang Wu <fengguang.wu@intel.com> --- null_blk.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) --- a/drivers/block/null_blk.c +++ b/drivers/block/null_blk.c @@ -846,8 +846,7 @@ static void __exit null_exit(void) } mutex_unlock(&lock); - if (ppa_cache) - kmem_cache_destroy(ppa_cache); + kmem_cache_destroy(ppa_cache); } module_init(null_init); -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
Back to linux.kernel | Previous | Next | Find similar | Unroll thread
[PATCH] null_blk: fix ifnullfree.cocci warnings kbuild test robot <fengguang.wu@intel.com> - 2015-11-19 23:20 +0100
csiph-web