diff options
author | Michael Brown <mcb30@ipxe.org> | 2016-03-08 15:48:53 +0000 |
---|---|---|
committer | Michael Brown <mcb30@ipxe.org> | 2016-03-08 15:51:53 +0000 |
commit | 6a3ffa0114411ae4aa6c4485c6058bf03fec3623 (patch) | |
tree | 5a82fba9a29bbc303c6c32b3faefcddf88afbb04 /src/drivers/net/ipoib.c | |
parent | 174bf6b5698299678f2d928cae126353558a766d (diff) | |
download | ipxe-6a3ffa0114411ae4aa6c4485c6058bf03fec3623.tar.gz |
[infiniband] Assign names to queue pairs
Signed-off-by: Michael Brown <mcb30@ipxe.org>
Diffstat (limited to 'src/drivers/net/ipoib.c')
-rw-r--r-- | src/drivers/net/ipoib.c | 2 |
1 files changed, 1 insertions, 1 deletions
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 ); |