diff options
author | Chien Tung <chien.tin.tung@intel.com> | 2010-03-25 13:39:50 +0000 |
---|---|---|
committer | Roland Dreier <rolandd@cisco.com> | 2010-04-07 14:16:08 -0700 |
commit | eadde3a1a5291492098e8b0b6435d075fc22486b (patch) | |
tree | 4175c2febc25a04c171a6834df1728d98815a0e2 /drivers/infiniband | |
parent | b72c40949b0f04728f2993a1434598d3bad094ea (diff) | |
download | linux-3.10-eadde3a1a5291492098e8b0b6435d075fc22486b.tar.gz linux-3.10-eadde3a1a5291492098e8b0b6435d075fc22486b.tar.bz2 linux-3.10-eadde3a1a5291492098e8b0b6435d075fc22486b.zip |
RDMA/nes: Correct cap.max_inline_data assignment in nes_query_qp()
cap.max_inline_data is incorrectly set in init_attr instead of attr.
Set it in attr so subsequent init_attr.cap assignment will get the
correct value.
Signed-off-by: Chien Tung <chien.tin.tung@intel.com>
Signed-off-by: Roland Dreier <rolandd@cisco.com>
Diffstat (limited to 'drivers/infiniband')
-rw-r--r-- | drivers/infiniband/hw/nes/nes_verbs.c | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/drivers/infiniband/hw/nes/nes_verbs.c b/drivers/infiniband/hw/nes/nes_verbs.c index 69928296d74..36348bf9dee 100644 --- a/drivers/infiniband/hw/nes/nes_verbs.c +++ b/drivers/infiniband/hw/nes/nes_verbs.c @@ -2820,11 +2820,10 @@ static int nes_query_qp(struct ib_qp *ibqp, struct ib_qp_attr *attr, attr->cap.max_send_wr = nesqp->hwqp.sq_size; attr->cap.max_recv_wr = nesqp->hwqp.rq_size; attr->cap.max_recv_sge = 1; - if (nes_drv_opt & NES_DRV_OPT_NO_INLINE_DATA) { - init_attr->cap.max_inline_data = 0; - } else { - init_attr->cap.max_inline_data = 64; - } + if (nes_drv_opt & NES_DRV_OPT_NO_INLINE_DATA) + attr->cap.max_inline_data = 0; + else + attr->cap.max_inline_data = 64; init_attr->event_handler = nesqp->ibqp.event_handler; init_attr->qp_context = nesqp->ibqp.qp_context; |