1
0

Merge commit 'v2.6.26-rc9' into cpus4096

Este cometimento está contido em:
Ingo Molnar
2008-07-06 14:23:39 +02:00
ascendente 7baac8b91f b7279469d6
cometimento 68083e05d7
1401 ficheiros modificados com 33387 adições e 14414 eliminações

Ver ficheiro

@@ -421,8 +421,10 @@ int ehca_post_send(struct ib_qp *qp,
int ret = 0;
unsigned long flags;
if (unlikely(my_qp->state != IB_QPS_RTS)) {
ehca_err(qp->device, "QP not in RTS state qpn=%x", qp->qp_num);
/* Reject WR if QP is in RESET, INIT or RTR state */
if (unlikely(my_qp->state < IB_QPS_RTS)) {
ehca_err(qp->device, "Invalid QP state qp_state=%d qpn=%x",
my_qp->state, qp->qp_num);
return -EINVAL;
}