Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 198427
b: refs/heads/master
c: 2f1fb50
h: refs/heads/master
i:
  198425: fec0785
  198423: 675866f
v: v3
  • Loading branch information
Steve Wise authored and Roland Dreier committed May 25, 2010
1 parent 3d1bd39 commit e4d56d2
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 4ab1eb9c8df620d5ed64fa1d1be683862b311685
refs/heads/master: 2f1fb507eec22ee64b541ea8586a7365ede8be2e
6 changes: 5 additions & 1 deletion trunk/drivers/infiniband/hw/cxgb4/qp.c
Original file line number Diff line number Diff line change
Expand Up @@ -572,9 +572,13 @@ int c4iw_post_send(struct ib_qp *ibqp, struct ib_send_wr *wr,
err = build_rdma_write(wqe, wr, &len16);
break;
case IB_WR_RDMA_READ:
case IB_WR_RDMA_READ_WITH_INV:
fw_opcode = FW_RI_RDMA_READ_WR;
swsqe->opcode = FW_RI_READ_REQ;
fw_flags = 0;
if (wr->opcode == IB_WR_RDMA_READ_WITH_INV)
fw_flags |= FW_RI_RDMA_READ_INVALIDATE;
else
fw_flags = 0;
err = build_rdma_read(wqe, wr, &len16);
if (err)
break;
Expand Down

0 comments on commit e4d56d2

Please sign in to comment.