| 
									
										
										
										
											2006-03-29 15:23:34 -08:00
										 |  |  | /*
 | 
					
						
							| 
									
										
										
										
											2008-04-16 21:09:32 -07:00
										 |  |  |  * Copyright (c) 2006, 2007, 2008 QLogic Corporation. All rights reserved. | 
					
						
							| 
									
										
										
										
											2006-03-29 15:23:34 -08:00
										 |  |  |  * Copyright (c) 2005, 2006 PathScale, Inc. All rights reserved. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * This software is available to you under a choice of one of two | 
					
						
							|  |  |  |  * licenses.  You may choose to be licensed under the terms of the GNU | 
					
						
							|  |  |  |  * General Public License (GPL) Version 2, available from the file | 
					
						
							|  |  |  |  * COPYING in the main directory of this source tree, or the | 
					
						
							|  |  |  |  * OpenIB.org BSD license below: | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  *     Redistribution and use in source and binary forms, with or | 
					
						
							|  |  |  |  *     without modification, are permitted provided that the following | 
					
						
							|  |  |  |  *     conditions are met: | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  *      - Redistributions of source code must retain the above | 
					
						
							|  |  |  |  *        copyright notice, this list of conditions and the following | 
					
						
							|  |  |  |  *        disclaimer. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  *      - Redistributions in binary form must reproduce the above | 
					
						
							|  |  |  |  *        copyright notice, this list of conditions and the following | 
					
						
							|  |  |  |  *        disclaimer in the documentation and/or other materials | 
					
						
							|  |  |  |  *        provided with the distribution. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, | 
					
						
							|  |  |  |  * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF | 
					
						
							|  |  |  |  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND | 
					
						
							|  |  |  |  * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS | 
					
						
							|  |  |  |  * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN | 
					
						
							|  |  |  |  * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN | 
					
						
							|  |  |  |  * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | 
					
						
							|  |  |  |  * SOFTWARE. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-10-07 17:09:06 +04:00
										 |  |  | #include <linux/sched.h>
 | 
					
						
							| 
									
										
										
										
											2006-03-29 15:23:34 -08:00
										 |  |  | #include <rdma/ib_smi.h>
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include "ipath_verbs.h"
 | 
					
						
							| 
									
										
										
										
											2006-09-22 15:22:26 -07:00
										 |  |  | #include "ipath_kernel.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-03-29 15:23:34 -08:00
										 |  |  | /**
 | 
					
						
							|  |  |  |  * ipath_ud_loopback - handle send on loopback QPs | 
					
						
							| 
									
										
										
										
											2007-07-25 11:08:28 -07:00
										 |  |  |  * @sqp: the sending QP | 
					
						
							|  |  |  |  * @swqe: the send work request | 
					
						
							| 
									
										
										
										
											2006-03-29 15:23:34 -08:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2007-07-25 11:08:28 -07:00
										 |  |  |  * This is called from ipath_make_ud_req() to forward a WQE addressed | 
					
						
							| 
									
										
										
										
											2006-03-29 15:23:34 -08:00
										 |  |  |  * to the same HCA. | 
					
						
							| 
									
										
										
										
											2006-09-22 15:22:26 -07:00
										 |  |  |  * Note that the receive interrupt handler may be calling ipath_ud_rcv() | 
					
						
							|  |  |  |  * while this is being called. | 
					
						
							| 
									
										
										
										
											2006-03-29 15:23:34 -08:00
										 |  |  |  */ | 
					
						
							| 
									
										
										
										
											2007-07-25 11:08:28 -07:00
										 |  |  | static void ipath_ud_loopback(struct ipath_qp *sqp, struct ipath_swqe *swqe) | 
					
						
							| 
									
										
										
										
											2006-03-29 15:23:34 -08:00
										 |  |  | { | 
					
						
							|  |  |  | 	struct ipath_ibdev *dev = to_idev(sqp->ibqp.device); | 
					
						
							|  |  |  | 	struct ipath_qp *qp; | 
					
						
							|  |  |  | 	struct ib_ah_attr *ah_attr; | 
					
						
							|  |  |  | 	unsigned long flags; | 
					
						
							|  |  |  | 	struct ipath_rq *rq; | 
					
						
							|  |  |  | 	struct ipath_srq *srq; | 
					
						
							|  |  |  | 	struct ipath_sge_state rsge; | 
					
						
							|  |  |  | 	struct ipath_sge *sge; | 
					
						
							| 
									
										
										
										
											2006-09-22 15:22:26 -07:00
										 |  |  | 	struct ipath_rwq *wq; | 
					
						
							| 
									
										
										
										
											2006-03-29 15:23:34 -08:00
										 |  |  | 	struct ipath_rwqe *wqe; | 
					
						
							| 
									
										
										
										
											2006-09-22 15:22:26 -07:00
										 |  |  | 	void (*handler)(struct ib_event *, void *); | 
					
						
							| 
									
										
										
										
											2007-07-25 11:08:28 -07:00
										 |  |  | 	struct ib_wc wc; | 
					
						
							| 
									
										
										
										
											2006-09-22 15:22:26 -07:00
										 |  |  | 	u32 tail; | 
					
						
							|  |  |  | 	u32 rlen; | 
					
						
							| 
									
										
										
										
											2007-07-25 11:08:28 -07:00
										 |  |  | 	u32 length; | 
					
						
							| 
									
										
										
										
											2006-03-29 15:23:34 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-07-25 11:08:28 -07:00
										 |  |  | 	qp = ipath_lookup_qpn(&dev->qp_table, swqe->wr.wr.ud.remote_qpn); | 
					
						
							| 
									
										
										
										
											2008-05-13 11:41:29 -07:00
										 |  |  | 	if (!qp || !(ib_ipath_state_ops[qp->state] & IPATH_PROCESS_RECV_OK)) { | 
					
						
							| 
									
										
										
										
											2007-07-25 11:08:28 -07:00
										 |  |  | 		dev->n_pkt_drops++; | 
					
						
							| 
									
										
										
										
											2008-05-13 11:41:29 -07:00
										 |  |  | 		goto done; | 
					
						
							| 
									
										
										
										
											2007-07-25 11:08:28 -07:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-03-29 15:23:34 -08:00
										 |  |  | 	/*
 | 
					
						
							|  |  |  | 	 * Check that the qkey matches (except for QP0, see 9.6.1.4.1). | 
					
						
							|  |  |  | 	 * Qkeys with the high order bit set mean use the | 
					
						
							|  |  |  | 	 * qkey from the QP context instead of the WR (see 10.2.5). | 
					
						
							|  |  |  | 	 */ | 
					
						
							|  |  |  | 	if (unlikely(qp->ibqp.qp_num && | 
					
						
							| 
									
										
										
										
											2007-07-25 11:08:28 -07:00
										 |  |  | 		     ((int) swqe->wr.wr.ud.remote_qkey < 0 ? | 
					
						
							|  |  |  | 		      sqp->qkey : swqe->wr.wr.ud.remote_qkey) != qp->qkey)) { | 
					
						
							| 
									
										
										
										
											2006-03-29 15:23:34 -08:00
										 |  |  | 		/* XXX OK to lose a count once in a while. */ | 
					
						
							|  |  |  | 		dev->qkey_violations++; | 
					
						
							|  |  |  | 		dev->n_pkt_drops++; | 
					
						
							| 
									
										
										
										
											2007-07-25 11:08:28 -07:00
										 |  |  | 		goto drop; | 
					
						
							| 
									
										
										
										
											2006-03-29 15:23:34 -08:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/*
 | 
					
						
							|  |  |  | 	 * A GRH is expected to preceed the data even if not | 
					
						
							|  |  |  | 	 * present on the wire. | 
					
						
							|  |  |  | 	 */ | 
					
						
							| 
									
										
										
										
											2007-07-25 11:08:28 -07:00
										 |  |  | 	length = swqe->length; | 
					
						
							| 
									
										
										
										
											2008-05-13 11:41:29 -07:00
										 |  |  | 	memset(&wc, 0, sizeof wc); | 
					
						
							| 
									
										
										
										
											2007-07-25 11:08:28 -07:00
										 |  |  | 	wc.byte_len = length + sizeof(struct ib_grh); | 
					
						
							| 
									
										
										
										
											2006-03-29 15:23:34 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-07-25 11:08:28 -07:00
										 |  |  | 	if (swqe->wr.opcode == IB_WR_SEND_WITH_IMM) { | 
					
						
							|  |  |  | 		wc.wc_flags = IB_WC_WITH_IMM; | 
					
						
							| 
									
										
										
										
											2008-07-14 23:48:45 -07:00
										 |  |  | 		wc.ex.imm_data = swqe->wr.ex.imm_data; | 
					
						
							| 
									
										
										
										
											2006-03-29 15:23:34 -08:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/*
 | 
					
						
							| 
									
										
										
										
											2007-07-25 11:08:28 -07:00
										 |  |  | 	 * This would be a lot simpler if we could call ipath_get_rwqe() | 
					
						
							|  |  |  | 	 * but that uses state that the receive interrupt handler uses | 
					
						
							|  |  |  | 	 * so we would need to lock out receive interrupts while doing | 
					
						
							|  |  |  | 	 * local loopback. | 
					
						
							| 
									
										
										
										
											2006-03-29 15:23:34 -08:00
										 |  |  | 	 */ | 
					
						
							|  |  |  | 	if (qp->ibqp.srq) { | 
					
						
							|  |  |  | 		srq = to_isrq(qp->ibqp.srq); | 
					
						
							| 
									
										
										
										
											2006-09-22 15:22:26 -07:00
										 |  |  | 		handler = srq->ibsrq.event_handler; | 
					
						
							| 
									
										
										
										
											2006-03-29 15:23:34 -08:00
										 |  |  | 		rq = &srq->rq; | 
					
						
							|  |  |  | 	} else { | 
					
						
							|  |  |  | 		srq = NULL; | 
					
						
							| 
									
										
										
										
											2006-09-22 15:22:26 -07:00
										 |  |  | 		handler = NULL; | 
					
						
							| 
									
										
										
										
											2006-03-29 15:23:34 -08:00
										 |  |  | 		rq = &qp->r_rq; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2006-09-22 15:22:26 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-07-25 11:08:28 -07:00
										 |  |  | 	/*
 | 
					
						
							|  |  |  | 	 * Get the next work request entry to find where to put the data. | 
					
						
							|  |  |  | 	 * Note that it is safe to drop the lock after changing rq->tail | 
					
						
							|  |  |  | 	 * since ipath_post_receive() won't fill the empty slot. | 
					
						
							|  |  |  | 	 */ | 
					
						
							| 
									
										
										
										
											2006-03-29 15:23:34 -08:00
										 |  |  | 	spin_lock_irqsave(&rq->lock, flags); | 
					
						
							| 
									
										
										
										
											2006-09-22 15:22:26 -07:00
										 |  |  | 	wq = rq->wq; | 
					
						
							|  |  |  | 	tail = wq->tail; | 
					
						
							| 
									
										
										
										
											2007-07-25 11:08:28 -07:00
										 |  |  | 	/* Validate tail before using it since it is user writable. */ | 
					
						
							|  |  |  | 	if (tail >= rq->size) | 
					
						
							|  |  |  | 		tail = 0; | 
					
						
							|  |  |  | 	if (unlikely(tail == wq->head)) { | 
					
						
							|  |  |  | 		spin_unlock_irqrestore(&rq->lock, flags); | 
					
						
							|  |  |  | 		dev->n_pkt_drops++; | 
					
						
							|  |  |  | 		goto drop; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	wqe = get_rwqe_ptr(rq, tail); | 
					
						
							| 
									
										
										
										
											2008-12-01 20:59:08 -08:00
										 |  |  | 	rsge.sg_list = qp->r_ud_sg_list; | 
					
						
							| 
									
										
										
										
											2007-07-25 11:08:28 -07:00
										 |  |  | 	if (!ipath_init_sge(qp, wqe, &rlen, &rsge)) { | 
					
						
							|  |  |  | 		spin_unlock_irqrestore(&rq->lock, flags); | 
					
						
							|  |  |  | 		dev->n_pkt_drops++; | 
					
						
							|  |  |  | 		goto drop; | 
					
						
							| 
									
										
										
										
											2006-03-29 15:23:34 -08:00
										 |  |  | 	} | 
					
						
							|  |  |  | 	/* Silently drop packets which are too big. */ | 
					
						
							| 
									
										
										
										
											2007-07-25 11:08:28 -07:00
										 |  |  | 	if (wc.byte_len > rlen) { | 
					
						
							| 
									
										
										
										
											2006-03-29 15:23:34 -08:00
										 |  |  | 		spin_unlock_irqrestore(&rq->lock, flags); | 
					
						
							|  |  |  | 		dev->n_pkt_drops++; | 
					
						
							| 
									
										
										
										
											2007-07-25 11:08:28 -07:00
										 |  |  | 		goto drop; | 
					
						
							| 
									
										
										
										
											2006-03-29 15:23:34 -08:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2007-07-25 11:08:28 -07:00
										 |  |  | 	if (++tail >= rq->size) | 
					
						
							|  |  |  | 		tail = 0; | 
					
						
							| 
									
										
										
										
											2006-09-22 15:22:26 -07:00
										 |  |  | 	wq->tail = tail; | 
					
						
							| 
									
										
										
										
											2007-07-25 11:08:28 -07:00
										 |  |  | 	wc.wr_id = wqe->wr_id; | 
					
						
							| 
									
										
										
										
											2006-09-22 15:22:26 -07:00
										 |  |  | 	if (handler) { | 
					
						
							| 
									
										
										
										
											2006-03-29 15:23:34 -08:00
										 |  |  | 		u32 n; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-09-22 15:22:26 -07:00
										 |  |  | 		/*
 | 
					
						
							|  |  |  | 		 * validate head pointer value and compute | 
					
						
							|  |  |  | 		 * the number of remaining WQEs. | 
					
						
							|  |  |  | 		 */ | 
					
						
							|  |  |  | 		n = wq->head; | 
					
						
							|  |  |  | 		if (n >= rq->size) | 
					
						
							|  |  |  | 			n = 0; | 
					
						
							|  |  |  | 		if (n < tail) | 
					
						
							|  |  |  | 			n += rq->size - tail; | 
					
						
							| 
									
										
										
										
											2006-03-29 15:23:34 -08:00
										 |  |  | 		else | 
					
						
							| 
									
										
										
										
											2006-09-22 15:22:26 -07:00
										 |  |  | 			n -= tail; | 
					
						
							| 
									
										
										
										
											2006-03-29 15:23:34 -08:00
										 |  |  | 		if (n < srq->limit) { | 
					
						
							|  |  |  | 			struct ib_event ev; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			srq->limit = 0; | 
					
						
							|  |  |  | 			spin_unlock_irqrestore(&rq->lock, flags); | 
					
						
							|  |  |  | 			ev.device = qp->ibqp.device; | 
					
						
							|  |  |  | 			ev.element.srq = qp->ibqp.srq; | 
					
						
							|  |  |  | 			ev.event = IB_EVENT_SRQ_LIMIT_REACHED; | 
					
						
							| 
									
										
										
										
											2006-09-22 15:22:26 -07:00
										 |  |  | 			handler(&ev, srq->ibsrq.srq_context); | 
					
						
							| 
									
										
										
										
											2006-03-29 15:23:34 -08:00
										 |  |  | 		} else | 
					
						
							|  |  |  | 			spin_unlock_irqrestore(&rq->lock, flags); | 
					
						
							|  |  |  | 	} else | 
					
						
							|  |  |  | 		spin_unlock_irqrestore(&rq->lock, flags); | 
					
						
							| 
									
										
										
										
											2006-09-22 15:22:26 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-07-25 11:08:28 -07:00
										 |  |  | 	ah_attr = &to_iah(swqe->wr.wr.ud.ah)->attr; | 
					
						
							| 
									
										
										
										
											2006-03-29 15:23:34 -08:00
										 |  |  | 	if (ah_attr->ah_flags & IB_AH_GRH) { | 
					
						
							|  |  |  | 		ipath_copy_sge(&rsge, &ah_attr->grh, sizeof(struct ib_grh)); | 
					
						
							| 
									
										
										
										
											2007-07-25 11:08:28 -07:00
										 |  |  | 		wc.wc_flags |= IB_WC_GRH; | 
					
						
							| 
									
										
										
										
											2006-03-29 15:23:34 -08:00
										 |  |  | 	} else | 
					
						
							|  |  |  | 		ipath_skip_sge(&rsge, sizeof(struct ib_grh)); | 
					
						
							| 
									
										
										
										
											2007-07-25 11:08:28 -07:00
										 |  |  | 	sge = swqe->sg_list; | 
					
						
							| 
									
										
										
										
											2006-03-29 15:23:34 -08:00
										 |  |  | 	while (length) { | 
					
						
							|  |  |  | 		u32 len = sge->length; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		if (len > length) | 
					
						
							|  |  |  | 			len = length; | 
					
						
							| 
									
										
										
										
											2007-06-18 14:24:44 -07:00
										 |  |  | 		if (len > sge->sge_length) | 
					
						
							|  |  |  | 			len = sge->sge_length; | 
					
						
							| 
									
										
										
										
											2006-03-29 15:23:34 -08:00
										 |  |  | 		BUG_ON(len == 0); | 
					
						
							|  |  |  | 		ipath_copy_sge(&rsge, sge->vaddr, len); | 
					
						
							|  |  |  | 		sge->vaddr += len; | 
					
						
							|  |  |  | 		sge->length -= len; | 
					
						
							|  |  |  | 		sge->sge_length -= len; | 
					
						
							|  |  |  | 		if (sge->sge_length == 0) { | 
					
						
							| 
									
										
										
										
											2007-07-25 11:08:28 -07:00
										 |  |  | 			if (--swqe->wr.num_sge) | 
					
						
							|  |  |  | 				sge++; | 
					
						
							| 
									
										
										
										
											2006-03-29 15:23:34 -08:00
										 |  |  | 		} else if (sge->length == 0 && sge->mr != NULL) { | 
					
						
							|  |  |  | 			if (++sge->n >= IPATH_SEGSZ) { | 
					
						
							|  |  |  | 				if (++sge->m >= sge->mr->mapsz) | 
					
						
							|  |  |  | 					break; | 
					
						
							|  |  |  | 				sge->n = 0; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 			sge->vaddr = | 
					
						
							|  |  |  | 				sge->mr->map[sge->m]->segs[sge->n].vaddr; | 
					
						
							|  |  |  | 			sge->length = | 
					
						
							|  |  |  | 				sge->mr->map[sge->m]->segs[sge->n].length; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		length -= len; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2007-07-25 11:08:28 -07:00
										 |  |  | 	wc.status = IB_WC_SUCCESS; | 
					
						
							|  |  |  | 	wc.opcode = IB_WC_RECV; | 
					
						
							|  |  |  | 	wc.qp = &qp->ibqp; | 
					
						
							|  |  |  | 	wc.src_qp = sqp->ibqp.qp_num; | 
					
						
							| 
									
										
										
										
											2006-03-29 15:23:34 -08:00
										 |  |  | 	/* XXX do we know which pkey matched? Only needed for GSI. */ | 
					
						
							| 
									
										
										
										
											2007-07-25 11:08:28 -07:00
										 |  |  | 	wc.pkey_index = 0; | 
					
						
							|  |  |  | 	wc.slid = dev->dd->ipath_lid | | 
					
						
							| 
									
										
										
										
											2006-03-29 15:23:34 -08:00
										 |  |  | 		(ah_attr->src_path_bits & | 
					
						
							| 
									
										
										
										
											2007-09-13 11:42:52 -07:00
										 |  |  | 		 ((1 << dev->dd->ipath_lmc) - 1)); | 
					
						
							| 
									
										
										
										
											2007-07-25 11:08:28 -07:00
										 |  |  | 	wc.sl = ah_attr->sl; | 
					
						
							|  |  |  | 	wc.dlid_path_bits = | 
					
						
							| 
									
										
										
										
											2007-09-13 11:42:52 -07:00
										 |  |  | 		ah_attr->dlid & ((1 << dev->dd->ipath_lmc) - 1); | 
					
						
							| 
									
										
										
										
											2007-07-25 11:08:28 -07:00
										 |  |  | 	wc.port_num = 1; | 
					
						
							| 
									
										
										
										
											2006-03-29 15:23:34 -08:00
										 |  |  | 	/* Signal completion event if the solicited bit is set. */ | 
					
						
							| 
									
										
										
										
											2007-07-25 11:08:28 -07:00
										 |  |  | 	ipath_cq_enter(to_icq(qp->ibqp.recv_cq), &wc, | 
					
						
							|  |  |  | 		       swqe->wr.send_flags & IB_SEND_SOLICITED); | 
					
						
							|  |  |  | drop: | 
					
						
							| 
									
										
										
										
											2006-03-29 15:23:34 -08:00
										 |  |  | 	if (atomic_dec_and_test(&qp->refcount)) | 
					
						
							|  |  |  | 		wake_up(&qp->wait); | 
					
						
							| 
									
										
										
										
											2008-05-13 11:41:29 -07:00
										 |  |  | done:; | 
					
						
							| 
									
										
										
										
											2006-03-29 15:23:34 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /**
 | 
					
						
							| 
									
										
										
										
											2007-07-25 11:08:28 -07:00
										 |  |  |  * ipath_make_ud_req - construct a UD request packet | 
					
						
							| 
									
										
										
										
											2006-03-29 15:23:34 -08:00
										 |  |  |  * @qp: the QP | 
					
						
							|  |  |  |  * | 
					
						
							| 
									
										
										
										
											2007-07-25 11:08:28 -07:00
										 |  |  |  * Return 1 if constructed; otherwise, return 0. | 
					
						
							| 
									
										
										
										
											2006-03-29 15:23:34 -08:00
										 |  |  |  */ | 
					
						
							| 
									
										
										
										
											2007-07-25 11:08:28 -07:00
										 |  |  | int ipath_make_ud_req(struct ipath_qp *qp) | 
					
						
							| 
									
										
										
										
											2006-03-29 15:23:34 -08:00
										 |  |  | { | 
					
						
							|  |  |  | 	struct ipath_ibdev *dev = to_idev(qp->ibqp.device); | 
					
						
							|  |  |  | 	struct ipath_other_headers *ohdr; | 
					
						
							|  |  |  | 	struct ib_ah_attr *ah_attr; | 
					
						
							| 
									
										
										
										
											2007-07-25 11:08:28 -07:00
										 |  |  | 	struct ipath_swqe *wqe; | 
					
						
							| 
									
										
										
										
											2008-05-13 11:41:29 -07:00
										 |  |  | 	unsigned long flags; | 
					
						
							| 
									
										
										
										
											2006-03-29 15:23:34 -08:00
										 |  |  | 	u32 nwords; | 
					
						
							|  |  |  | 	u32 extra_bytes; | 
					
						
							|  |  |  | 	u32 bth0; | 
					
						
							|  |  |  | 	u16 lrh0; | 
					
						
							|  |  |  | 	u16 lid; | 
					
						
							| 
									
										
										
										
											2007-07-25 11:08:28 -07:00
										 |  |  | 	int ret = 0; | 
					
						
							| 
									
										
										
										
											2008-08-15 11:23:47 -07:00
										 |  |  | 	int next_cur; | 
					
						
							| 
									
										
										
										
											2006-03-29 15:23:34 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-05-13 11:41:29 -07:00
										 |  |  | 	spin_lock_irqsave(&qp->s_lock, flags); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (!(ib_ipath_state_ops[qp->state] & IPATH_PROCESS_NEXT_SEND_OK)) { | 
					
						
							|  |  |  | 		if (!(ib_ipath_state_ops[qp->state] & IPATH_FLUSH_SEND)) | 
					
						
							|  |  |  | 			goto bail; | 
					
						
							|  |  |  | 		/* We are in the error state, flush the work request. */ | 
					
						
							|  |  |  | 		if (qp->s_last == qp->s_head) | 
					
						
							|  |  |  | 			goto bail; | 
					
						
							|  |  |  | 		/* If DMAs are in progress, we can't flush immediately. */ | 
					
						
							|  |  |  | 		if (atomic_read(&qp->s_dma_busy)) { | 
					
						
							|  |  |  | 			qp->s_flags |= IPATH_S_WAIT_DMA; | 
					
						
							|  |  |  | 			goto bail; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		wqe = get_swqe_ptr(qp, qp->s_last); | 
					
						
							|  |  |  | 		ipath_send_complete(qp, wqe, IB_WC_WR_FLUSH_ERR); | 
					
						
							|  |  |  | 		goto done; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2006-03-29 15:23:34 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-07-25 11:08:28 -07:00
										 |  |  | 	if (qp->s_cur == qp->s_head) | 
					
						
							| 
									
										
										
										
											2007-03-15 14:45:16 -07:00
										 |  |  | 		goto bail; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-07-25 11:08:28 -07:00
										 |  |  | 	wqe = get_swqe_ptr(qp, qp->s_cur); | 
					
						
							| 
									
										
										
										
											2008-08-15 11:23:47 -07:00
										 |  |  | 	next_cur = qp->s_cur + 1; | 
					
						
							|  |  |  | 	if (next_cur >= qp->s_size) | 
					
						
							|  |  |  | 		next_cur = 0; | 
					
						
							| 
									
										
										
										
											2006-03-29 15:23:34 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	/* Construct the header. */ | 
					
						
							| 
									
										
										
										
											2007-07-25 11:08:28 -07:00
										 |  |  | 	ah_attr = &to_iah(wqe->wr.wr.ud.ah)->attr; | 
					
						
							| 
									
										
										
										
											2006-07-01 04:36:17 -07:00
										 |  |  | 	if (ah_attr->dlid >= IPATH_MULTICAST_LID_BASE) { | 
					
						
							|  |  |  | 		if (ah_attr->dlid != IPATH_PERMISSIVE_LID) | 
					
						
							| 
									
										
										
										
											2006-03-29 15:23:34 -08:00
										 |  |  | 			dev->n_multicast_xmit++; | 
					
						
							|  |  |  | 		else | 
					
						
							|  |  |  | 			dev->n_unicast_xmit++; | 
					
						
							|  |  |  | 	} else { | 
					
						
							|  |  |  | 		dev->n_unicast_xmit++; | 
					
						
							| 
									
										
										
										
											2008-05-13 11:41:29 -07:00
										 |  |  | 		lid = ah_attr->dlid & ~((1 << dev->dd->ipath_lmc) - 1); | 
					
						
							| 
									
										
										
										
											2006-08-25 11:24:32 -07:00
										 |  |  | 		if (unlikely(lid == dev->dd->ipath_lid)) { | 
					
						
							| 
									
										
										
										
											2008-05-13 11:41:29 -07:00
										 |  |  | 			/*
 | 
					
						
							|  |  |  | 			 * If DMAs are in progress, we can't generate | 
					
						
							|  |  |  | 			 * a completion for the loopback packet since | 
					
						
							|  |  |  | 			 * it would be out of order. | 
					
						
							|  |  |  | 			 * XXX Instead of waiting, we could queue a | 
					
						
							|  |  |  | 			 * zero length descriptor so we get a callback. | 
					
						
							|  |  |  | 			 */ | 
					
						
							|  |  |  | 			if (atomic_read(&qp->s_dma_busy)) { | 
					
						
							|  |  |  | 				qp->s_flags |= IPATH_S_WAIT_DMA; | 
					
						
							|  |  |  | 				goto bail; | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2008-08-15 11:23:47 -07:00
										 |  |  | 			qp->s_cur = next_cur; | 
					
						
							| 
									
										
										
										
											2008-05-13 11:41:29 -07:00
										 |  |  | 			spin_unlock_irqrestore(&qp->s_lock, flags); | 
					
						
							| 
									
										
										
										
											2007-07-25 11:08:28 -07:00
										 |  |  | 			ipath_ud_loopback(qp, wqe); | 
					
						
							| 
									
										
										
										
											2008-05-13 11:41:29 -07:00
										 |  |  | 			spin_lock_irqsave(&qp->s_lock, flags); | 
					
						
							|  |  |  | 			ipath_send_complete(qp, wqe, IB_WC_SUCCESS); | 
					
						
							| 
									
										
										
										
											2006-03-29 15:23:34 -08:00
										 |  |  | 			goto done; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2007-07-25 11:08:28 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-08-15 11:23:47 -07:00
										 |  |  | 	qp->s_cur = next_cur; | 
					
						
							| 
									
										
										
										
											2007-07-25 11:08:28 -07:00
										 |  |  | 	extra_bytes = -wqe->length & 3; | 
					
						
							|  |  |  | 	nwords = (wqe->length + extra_bytes) >> 2; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* header size in 32-bit words LRH+BTH+DETH = (8+12+8)/4. */ | 
					
						
							|  |  |  | 	qp->s_hdrwords = 7; | 
					
						
							|  |  |  | 	qp->s_cur_size = wqe->length; | 
					
						
							|  |  |  | 	qp->s_cur_sge = &qp->s_sge; | 
					
						
							| 
									
										
										
										
											2008-04-16 21:09:32 -07:00
										 |  |  | 	qp->s_dmult = ah_attr->static_rate; | 
					
						
							| 
									
										
										
										
											2007-07-25 11:08:28 -07:00
										 |  |  | 	qp->s_wqe = wqe; | 
					
						
							|  |  |  | 	qp->s_sge.sge = wqe->sg_list[0]; | 
					
						
							|  |  |  | 	qp->s_sge.sg_list = wqe->sg_list + 1; | 
					
						
							|  |  |  | 	qp->s_sge.num_sge = wqe->wr.num_sge; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-03-29 15:23:34 -08:00
										 |  |  | 	if (ah_attr->ah_flags & IB_AH_GRH) { | 
					
						
							|  |  |  | 		/* Header size in 32-bit words. */ | 
					
						
							| 
									
										
										
										
											2007-07-25 11:08:28 -07:00
										 |  |  | 		qp->s_hdrwords += ipath_make_grh(dev, &qp->s_hdr.u.l.grh, | 
					
						
							|  |  |  | 						 &ah_attr->grh, | 
					
						
							|  |  |  | 						 qp->s_hdrwords, nwords); | 
					
						
							| 
									
										
										
										
											2006-07-01 04:36:17 -07:00
										 |  |  | 		lrh0 = IPATH_LRH_GRH; | 
					
						
							| 
									
										
										
										
											2006-03-29 15:23:34 -08:00
										 |  |  | 		ohdr = &qp->s_hdr.u.l.oth; | 
					
						
							|  |  |  | 		/*
 | 
					
						
							|  |  |  | 		 * Don't worry about sending to locally attached multicast | 
					
						
							|  |  |  | 		 * QPs.  It is unspecified by the spec. what happens. | 
					
						
							|  |  |  | 		 */ | 
					
						
							|  |  |  | 	} else { | 
					
						
							|  |  |  | 		/* Header size in 32-bit words. */ | 
					
						
							| 
									
										
										
										
											2006-07-01 04:36:17 -07:00
										 |  |  | 		lrh0 = IPATH_LRH_BTH; | 
					
						
							| 
									
										
										
										
											2006-03-29 15:23:34 -08:00
										 |  |  | 		ohdr = &qp->s_hdr.u.oth; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2007-07-25 11:08:28 -07:00
										 |  |  | 	if (wqe->wr.opcode == IB_WR_SEND_WITH_IMM) { | 
					
						
							| 
									
										
										
										
											2008-01-25 14:17:44 -08:00
										 |  |  | 		qp->s_hdrwords++; | 
					
						
							| 
									
										
										
										
											2008-04-16 21:09:32 -07:00
										 |  |  | 		ohdr->u.ud.imm_data = wqe->wr.ex.imm_data; | 
					
						
							| 
									
										
										
										
											2006-03-29 15:23:34 -08:00
										 |  |  | 		bth0 = IB_OPCODE_UD_SEND_ONLY_WITH_IMMEDIATE << 24; | 
					
						
							| 
									
										
										
										
											2007-07-25 11:08:28 -07:00
										 |  |  | 	} else | 
					
						
							| 
									
										
										
										
											2006-03-29 15:23:34 -08:00
										 |  |  | 		bth0 = IB_OPCODE_UD_SEND_ONLY << 24; | 
					
						
							|  |  |  | 	lrh0 |= ah_attr->sl << 4; | 
					
						
							|  |  |  | 	if (qp->ibqp.qp_type == IB_QPT_SMI) | 
					
						
							|  |  |  | 		lrh0 |= 0xF000;	/* Set VL (see ch. 13.5.3.1) */ | 
					
						
							|  |  |  | 	qp->s_hdr.lrh[0] = cpu_to_be16(lrh0); | 
					
						
							|  |  |  | 	qp->s_hdr.lrh[1] = cpu_to_be16(ah_attr->dlid);	/* DEST LID */ | 
					
						
							| 
									
										
										
										
											2007-07-25 11:08:28 -07:00
										 |  |  | 	qp->s_hdr.lrh[2] = cpu_to_be16(qp->s_hdrwords + nwords + | 
					
						
							|  |  |  | 					   SIZE_OF_CRC); | 
					
						
							| 
									
										
										
										
											2006-08-25 11:24:32 -07:00
										 |  |  | 	lid = dev->dd->ipath_lid; | 
					
						
							| 
									
										
										
										
											2006-03-29 15:23:34 -08:00
										 |  |  | 	if (lid) { | 
					
						
							|  |  |  | 		lid |= ah_attr->src_path_bits & | 
					
						
							| 
									
										
										
										
											2007-09-13 11:42:52 -07:00
										 |  |  | 			((1 << dev->dd->ipath_lmc) - 1); | 
					
						
							| 
									
										
										
										
											2006-03-29 15:23:34 -08:00
										 |  |  | 		qp->s_hdr.lrh[3] = cpu_to_be16(lid); | 
					
						
							|  |  |  | 	} else | 
					
						
							|  |  |  | 		qp->s_hdr.lrh[3] = IB_LID_PERMISSIVE; | 
					
						
							| 
									
										
										
										
											2007-07-25 11:08:28 -07:00
										 |  |  | 	if (wqe->wr.send_flags & IB_SEND_SOLICITED) | 
					
						
							| 
									
										
										
										
											2006-03-29 15:23:34 -08:00
										 |  |  | 		bth0 |= 1 << 23; | 
					
						
							|  |  |  | 	bth0 |= extra_bytes << 20; | 
					
						
							| 
									
										
										
										
											2006-07-01 04:36:17 -07:00
										 |  |  | 	bth0 |= qp->ibqp.qp_type == IB_QPT_SMI ? IPATH_DEFAULT_P_KEY : | 
					
						
							| 
									
										
										
										
											2006-08-25 11:24:32 -07:00
										 |  |  | 		ipath_get_pkey(dev->dd, qp->s_pkey_index); | 
					
						
							| 
									
										
										
										
											2006-03-29 15:23:34 -08:00
										 |  |  | 	ohdr->bth[0] = cpu_to_be32(bth0); | 
					
						
							|  |  |  | 	/*
 | 
					
						
							|  |  |  | 	 * Use the multicast QP if the destination LID is a multicast LID. | 
					
						
							|  |  |  | 	 */ | 
					
						
							| 
									
										
										
										
											2006-07-01 04:36:17 -07:00
										 |  |  | 	ohdr->bth[1] = ah_attr->dlid >= IPATH_MULTICAST_LID_BASE && | 
					
						
							|  |  |  | 		ah_attr->dlid != IPATH_PERMISSIVE_LID ? | 
					
						
							| 
									
										
										
										
											2009-01-17 17:11:57 -08:00
										 |  |  | 		cpu_to_be32(IPATH_MULTICAST_QPN) : | 
					
						
							| 
									
										
										
										
											2007-07-25 11:08:28 -07:00
										 |  |  | 		cpu_to_be32(wqe->wr.wr.ud.remote_qpn); | 
					
						
							| 
									
										
										
										
											2006-07-01 04:36:17 -07:00
										 |  |  | 	ohdr->bth[2] = cpu_to_be32(qp->s_next_psn++ & IPATH_PSN_MASK); | 
					
						
							| 
									
										
										
										
											2006-03-29 15:23:34 -08:00
										 |  |  | 	/*
 | 
					
						
							|  |  |  | 	 * Qkeys with the high order bit set mean use the | 
					
						
							|  |  |  | 	 * qkey from the QP context instead of the WR (see 10.2.5). | 
					
						
							|  |  |  | 	 */ | 
					
						
							| 
									
										
										
										
											2007-07-25 11:08:28 -07:00
										 |  |  | 	ohdr->u.ud.deth[0] = cpu_to_be32((int)wqe->wr.wr.ud.remote_qkey < 0 ? | 
					
						
							|  |  |  | 					 qp->qkey : wqe->wr.wr.ud.remote_qkey); | 
					
						
							| 
									
										
										
										
											2006-03-29 15:23:34 -08:00
										 |  |  | 	ohdr->u.ud.deth[1] = cpu_to_be32(qp->ibqp.qp_num); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | done: | 
					
						
							| 
									
										
										
										
											2007-07-25 11:08:28 -07:00
										 |  |  | 	ret = 1; | 
					
						
							| 
									
										
										
										
											2008-05-13 11:41:29 -07:00
										 |  |  | 	goto unlock; | 
					
						
							| 
									
										
										
										
											2006-03-29 15:23:34 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  | bail: | 
					
						
							| 
									
										
										
										
											2008-05-13 11:41:29 -07:00
										 |  |  | 	qp->s_flags &= ~IPATH_S_BUSY; | 
					
						
							|  |  |  | unlock: | 
					
						
							|  |  |  | 	spin_unlock_irqrestore(&qp->s_lock, flags); | 
					
						
							| 
									
										
										
										
											2006-03-29 15:23:34 -08:00
										 |  |  | 	return ret; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /**
 | 
					
						
							|  |  |  |  * ipath_ud_rcv - receive an incoming UD packet | 
					
						
							|  |  |  |  * @dev: the device the packet came in on | 
					
						
							|  |  |  |  * @hdr: the packet header | 
					
						
							|  |  |  |  * @has_grh: true if the packet has a GRH | 
					
						
							|  |  |  |  * @data: the packet data | 
					
						
							|  |  |  |  * @tlen: the packet length | 
					
						
							|  |  |  |  * @qp: the QP the packet came on | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * This is called from ipath_qp_rcv() to process an incoming UD packet | 
					
						
							|  |  |  |  * for the given QP. | 
					
						
							|  |  |  |  * Called at interrupt level. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | void ipath_ud_rcv(struct ipath_ibdev *dev, struct ipath_ib_header *hdr, | 
					
						
							|  |  |  | 		  int has_grh, void *data, u32 tlen, struct ipath_qp *qp) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct ipath_other_headers *ohdr; | 
					
						
							|  |  |  | 	int opcode; | 
					
						
							|  |  |  | 	u32 hdrsize; | 
					
						
							|  |  |  | 	u32 pad; | 
					
						
							|  |  |  | 	struct ib_wc wc; | 
					
						
							|  |  |  | 	u32 qkey; | 
					
						
							|  |  |  | 	u32 src_qp; | 
					
						
							|  |  |  | 	u16 dlid; | 
					
						
							|  |  |  | 	int header_in_data; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* Check for GRH */ | 
					
						
							|  |  |  | 	if (!has_grh) { | 
					
						
							|  |  |  | 		ohdr = &hdr->u.oth; | 
					
						
							|  |  |  | 		hdrsize = 8 + 12 + 8;	/* LRH + BTH + DETH */ | 
					
						
							|  |  |  | 		qkey = be32_to_cpu(ohdr->u.ud.deth[0]); | 
					
						
							|  |  |  | 		src_qp = be32_to_cpu(ohdr->u.ud.deth[1]); | 
					
						
							|  |  |  | 		header_in_data = 0; | 
					
						
							|  |  |  | 	} else { | 
					
						
							|  |  |  | 		ohdr = &hdr->u.l.oth; | 
					
						
							|  |  |  | 		hdrsize = 8 + 40 + 12 + 8; /* LRH + GRH + BTH + DETH */ | 
					
						
							|  |  |  | 		/*
 | 
					
						
							|  |  |  | 		 * The header with GRH is 68 bytes and the core driver sets | 
					
						
							|  |  |  | 		 * the eager header buffer size to 56 bytes so the last 12 | 
					
						
							|  |  |  | 		 * bytes of the IB header is in the data buffer. | 
					
						
							|  |  |  | 		 */ | 
					
						
							| 
									
										
										
										
											2006-08-25 11:24:32 -07:00
										 |  |  | 		header_in_data = dev->dd->ipath_rcvhdrentsize == 16; | 
					
						
							| 
									
										
										
										
											2006-03-29 15:23:34 -08:00
										 |  |  | 		if (header_in_data) { | 
					
						
							|  |  |  | 			qkey = be32_to_cpu(((__be32 *) data)[1]); | 
					
						
							|  |  |  | 			src_qp = be32_to_cpu(((__be32 *) data)[2]); | 
					
						
							|  |  |  | 			data += 12; | 
					
						
							|  |  |  | 		} else { | 
					
						
							|  |  |  | 			qkey = be32_to_cpu(ohdr->u.ud.deth[0]); | 
					
						
							|  |  |  | 			src_qp = be32_to_cpu(ohdr->u.ud.deth[1]); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2006-07-01 04:36:17 -07:00
										 |  |  | 	src_qp &= IPATH_QPN_MASK; | 
					
						
							| 
									
										
										
										
											2006-03-29 15:23:34 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	/*
 | 
					
						
							|  |  |  | 	 * Check that the permissive LID is only used on QP0 | 
					
						
							|  |  |  | 	 * and the QKEY matches (see 9.6.1.4.1 and 9.6.1.5.1). | 
					
						
							|  |  |  | 	 */ | 
					
						
							|  |  |  | 	if (qp->ibqp.qp_num) { | 
					
						
							|  |  |  | 		if (unlikely(hdr->lrh[1] == IB_LID_PERMISSIVE || | 
					
						
							|  |  |  | 			     hdr->lrh[3] == IB_LID_PERMISSIVE)) { | 
					
						
							|  |  |  | 			dev->n_pkt_drops++; | 
					
						
							|  |  |  | 			goto bail; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		if (unlikely(qkey != qp->qkey)) { | 
					
						
							|  |  |  | 			/* XXX OK to lose a count once in a while. */ | 
					
						
							|  |  |  | 			dev->qkey_violations++; | 
					
						
							|  |  |  | 			dev->n_pkt_drops++; | 
					
						
							|  |  |  | 			goto bail; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} else if (hdr->lrh[1] == IB_LID_PERMISSIVE || | 
					
						
							|  |  |  | 		   hdr->lrh[3] == IB_LID_PERMISSIVE) { | 
					
						
							|  |  |  | 		struct ib_smp *smp = (struct ib_smp *) data; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		if (smp->mgmt_class != IB_MGMT_CLASS_SUBN_DIRECTED_ROUTE) { | 
					
						
							|  |  |  | 			dev->n_pkt_drops++; | 
					
						
							|  |  |  | 			goto bail; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-01-15 15:58:13 -08:00
										 |  |  | 	/*
 | 
					
						
							|  |  |  | 	 * The opcode is in the low byte when its in network order | 
					
						
							|  |  |  | 	 * (top byte when in host order). | 
					
						
							|  |  |  | 	 */ | 
					
						
							|  |  |  | 	opcode = be32_to_cpu(ohdr->bth[0]) >> 24; | 
					
						
							|  |  |  | 	if (qp->ibqp.qp_num > 1 && | 
					
						
							|  |  |  | 	    opcode == IB_OPCODE_UD_SEND_ONLY_WITH_IMMEDIATE) { | 
					
						
							|  |  |  | 		if (header_in_data) { | 
					
						
							| 
									
										
										
										
											2008-07-14 23:48:45 -07:00
										 |  |  | 			wc.ex.imm_data = *(__be32 *) data; | 
					
						
							| 
									
										
										
										
											2008-01-15 15:58:13 -08:00
										 |  |  | 			data += sizeof(__be32); | 
					
						
							|  |  |  | 		} else | 
					
						
							| 
									
										
										
										
											2008-07-14 23:48:45 -07:00
										 |  |  | 			wc.ex.imm_data = ohdr->u.ud.imm_data; | 
					
						
							| 
									
										
										
										
											2008-01-15 15:58:13 -08:00
										 |  |  | 		wc.wc_flags = IB_WC_WITH_IMM; | 
					
						
							|  |  |  | 		hdrsize += sizeof(u32); | 
					
						
							|  |  |  | 	} else if (opcode == IB_OPCODE_UD_SEND_ONLY) { | 
					
						
							| 
									
										
										
										
											2008-07-14 23:48:45 -07:00
										 |  |  | 		wc.ex.imm_data = 0; | 
					
						
							| 
									
										
										
										
											2008-01-15 15:58:13 -08:00
										 |  |  | 		wc.wc_flags = 0; | 
					
						
							|  |  |  | 	} else { | 
					
						
							|  |  |  | 		dev->n_pkt_drops++; | 
					
						
							|  |  |  | 		goto bail; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-03-29 15:23:34 -08:00
										 |  |  | 	/* Get the number of bytes the message was padded by. */ | 
					
						
							|  |  |  | 	pad = (be32_to_cpu(ohdr->bth[0]) >> 20) & 3; | 
					
						
							|  |  |  | 	if (unlikely(tlen < (hdrsize + pad + 4))) { | 
					
						
							|  |  |  | 		/* Drop incomplete packets. */ | 
					
						
							|  |  |  | 		dev->n_pkt_drops++; | 
					
						
							|  |  |  | 		goto bail; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	tlen -= hdrsize + pad + 4; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* Drop invalid MAD packets (see 13.5.3.1). */ | 
					
						
							|  |  |  | 	if (unlikely((qp->ibqp.qp_num == 0 && | 
					
						
							|  |  |  | 		      (tlen != 256 || | 
					
						
							|  |  |  | 		       (be16_to_cpu(hdr->lrh[0]) >> 12) != 15)) || | 
					
						
							|  |  |  | 		     (qp->ibqp.qp_num == 1 && | 
					
						
							|  |  |  | 		      (tlen != 256 || | 
					
						
							|  |  |  | 		       (be16_to_cpu(hdr->lrh[0]) >> 12) == 15)))) { | 
					
						
							|  |  |  | 		dev->n_pkt_drops++; | 
					
						
							|  |  |  | 		goto bail; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/*
 | 
					
						
							|  |  |  | 	 * A GRH is expected to preceed the data even if not | 
					
						
							|  |  |  | 	 * present on the wire. | 
					
						
							|  |  |  | 	 */ | 
					
						
							|  |  |  | 	wc.byte_len = tlen + sizeof(struct ib_grh); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/*
 | 
					
						
							|  |  |  | 	 * Get the next work request entry to find where to put the data. | 
					
						
							|  |  |  | 	 */ | 
					
						
							| 
									
										
										
										
											2008-05-13 11:41:29 -07:00
										 |  |  | 	if (qp->r_flags & IPATH_R_REUSE_SGE) | 
					
						
							|  |  |  | 		qp->r_flags &= ~IPATH_R_REUSE_SGE; | 
					
						
							| 
									
										
										
										
											2006-09-22 15:22:26 -07:00
										 |  |  | 	else if (!ipath_get_rwqe(qp, 0)) { | 
					
						
							| 
									
										
										
										
											2006-07-01 04:36:09 -07:00
										 |  |  | 		/*
 | 
					
						
							|  |  |  | 		 * Count VL15 packets dropped due to no receive buffer. | 
					
						
							|  |  |  | 		 * Otherwise, count them as buffer overruns since usually, | 
					
						
							|  |  |  | 		 * the HW will be able to receive packets even if there are | 
					
						
							|  |  |  | 		 * no QPs with posted receive buffers. | 
					
						
							|  |  |  | 		 */ | 
					
						
							|  |  |  | 		if (qp->ibqp.qp_num == 0) | 
					
						
							|  |  |  | 			dev->n_vl15_dropped++; | 
					
						
							|  |  |  | 		else | 
					
						
							|  |  |  | 			dev->rcv_errors++; | 
					
						
							| 
									
										
										
										
											2006-03-29 15:23:34 -08:00
										 |  |  | 		goto bail; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	/* Silently drop packets which are too big. */ | 
					
						
							| 
									
										
										
										
											2006-09-22 15:22:26 -07:00
										 |  |  | 	if (wc.byte_len > qp->r_len) { | 
					
						
							| 
									
										
										
										
											2008-05-13 11:41:29 -07:00
										 |  |  | 		qp->r_flags |= IPATH_R_REUSE_SGE; | 
					
						
							| 
									
										
										
										
											2006-03-29 15:23:34 -08:00
										 |  |  | 		dev->n_pkt_drops++; | 
					
						
							|  |  |  | 		goto bail; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	if (has_grh) { | 
					
						
							|  |  |  | 		ipath_copy_sge(&qp->r_sge, &hdr->u.l.grh, | 
					
						
							|  |  |  | 			       sizeof(struct ib_grh)); | 
					
						
							|  |  |  | 		wc.wc_flags |= IB_WC_GRH; | 
					
						
							|  |  |  | 	} else | 
					
						
							|  |  |  | 		ipath_skip_sge(&qp->r_sge, sizeof(struct ib_grh)); | 
					
						
							|  |  |  | 	ipath_copy_sge(&qp->r_sge, data, | 
					
						
							|  |  |  | 		       wc.byte_len - sizeof(struct ib_grh)); | 
					
						
							| 
									
										
										
										
											2008-05-13 11:41:29 -07:00
										 |  |  | 	if (!test_and_clear_bit(IPATH_R_WRID_VALID, &qp->r_aflags)) | 
					
						
							|  |  |  | 		goto bail; | 
					
						
							| 
									
										
										
										
											2006-09-22 15:22:26 -07:00
										 |  |  | 	wc.wr_id = qp->r_wr_id; | 
					
						
							| 
									
										
										
										
											2006-03-29 15:23:34 -08:00
										 |  |  | 	wc.status = IB_WC_SUCCESS; | 
					
						
							|  |  |  | 	wc.opcode = IB_WC_RECV; | 
					
						
							|  |  |  | 	wc.vendor_err = 0; | 
					
						
							| 
									
										
										
										
											2006-12-31 21:09:42 +02:00
										 |  |  | 	wc.qp = &qp->ibqp; | 
					
						
							| 
									
										
										
										
											2006-03-29 15:23:34 -08:00
										 |  |  | 	wc.src_qp = src_qp; | 
					
						
							|  |  |  | 	/* XXX do we know which pkey matched? Only needed for GSI. */ | 
					
						
							|  |  |  | 	wc.pkey_index = 0; | 
					
						
							|  |  |  | 	wc.slid = be16_to_cpu(hdr->lrh[3]); | 
					
						
							|  |  |  | 	wc.sl = (be16_to_cpu(hdr->lrh[0]) >> 4) & 0xF; | 
					
						
							|  |  |  | 	dlid = be16_to_cpu(hdr->lrh[1]); | 
					
						
							|  |  |  | 	/*
 | 
					
						
							|  |  |  | 	 * Save the LMC lower bits if the destination LID is a unicast LID. | 
					
						
							|  |  |  | 	 */ | 
					
						
							| 
									
										
										
										
											2006-07-01 04:36:17 -07:00
										 |  |  | 	wc.dlid_path_bits = dlid >= IPATH_MULTICAST_LID_BASE ? 0 : | 
					
						
							| 
									
										
										
										
											2007-09-13 11:42:52 -07:00
										 |  |  | 		dlid & ((1 << dev->dd->ipath_lmc) - 1); | 
					
						
							| 
									
										
										
										
											2007-07-25 11:08:28 -07:00
										 |  |  | 	wc.port_num = 1; | 
					
						
							| 
									
										
										
										
											2006-03-29 15:23:34 -08:00
										 |  |  | 	/* Signal completion event if the solicited bit is set. */ | 
					
						
							|  |  |  | 	ipath_cq_enter(to_icq(qp->ibqp.recv_cq), &wc, | 
					
						
							|  |  |  | 		       (ohdr->bth[0] & | 
					
						
							| 
									
										
										
										
											2009-01-17 17:11:57 -08:00
										 |  |  | 			cpu_to_be32(1 << 23)) != 0); | 
					
						
							| 
									
										
										
										
											2006-03-29 15:23:34 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  | bail:; | 
					
						
							|  |  |  | } |