From: Christoph Hellwig Date: Tue, 3 May 2016 16:01:03 +0000 (+0200) Subject: IB/cma: pass the port number to ib_create_qp X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=0691a286d59183c44b68defd398cb7af0354bd00;p=linux-beck.git IB/cma: pass the port number to ib_create_qp The new RW API will need this. Signed-off-by: Christoph Hellwig Reviewed-by: Bart Van Assche Reviewed-by: Sagi Grimberg Tested-by: Steve Wise Signed-off-by: Doug Ledford --- diff --git a/drivers/infiniband/core/cma.c b/drivers/infiniband/core/cma.c index 93ab0ae97208..6ebaf20c4699 100644 --- a/drivers/infiniband/core/cma.c +++ b/drivers/infiniband/core/cma.c @@ -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);