ipath_ud.c 16.4 KB
Newer Older
1
/*
2
 * Copyright (c) 2006, 2007, 2008 QLogic Corporation. All rights reserved.
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
 * 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.
 */

#include <rdma/ib_smi.h>

#include "ipath_verbs.h"
37 38
#include "ipath_kernel.h"

39 40
/**
 * ipath_ud_loopback - handle send on loopback QPs
41 42
 * @sqp: the sending QP
 * @swqe: the send work request
43
 *
44
 * This is called from ipath_make_ud_req() to forward a WQE addressed
45
 * to the same HCA.
46 47
 * Note that the receive interrupt handler may be calling ipath_ud_rcv()
 * while this is being called.
48
 */
49
static void ipath_ud_loopback(struct ipath_qp *sqp, struct ipath_swqe *swqe)
50 51 52 53 54 55 56 57 58
{
	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;
59
	struct ipath_rwq *wq;
60
	struct ipath_rwqe *wqe;
61
	void (*handler)(struct ib_event *, void *);
62
	struct ib_wc wc;
63 64
	u32 tail;
	u32 rlen;
65
	u32 length;
66

67
	qp = ipath_lookup_qpn(&dev->qp_table, swqe->wr.wr.ud.remote_qpn);
68
	if (!qp || !(ib_ipath_state_ops[qp->state] & IPATH_PROCESS_RECV_OK)) {
69
		dev->n_pkt_drops++;
70
		goto done;
71 72 73
	}

	rsge.sg_list = NULL;
74 75 76 77 78 79 80

	/*
	 * 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 &&
81 82
		     ((int) swqe->wr.wr.ud.remote_qkey < 0 ?
		      sqp->qkey : swqe->wr.wr.ud.remote_qkey) != qp->qkey)) {
83 84 85
		/* XXX OK to lose a count once in a while. */
		dev->qkey_violations++;
		dev->n_pkt_drops++;
86
		goto drop;
87 88 89 90 91 92
	}

	/*
	 * A GRH is expected to preceed the data even if not
	 * present on the wire.
	 */
93
	length = swqe->length;
94
	memset(&wc, 0, sizeof wc);
95
	wc.byte_len = length + sizeof(struct ib_grh);
96

97 98
	if (swqe->wr.opcode == IB_WR_SEND_WITH_IMM) {
		wc.wc_flags = IB_WC_WITH_IMM;
99
		wc.ex.imm_data = swqe->wr.ex.imm_data;
100 101 102
	}

	/*
103 104 105 106
	 * 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.
107 108 109
	 */
	if (qp->ibqp.srq) {
		srq = to_isrq(qp->ibqp.srq);
110
		handler = srq->ibsrq.event_handler;
111 112 113
		rq = &srq->rq;
	} else {
		srq = NULL;
114
		handler = NULL;
115 116
		rq = &qp->r_rq;
	}
117

118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137
	if (rq->max_sge > 1) {
		/*
		 * XXX We could use GFP_KERNEL if ipath_do_send()
		 * was always called from the tasklet instead of
		 * from ipath_post_send().
		 */
		rsge.sg_list = kmalloc((rq->max_sge - 1) *
					sizeof(struct ipath_sge),
				       GFP_ATOMIC);
		if (!rsge.sg_list) {
			dev->n_pkt_drops++;
			goto drop;
		}
	}

	/*
	 * 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.
	 */
138
	spin_lock_irqsave(&rq->lock, flags);
139 140
	wq = rq->wq;
	tail = wq->tail;
141 142 143 144 145 146 147 148 149 150 151 152 153
	/* 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);
	if (!ipath_init_sge(qp, wqe, &rlen, &rsge)) {
		spin_unlock_irqrestore(&rq->lock, flags);
		dev->n_pkt_drops++;
		goto drop;
154 155
	}
	/* Silently drop packets which are too big. */
156
	if (wc.byte_len > rlen) {
157 158
		spin_unlock_irqrestore(&rq->lock, flags);
		dev->n_pkt_drops++;
159
		goto drop;
160
	}
161 162
	if (++tail >= rq->size)
		tail = 0;
163
	wq->tail = tail;
164
	wc.wr_id = wqe->wr_id;
