summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Roscher <stefan.roscher@de.ibm.com>2007-05-24 16:51:08 +0200
committerRoland Dreier <rolandd@cisco.com>2007-05-24 14:02:39 -0700
commit65a2c841d68ae3402ea4cad8d00fe4b9b0a5bc80 (patch)
tree46216fd44175e0e2115ba31ffdc0ba0b5bfb9532
parentc0be5fb5f835110652911ea8b88ad78f841e5b45 (diff)
downloadlinux-lfu-65a2c841d68ae3402ea4cad8d00fe4b9b0a5bc80.tar.gz
linux-lfu-65a2c841d68ae3402ea4cad8d00fe4b9b0a5bc80.tar.xz
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>
-rw-r--r--drivers/infiniband/hw/ehca/hcp_if.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/infiniband/hw/ehca/hcp_if.c b/drivers/infiniband/hw/ehca/hcp_if.c
index 7f0beec74f7..5766ae3a202 100644
--- a/drivers/infiniband/hw/ehca/hcp_if.c
+++ b/drivers/infiniband/hw/ehca/hcp_if.c
@@ -331,7 +331,7 @@ u64 hipz_h_alloc_resource_qp(const struct ipz_adapter_handle adapter_handle,
0);
qp->ipz_qp_handle.handle = outs[0];
qp->real_qp_num = (u32)outs[1];
- parms->act_nr_send_sges =
+ parms->act_nr_send_wqes =
(u16)EHCA_BMASK_GET(H_ALL_RES_QP_ACT_OUTST_SEND_WR, outs[2]);
parms->act_nr_recv_wqes =
(u16)EHCA_BMASK_GET(H_ALL_RES_QP_ACT_OUTST_RECV_WR, outs[2]);