IB/ehca: Fix number of send WRs reported for new QP

Due to a typo, the driver was reporting the wrong number of "actual send
WRs" after ehca_create_qp().

Signed-off-by: Joachim Fenkes <fenkes@de.ibm.com>
Signed-off-by: Roland Dreier <rolandd@cisco.com>

authored by Stefan Roscher and committed by Roland Dreier 65a2c841 c0be5fb5

+1 -1
+1 -1
drivers/infiniband/hw/ehca/hcp_if.c
··· 331 331 0); 332 332 qp->ipz_qp_handle.handle = outs[0]; 333 333 qp->real_qp_num = (u32)outs[1]; 334 - parms->act_nr_send_sges = 334 + parms->act_nr_send_wqes = 335 335 (u16)EHCA_BMASK_GET(H_ALL_RES_QP_ACT_OUTST_SEND_WR, outs[2]); 336 336 parms->act_nr_recv_wqes = 337 337 (u16)EHCA_BMASK_GET(H_ALL_RES_QP_ACT_OUTST_RECV_WR, outs[2]);