diff options
Diffstat (limited to 'drivers/infiniband/hw')
-rw-r--r-- | drivers/infiniband/hw/mthca/mthca_qp.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/infiniband/hw/mthca/mthca_qp.c b/drivers/infiniband/hw/mthca/mthca_qp.c index 7e4bbbd31f07..1992effe3f8b 100644 --- a/drivers/infiniband/hw/mthca/mthca_qp.c +++ b/drivers/infiniband/hw/mthca/mthca_qp.c | |||
@@ -1465,7 +1465,7 @@ int mthca_tavor_post_send(struct ib_qp *ibqp, struct ib_send_wr *wr, | |||
1465 | cpu_to_be32(1); | 1465 | cpu_to_be32(1); |
1466 | if (wr->opcode == IB_WR_SEND_WITH_IMM || | 1466 | if (wr->opcode == IB_WR_SEND_WITH_IMM || |
1467 | wr->opcode == IB_WR_RDMA_WRITE_WITH_IMM) | 1467 | wr->opcode == IB_WR_RDMA_WRITE_WITH_IMM) |
1468 | ((struct mthca_next_seg *) wqe)->flags = wr->imm_data; | 1468 | ((struct mthca_next_seg *) wqe)->imm = wr->imm_data; |
1469 | 1469 | ||
1470 | wqe += sizeof (struct mthca_next_seg); | 1470 | wqe += sizeof (struct mthca_next_seg); |
1471 | size = sizeof (struct mthca_next_seg) / 16; | 1471 | size = sizeof (struct mthca_next_seg) / 16; |
@@ -1769,7 +1769,7 @@ int mthca_arbel_post_send(struct ib_qp *ibqp, struct ib_send_wr *wr, | |||
1769 | cpu_to_be32(1); | 1769 | cpu_to_be32(1); |
1770 | if (wr->opcode == IB_WR_SEND_WITH_IMM || | 1770 | if (wr->opcode == IB_WR_SEND_WITH_IMM || |
1771 | wr->opcode == IB_WR_RDMA_WRITE_WITH_IMM) | 1771 | wr->opcode == IB_WR_RDMA_WRITE_WITH_IMM) |
1772 | ((struct mthca_next_seg *) wqe)->flags = wr->imm_data; | 1772 | ((struct mthca_next_seg *) wqe)->imm = wr->imm_data; |
1773 | 1773 | ||
1774 | wqe += sizeof (struct mthca_next_seg); | 1774 | wqe += sizeof (struct mthca_next_seg); |
1775 | size = sizeof (struct mthca_next_seg) / 16; | 1775 | size = sizeof (struct mthca_next_seg) / 16; |