mirror of
https://github.com/torvalds/linux.git
synced 2024-11-01 09:41:44 +00:00
RDS: IB: fix ifnullfree.cocci warnings
net/rds/ib.c:115:2-7: 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 Signed-off-by: Fengguang Wu <fengguang.wu@intel.com> Acked-by: Santosh Shilimkar <santosh.shilimkar@oracle.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
dfcb9f4f99
commit
77cc7aee09
@ -111,8 +111,7 @@ static void rds_ib_dev_free(struct work_struct *work)
|
||||
kfree(i_ipaddr);
|
||||
}
|
||||
|
||||
if (rds_ibdev->vector_load)
|
||||
kfree(rds_ibdev->vector_load);
|
||||
kfree(rds_ibdev->vector_load);
|
||||
|
||||
kfree(rds_ibdev);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user