diff mbox

ib_srpt: fix ifnullfree.cocci warnings

Message ID 20160404191151.GA173438@lkp-ib04 (mailing list archive)
State Not Applicable
Headers show

Commit Message

kernel test robot April 4, 2016, 7:11 p.m. UTC
drivers/infiniband/ulp/srpt/ib_srpt.c:1987:3-8: 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: Nicholas Bellinger <nab@linux-iscsi.org>
Signed-off-by: Fengguang Wu <fengguang.wu@intel.com>
---

 ib_srpt.c |    3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

--
To unsubscribe from this list: send the line "unsubscribe linux-rdma" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
diff mbox

Patch

--- a/drivers/infiniband/ulp/srpt/ib_srpt.c
+++ b/drivers/infiniband/ulp/srpt/ib_srpt.c
@@ -1983,8 +1983,7 @@  static void srpt_free_sess_cmd_map_res(s
 		if (!ib_dma_mapping_error(sdev->device, ioctx->ioctx.dma))
 			ib_dma_unmap_single(sdev->device, ioctx->ioctx.dma,
 					    dma_size, DMA_TO_DEVICE);
-		if (ioctx->ioctx.buf)
-			kfree(ioctx->ioctx.buf);
+		kfree(ioctx->ioctx.buf);
 	}
 }