165
	if (handler) {
166 167
		u32 n;

168 169 170 171 172 173 174 175 176
		/*
		 * 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;
177
		else
178
			n -= tail;
179 180 181 182 183 184 185 186
		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;
187
			handler(&ev, srq->ibsrq.srq_context);
188 189 190 191
		} else
			spin_unlock_irqrestore(&rq->lock, flags);
	} else
		spin_unlock_irqrestore(&rq->lock, flags);
192

193
	ah_attr = &to_iah(swqe->wr.wr.ud.ah)->attr;
194 195
	if (ah_attr->ah_flags & IB_AH_GRH) {
		ipath_copy_sge(&rsge, &ah_attr->grh, sizeof(struct ib_grh));
196
		wc.wc_flags |= IB_WC_GRH;
197 198
	} else
		ipath_skip_sge(&rsge, sizeof(struct ib_grh));
199
	sge = swqe->sg_list;
200 201 202 203 204
	while (length) {
		u32 len = sge->length;

		if (len > length)
			len = length;
205 206
		if (len > sge->sge_length)
			len = sge->sge_length;
207 208 209 210 211 212
		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) {
213 214
			if (--swqe->wr.num_sge)
				sge++;
215 216 217 218 219 220 221 222 223 224 225 226 227
		} 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;
	}
228 229 230 231
	wc.status = IB_WC_SUCCESS;
	wc.opcode = IB_WC_RECV;
	wc.qp = &qp->ibqp;
	wc.src_qp = sqp->ibqp.qp_num;
232
	/* XXX do we know which pkey matched? Only needed for GSI. */
233 234
	wc.pkey_index = 0;
	wc.slid = dev->dd->ipath_lid |
235
		(ah_attr->src_path_bits &
236
		 ((1 << dev->dd->ipath_lmc) - 1));
237 238
	wc.sl = ah_attr->sl;
	wc.dlid_path_bits =
239
		ah_attr->dlid & ((1 << dev->dd->ipath_lmc) - 1);
240
	wc.port_num = 1;
241
	/* Signal completion event if the solicited bit is set. */
242 243 244
	ipath_cq_enter(to_icq(qp->ibqp.recv_cq), &wc,
		       swqe->wr.send_flags & IB_SEND_SOLICITED);
drop:
245
	kfree(rsge.sg_list);
246 247
	if (atomic_dec_and_test(&qp->refcount))
		wake_up(&qp->wait);
248
done:;
249 250 251
}

/**
252
 * ipath_make_ud_req - construct a UD request packet
253 254
 * @qp: the QP
 *
255
 * Return 1 if constructed; otherwise, return 0.
256
 */
257
int ipath_make_ud_req(struct ipath_qp *qp)
258 259 260 261
{
	struct ipath_ibdev *dev = to_idev(qp->ibqp.device);
	struct ipath_other_headers *ohdr;
	struct ib_ah_attr *ah_attr;
262
	struct ipath_swqe *wqe;
263
	unsigned long flags;
264 265 266 267 268
	u32 nwords;
	u32 extra_bytes;
	u32 bth0;
	u16 lrh0;
	u16 lid;
269
	int ret = 0;
270
	int next_cur;
271

272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288
	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;
	}
289

290
	if (qp->s_cur == qp->s_head)
291 292
		goto bail;

293
	wqe = get_swqe_ptr(qp, qp->s_cur);
294 295 296
	next_cur = qp->s_cur + 1;
	if (next_cur >= qp->s_size)
		next_cur = 0;
297 298

	/* Construct the header. */
299
	ah_attr = &to_iah(wqe->wr.wr.ud.ah)->attr;
