This patch brings the implementation into compliance with A4.11.2 which
says that these messages are not to be sent as solicited.
Signed-off-by: Jim Mott <jim@mellanox.com>
ssk->tx_wr.num_sge = frags + 1;
ssk->tx_wr.opcode = IB_WR_SEND;
ssk->tx_wr.send_flags = IB_SEND_SIGNALED;
- if (unlikely(mid != SDP_MID_DATA) ||
- unlikely(TCP_SKB_CB(skb)->flags & TCPCB_URG))
+ if (unlikely(TCP_SKB_CB(skb)->flags & TCPCB_URG))
ssk->tx_wr.send_flags |= IB_SEND_SOLICITED;
rc = ib_post_send(ssk->qp, &ssk->tx_wr, &bad_wr);
++ssk->tx_head;