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/infiniband | |
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/infiniband')
-rw-r--r-- | src/drivers/infiniband/hermon.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/drivers/infiniband/hermon.c b/src/drivers/infiniband/hermon.c index a9c72870..cac5fe99 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 ); |