Commit 5b6810e0 authored by Roland Dreier's avatar Roland Dreier

[IPoIB] Rename ipoib_create_qp() -> ipoib_init_qp() and fix error cleanup

ipoib_create_qp() no longer creates IPoIB's QP, so it shouldn't
destroy the QP on failure -- that unwinding happens elsewhere, so the
current code can cause a double free.  While we're at it, the
function's name should match what it actually does, so rename it to
ipoib_init_qp().
Signed-off-by: default avatarRoland Dreier <rolandd@cisco.com>
parent efaae8f7
...@@ -277,7 +277,7 @@ int ipoib_mcast_attach(struct net_device *dev, u16 mlid, ...@@ -277,7 +277,7 @@ int ipoib_mcast_attach(struct net_device *dev, u16 mlid,
int ipoib_mcast_detach(struct net_device *dev, u16 mlid, int ipoib_mcast_detach(struct net_device *dev, u16 mlid,
union ib_gid *mgid); union ib_gid *mgid);
int ipoib_qp_create(struct net_device *dev); int ipoib_init_qp(struct net_device *dev);
int ipoib_transport_dev_init(struct net_device *dev, struct ib_device *ca); int ipoib_transport_dev_init(struct net_device *dev, struct ib_device *ca);
void ipoib_transport_dev_cleanup(struct net_device *dev); void ipoib_transport_dev_cleanup(struct net_device *dev);
......
...@@ -387,9 +387,9 @@ int ipoib_ib_dev_open(struct net_device *dev) ...@@ -387,9 +387,9 @@ int ipoib_ib_dev_open(struct net_device *dev)
struct ipoib_dev_priv *priv = netdev_priv(dev); struct ipoib_dev_priv *priv = netdev_priv(dev);
int ret; int ret;
ret = ipoib_qp_create(dev); ret = ipoib_init_qp(dev);
if (ret) { if (ret) {
ipoib_warn(priv, "ipoib_qp_create returned %d\n", ret); ipoib_warn(priv, "ipoib_init_qp returned %d\n", ret);
return -1; return -1;
} }
......
...@@ -92,7 +92,7 @@ int ipoib_mcast_detach(struct net_device *dev, u16 mlid, union ib_gid *mgid) ...@@ -92,7 +92,7 @@ int ipoib_mcast_detach(struct net_device *dev, u16 mlid, union ib_gid *mgid)
return ret; return ret;
} }
int ipoib_qp_create(struct net_device *dev) int ipoib_init_qp(struct net_device *dev)
{ {
struct ipoib_dev_priv *priv = netdev_priv(dev); struct ipoib_dev_priv *priv = netdev_priv(dev);
int ret; int ret;
...@@ -149,10 +149,11 @@ int ipoib_qp_create(struct net_device *dev) ...@@ -149,10 +149,11 @@ int ipoib_qp_create(struct net_device *dev)
return 0; return 0;
out_fail: out_fail:
ib_destroy_qp(priv->qp); qp_attr.qp_state = IB_QPS_RESET;
priv->qp = NULL; if (ib_modify_qp(priv->qp, &qp_attr, IB_QP_STATE))
ipoib_warn(priv, "Failed to modify QP to RESET state\n");
return -EINVAL; return ret;
} }
int ipoib_transport_dev_init(struct net_device *dev, struct ib_device *ca) int ipoib_transport_dev_init(struct net_device *dev, struct ib_device *ca)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment