|
@@ -629,11 +629,9 @@ static void build_rdma0_msg(struct nes_cm_node *cm_node, struct nes_qp **nesqp_a
|
|
|
|
|
|
case SEND_RDMA_READ_ZERO:
|
|
|
default:
|
|
|
- if (cm_node->send_rdma0_op != SEND_RDMA_READ_ZERO) {
|
|
|
- printk(KERN_ERR "%s[%u]: Unsupported RDMA0 len operation=%u\n",
|
|
|
- __func__, __LINE__, cm_node->send_rdma0_op);
|
|
|
- WARN_ON(1);
|
|
|
- }
|
|
|
+ if (cm_node->send_rdma0_op != SEND_RDMA_READ_ZERO)
|
|
|
+ WARN(1, "Unsupported RDMA0 len operation=%u\n",
|
|
|
+ cm_node->send_rdma0_op);
|
|
|
nes_debug(NES_DBG_CM, "Sending first rdma operation.\n");
|
|
|
wqe->wqe_words[NES_IWARP_SQ_WQE_MISC_IDX] =
|
|
|
cpu_to_le32(NES_IWARP_SQ_OP_RDMAR);
|