300 301
	if (ah_attr->dlid >= IPATH_MULTICAST_LID_BASE) {
		if (ah_attr->dlid != IPATH_PERMISSIVE_LID)
302 303 304 305 306
			dev->n_multicast_xmit++;
		else
			dev->n_unicast_xmit++;
	} else {
		dev->n_unicast_xmit++;
307
		lid = ah_attr->dlid & ~((1 << dev->dd->ipath_lmc) - 1);
308
		if (unlikely(lid == dev->dd->ipath_lid)) {
309 310 311 312 313 314 315 316 317 318 319
			/*
			 * 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;
			}
320
			qp->s_cur = next_cur;
321
			spin_unlock_irqrestore(&qp->s_lock, flags);
322
			ipath_ud_loopback(qp, wqe);
323 324
			spin_lock_irqsave(&qp->s_lock, flags);
			ipath_send_complete(qp, wqe, IB_WC_SUCCESS);
325 326 327
			goto done;
		}
	}
328

329
	qp->s_cur = next_cur;
330 331 332 333 334 335 336
	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;
337
	qp->s_dmult = ah_attr->static_rate;
338 339 340 341 342
	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;

343 344
	if (ah_attr->ah_flags & IB_AH_GRH) {
		/* Header size in 32-bit words. */
345 346 347
		qp->s_hdrwords += ipath_make_grh(dev, &qp->s_hdr.u.l.grh,
						 &ah_attr->grh,
						 qp->s_hdrwords, nwords);
348
		lrh0 = IPATH_LRH_GRH;
349 350 351 352 353 354 355
		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. */
356
		lrh0 = IPATH_LRH_BTH;
357 358
		ohdr = &qp->s_hdr.u.oth;
	}
359
	if (wqe->wr.opcode == IB_WR_SEND_WITH_IMM) {
360
		qp->s_hdrwords++;
361
		ohdr->u.ud.imm_data = wqe->wr.ex.imm_data;
362
		bth0 = IB_OPCODE_UD_SEND_ONLY_WITH_IMMEDIATE << 24;
363
	} else
364 365 366 367 368 369
		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 */
370 371
	qp->s_hdr.lrh[2] = cpu_to_be16(qp->s_hdrwords + nwords +
					   SIZE_OF_CRC);
372
	lid = dev->dd->ipath_lid;
373 374
	if (lid) {
		lid |= ah_attr->src_path_bits &
375
			((1 << dev->dd->ipath_lmc) - 1);
376 377 378
		qp->s_hdr.lrh[3] = cpu_to_be16(lid);
	} else
		qp->s_hdr.lrh[3] = IB_LID_PERMISSIVE;
379
	if (wqe->wr.send_flags & IB_SEND_SOLICITED)
380 381
		bth0 |= 1 << 23;
	bth0 |= extra_bytes << 20;
382
	bth0 |= qp->ibqp.qp_type == IB_QPT_SMI ? IPATH_DEFAULT_P_KEY :
383
		ipath_get_pkey(dev->dd, qp->s_pkey_index);
384 385 386 387
	ohdr->bth[0] = cpu_to_be32(bth0);
	/*
	 * Use the multicast QP if the destination LID is a multicast LID.
	 */
388 389 390
	ohdr->bth[1] = ah_attr->dlid >= IPATH_MULTICAST_LID_BASE &&
		ah_attr->dlid != IPATH_PERMISSIVE_LID ?
		__constant_cpu_to_be32(IPATH_MULTICAST_QPN) :
391
		cpu_to_be32(wqe->wr.wr.ud.remote_qpn);
392
	ohdr->bth[2] = cpu_to_be32(qp->s_next_psn++ & IPATH_PSN_MASK);
393 394 395 396
	/*
	 * Qkeys with the high order bit set mean use the
	 * qkey from the QP context instead of the WR (see 10.2.5).
	 */
397 398
	ohdr->u.ud.deth[0] = cpu_to_be32((int)wqe->wr.wr.ud.remote_qkey < 0 ?
					 qp->qkey : wqe->wr.wr.ud.remote_qkey);
399 400 401
	ohdr->u.ud.deth[1] = cpu_to_be32(qp->ibqp.qp_num);

done:
402
	ret = 1;
403
	goto unlock;
404 405

bail:
406 407 408
	qp->s_flags &= ~IPATH_S_BUSY;
unlock:
	spin_unlock_irqrestore(&qp->s_lock, flags);
409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452
	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.
		 */
453
		header_in_data = dev->dd->ipath_rcvhdrentsize == 16;
454 455 456 457 458 459 460 461 462
		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]);
		}
	}
463
	src_qp &= IPATH_QPN_MASK;
464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490

	/*
	 * 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;
		}
	}

491 492 493 494 495 496 497 498
	/*
	 * 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) {
499
			wc.ex.imm_data = *(__be32 *) data;
500 501
			data += sizeof(__be32);
		} else
502
			wc.ex.imm_data = ohdr->u.ud.imm_data;
503 504 505
		wc.wc_flags = IB_WC_WITH_IMM;
		hdrsize += sizeof(u32);
	} else if (opcode == IB_OPCODE_UD_SEND_ONLY) {
506
		wc.ex.imm_data = 0;
507 508 509 510 511 512
		wc.wc_flags = 0;
	} else {
		dev->n_pkt_drops++;
		goto bail;
	}

513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541
	/* 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.
	 */
542 543
	if (qp->r_flags & IPATH_R_REUSE_SGE)
		qp->r_flags &= ~IPATH_R_REUSE_SGE;
544
	else if (!ipath_get_rwqe(qp, 0)) {
545 546 547 548 549 550 551 552 553 554
		/*
		 * 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++;
555 556 557
		goto bail;
	}
	/* Silently drop packets which are too big. */
558
	if (wc.byte_len > qp->r_len) {
559
		qp->r_flags |= IPATH_R_REUSE_SGE;
560 561 562 563 564 565 566 567 568 569 570
		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));
571 572
	if (!test_and_clear_bit(IPATH_R_WRID_VALID, &qp->r_aflags))
		goto bail;
573
	wc.wr_id = qp->r_wr_id;
574 575 576
	wc.status = IB_WC_SUCCESS;
	wc.opcode = IB_WC_RECV;
	wc.vendor_err = 0;
577
	wc.qp = &qp->ibqp;
578 579 580 581 582 583 584 585 586
	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.
	 */
587
	wc.dlid_path_bits = dlid >= IPATH_MULTICAST_LID_BASE ? 0 :
588
		dlid & ((1 << dev->dd->ipath_lmc) - 1);
589
	wc.port_num = 1;
590 591 592 593 594 595 596
	/* Signal completion event if the solicited bit is set. */
	ipath_cq_enter(to_icq(qp->ibqp.recv_cq), &wc,
		       (ohdr->bth[0] &
			__constant_cpu_to_be32(1 << 23)) != 0);

bail:;
}