diff options
author | kbuild test robot <[email protected]> | 2016-05-02 11:50:16 -0400 |
---|---|---|
committer | Shaohua Li <[email protected]> | 2016-05-04 12:39:35 -0700 |
commit | bc47e84258be3e49c14be65a111f2117ecc986f6 (patch) | |
tree | c333f0eeadfca8c8a3f63bed9e4debda9cf68770 | |
parent | c84400c89f0f98ae4a73ed89886239b67d1dcd31 (diff) |
md-cluster: fix ifnullfree.cocci warnings
drivers/md/bitmap.c:2049:6-11: 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
Acked-by: Guoqing Jiang <[email protected]>
Signed-off-by: Fengguang Wu <[email protected]>
Signed-off-by: Shaohua Li <[email protected]>
-rw-r--r-- | drivers/md/bitmap.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/md/bitmap.c b/drivers/md/bitmap.c index 4a05bacd6601..ad5a85847004 100644 --- a/drivers/md/bitmap.c +++ b/drivers/md/bitmap.c @@ -2076,8 +2076,7 @@ int bitmap_resize(struct bitmap *bitmap, sector_t blocks, /* deallocate the page memory */ for (k = 0; k < page; k++) { - if (new_bp[k].map) - kfree(new_bp[k].map); + kfree(new_bp[k].map); } /* restore some fields from old_counts */ |