Commit 19891915 authored by Vu Pham's avatar Vu Pham Committed by Roland Dreier

IB/mlx4: Fix opcode returned in RDMA read completion

Current code has a cut-and-paste error and returns IB_WC_SEND when it
should return IB_WC_RDMA_READ.
Signed-off-by: default avatarVu Pham <vu@mellanox.com>
Signed-off-by: default avatarRoland Dreier <rolandd@cisco.com>
parent 3d1ff48d
...@@ -389,7 +389,7 @@ static int mlx4_ib_poll_one(struct mlx4_ib_cq *cq, ...@@ -389,7 +389,7 @@ static int mlx4_ib_poll_one(struct mlx4_ib_cq *cq,
wc->opcode = IB_WC_SEND; wc->opcode = IB_WC_SEND;
break; break;
case MLX4_OPCODE_RDMA_READ: case MLX4_OPCODE_RDMA_READ:
wc->opcode = IB_WC_SEND; wc->opcode = IB_WC_RDMA_READ;
wc->byte_len = be32_to_cpu(cqe->byte_cnt); wc->byte_len = be32_to_cpu(cqe->byte_cnt);
break; break;
case MLX4_OPCODE_ATOMIC_CS: case MLX4_OPCODE_ATOMIC_CS:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment