diff options
| author | Michael Brown | 2016-03-08 16:48:53 +0100 |
|---|---|---|
| committer | Michael Brown | 2016-03-08 16:51:53 +0100 |
| commit | 6a3ffa0114411ae4aa6c4485c6058bf03fec3623 (patch) | |
| tree | 5a82fba9a29bbc303c6c32b3faefcddf88afbb04 /src/drivers | |
| parent | [infiniband] Assign names to CMRC connections (diff) | |
| download | ipxe-6a3ffa0114411ae4aa6c4485c6058bf03fec3623.tar.gz ipxe-6a3ffa0114411ae4aa6c4485c6058bf03fec3623.tar.xz ipxe-6a3ffa0114411ae4aa6c4485c6058bf03fec3623.zip | |
[infiniband] Assign names to queue pairs
Signed-off-by: Michael Brown <mcb30@ipxe.org>
Diffstat (limited to 'src/drivers')
| -rw-r--r-- | src/drivers/infiniband/hermon.c | 2 | ||||
| -rw-r--r-- | src/drivers/net/ipoib.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/drivers/infiniband/hermon.c b/src/drivers/infiniband/hermon.c index a9c728706..cac5fe991 100644 --- a/src/drivers/infiniband/hermon.c +++ b/src/drivers/infiniband/hermon.c @@ -3242,7 +3242,7 @@ static int hermon_eth_open ( struct net_device *netdev ) { port->eth_qp = ib_create_qp ( ibdev, IB_QPT_ETH, HERMON_ETH_NUM_SEND_WQES, port->eth_cq, HERMON_ETH_NUM_RECV_WQES, port->eth_cq, - &hermon_eth_qp_op ); + &hermon_eth_qp_op, netdev->name ); if ( ! port->eth_qp ) { DBGC ( hermon, "Hermon %p port %d could not create queue " "pair\n", hermon, ibdev->port ); diff --git a/src/drivers/net/ipoib.c b/src/drivers/net/ipoib.c index d545b6f40..b52ccb194 100644 --- a/src/drivers/net/ipoib.c +++ b/src/drivers/net/ipoib.c @@ -865,7 +865,7 @@ static int ipoib_open ( struct net_device *netdev ) { /* Allocate queue pair */ ipoib->qp = ib_create_qp ( ibdev, IB_QPT_UD, IPOIB_NUM_SEND_WQES, ipoib->cq, IPOIB_NUM_RECV_WQES, ipoib->cq, - &ipoib_qp_op ); + &ipoib_qp_op, netdev->name ); if ( ! ipoib->qp ) { DBGC ( ipoib, "IPoIB %p could not allocate queue pair\n", ipoib ); |
