diff options
Diffstat (limited to 'drivers/infiniband/hw/amso1100/c2_intr.c')
| -rw-r--r-- | drivers/infiniband/hw/amso1100/c2_intr.c | 8 | 
1 files changed, 7 insertions, 1 deletions
diff --git a/drivers/infiniband/hw/amso1100/c2_intr.c b/drivers/infiniband/hw/amso1100/c2_intr.c index 0ebe4e806b8..3a17d9b36db 100644 --- a/drivers/infiniband/hw/amso1100/c2_intr.c +++ b/drivers/infiniband/hw/amso1100/c2_intr.c @@ -169,7 +169,8 @@ static void handle_vq(struct c2_dev *c2dev, u32 mq_index)  		 * We should never get here, as the adapter should  		 * never send us a reply that we're not expecting.  		 */ -		vq_repbuf_free(c2dev, host_msg); +		if (reply_msg != NULL) +			vq_repbuf_free(c2dev, host_msg);  		pr_debug("handle_vq: UNEXPECTEDLY got NULL req\n");  		return;  	} @@ -183,6 +184,11 @@ static void handle_vq(struct c2_dev *c2dev, u32 mq_index)  	case IW_CM_EVENT_ESTABLISHED:  		c2_set_qp_state(req->qp,  				C2_QP_STATE_RTS); +		/* +		 * Until ird/ord negotiation via MPAv2 support is added, send +		 * max supported values +		 */ +		cm_event.ird = cm_event.ord = 128;  	case IW_CM_EVENT_CLOSE:  		/*  | 
