RDMA/cma: Remove redundant check in cma_add_one
Remove redundant check of node_guid in cma_add_one(). Signed-off-by: Krishna Kumar <krkumar2@in.ibm.com> Acked-by: Sean Hefty <sean.hefty@intel.com> Signed-off-by: Roland Dreier <rolandd@cisco.com>
This commit is contained in:
committed by
Roland Dreier
parent
e82153b54d
commit
e4022274cf
@@ -2122,8 +2122,6 @@ static void cma_add_one(struct ib_device *device)
|
|||||||
|
|
||||||
cma_dev->device = device;
|
cma_dev->device = device;
|
||||||
cma_dev->node_guid = device->node_guid;
|
cma_dev->node_guid = device->node_guid;
|
||||||
if (!cma_dev->node_guid)
|
|
||||||
goto err;
|
|
||||||
|
|
||||||
init_completion(&cma_dev->comp);
|
init_completion(&cma_dev->comp);
|
||||||
atomic_set(&cma_dev->refcount, 1);
|
atomic_set(&cma_dev->refcount, 1);
|
||||||
@@ -2135,9 +2133,6 @@ static void cma_add_one(struct ib_device *device)
|
|||||||
list_for_each_entry(id_priv, &listen_any_list, list)
|
list_for_each_entry(id_priv, &listen_any_list, list)
|
||||||
cma_listen_on_dev(id_priv, cma_dev);
|
cma_listen_on_dev(id_priv, cma_dev);
|
||||||
mutex_unlock(&lock);
|
mutex_unlock(&lock);
|
||||||
return;
|
|
||||||
err:
|
|
||||||
kfree(cma_dev);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static int cma_remove_id_dev(struct rdma_id_private *id_priv)
|
static int cma_remove_id_dev(struct rdma_id_private *id_priv)
|
||||||
|
Reference in New Issue
Block a user