IB/cma: pass the port number to ib_create_qp
authorChristoph Hellwig <hch@lst.de>
Tue, 3 May 2016 16:01:03 +0000 (18:01 +0200)
committerDoug Ledford <dledford@redhat.com>
Thu, 12 May 2016 18:22:54 +0000 (14:22 -0400)
The new RW API will need this.

Signed-off-by: Christoph Hellwig <hch@lst.de>
Reviewed-by: Bart Van Assche <bart.vanassche@sandisk.com>
Reviewed-by: Sagi Grimberg <sagi@grimberg.me>
Tested-by: Steve Wise <swise@opengridcomputing.com>
Signed-off-by: Doug Ledford <dledford@redhat.com>
drivers/infiniband/core/cma.c

index 93ab0ae..6ebaf20 100644 (file)
@@ -800,6 +800,7 @@ int rdma_create_qp(struct rdma_cm_id *id, struct ib_pd *pd,
        if (id->device != pd->device)
                return -EINVAL;
 
+       qp_init_attr->port_num = id->port_num;
        qp = ib_create_qp(pd, qp_init_attr);
        if (IS_ERR(qp))
                return PTR_ERR(qp);