ipath_ud.c 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596
  1. /*
  2. * Copyright (c) 2006, 2007, 2008 QLogic Corporation. All rights reserved.
  3. * Copyright (c) 2005, 2006 PathScale, Inc. All rights reserved.
  4. *
  5. * This software is available to you under a choice of one of two
  6. * licenses. You may choose to be licensed under the terms of the GNU
  7. * General Public License (GPL) Version 2, available from the file
  8. * COPYING in the main directory of this source tree, or the
  9. * OpenIB.org BSD license below:
  10. *
  11. * Redistribution and use in source and binary forms, with or
  12. * without modification, are permitted provided that the following
  13. * conditions are met:
  14. *
  15. * - Redistributions of source code must retain the above
  16. * copyright notice, this list of conditions and the following
  17. * disclaimer.
  18. *
  19. * - Redistributions in binary form must reproduce the above
  20. * copyright notice, this list of conditions and the following
  21. * disclaimer in the documentation and/or other materials
  22. * provided with the distribution.
  23. *
  24. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
  25. * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  26. * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
  27. * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
  28. * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
  29. * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
  30. * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  31. * SOFTWARE.
  32. */
  33. #include <rdma/ib_smi.h>
  34. #include "ipath_verbs.h"
  35. #include "ipath_kernel.h"
  36. /**
  37. * ipath_ud_loopback - handle send on loopback QPs
  38. * @sqp: the sending QP
  39. * @swqe: the send work request
  40. *
  41. * This is called from ipath_make_ud_req() to forward a WQE addressed
  42. * to the same HCA.
  43. * Note that the receive interrupt handler may be calling ipath_ud_rcv()
  44. * while this is being called.
  45. */
  46. static void ipath_ud_loopback(struct ipath_qp *sqp, struct ipath_swqe *swqe)
  47. {
  48. struct ipath_ibdev *dev = to_idev(sqp->ibqp.device);
  49. struct ipath_qp *qp;
  50. struct ib_ah_attr *ah_attr;
  51. unsigned long flags;
  52. struct ipath_rq *rq;
  53. struct ipath_srq *srq;
  54. struct ipath_sge_state rsge;
  55. struct ipath_sge *sge;
  56. struct ipath_rwq *wq;
  57. struct ipath_rwqe *wqe;
  58. void (*handler)(struct ib_event *, void *);
  59. struct ib_wc wc;
  60. u32 tail;
  61. u32 rlen;
  62. u32 length;
  63. qp = ipath_lookup_qpn(&dev->qp_table, swqe->wr.wr.ud.remote_qpn);
  64. if (!qp || !(ib_ipath_state_ops[qp->state] & IPATH_PROCESS_RECV_OK)) {
  65. dev->n_pkt_drops++;
  66. goto done;
  67. }
  68. rsge.sg_list = NULL;
  69. /*
  70. * Check that the qkey matches (except for QP0, see 9.6.1.4.1).
  71. * Qkeys with the high order bit set mean use the
  72. * qkey from the QP context instead of the WR (see 10.2.5).
  73. */
  74. if (unlikely(qp->ibqp.qp_num &&
  75. ((int) swqe->wr.wr.ud.remote_qkey < 0 ?
  76. sqp->qkey : swqe->wr.wr.ud.remote_qkey) != qp->qkey)) {
  77. /* XXX OK to lose a count once in a while. */
  78. dev->qkey_violations++;
  79. dev->n_pkt_drops++;
  80. goto drop;
  81. }
  82. /*
  83. * A GRH is expected to preceed the data even if not
  84. * present on the wire.
  85. */
  86. length = swqe->length;
  87. memset(&wc, 0, sizeof wc);
  88. wc.byte_len = length + sizeof(struct ib_grh);
  89. if (swqe->wr.opcode == IB_WR_SEND_WITH_IMM) {
  90. wc.wc_flags = IB_WC_WITH_IMM;
  91. wc.ex.imm_data = swqe->wr.ex.imm_data;
  92. }
  93. /*
  94. * This would be a lot simpler if we could call ipath_get_rwqe()
  95. * but that uses state that the receive interrupt handler uses
  96. * so we would need to lock out receive interrupts while doing
  97. * local loopback.
  98. */
  99. if (qp->ibqp.srq) {
  100. srq = to_isrq(qp->ibqp.srq);
  101. handler = srq->ibsrq.event_handler;
  102. rq = &srq->rq;
  103. } else {
  104. srq = NULL;
  105. handler = NULL;
  106. rq = &qp->r_rq;
  107. }
  108. if (rq->max_sge > 1) {
  109. /*
  110. * XXX We could use GFP_KERNEL if ipath_do_send()
  111. * was always called from the tasklet instead of
  112. * from ipath_post_send().
  113. */
  114. rsge.sg_list = kmalloc((rq->max_sge - 1) *
  115. sizeof(struct ipath_sge),
  116. GFP_ATOMIC);
  117. if (!rsge.sg_list) {
  118. dev->n_pkt_drops++;
  119. goto drop;
  120. }
  121. }
  122. /*
  123. * Get the next work request entry to find where to put the data.
  124. * Note that it is safe to drop the lock after changing rq->tail
  125. * since ipath_post_receive() won't fill the empty slot.
  126. */
  127. spin_lock_irqsave(&rq->lock, flags);
  128. wq = rq->wq;
  129. tail = wq->tail;
  130. /* Validate tail before using it since it is user writable. */
  131. if (tail >= rq->size)
  132. tail = 0;
  133. if (unlikely(tail == wq->head)) {
  134. spin_unlock_irqrestore(&rq->lock, flags);
  135. dev->n_pkt_drops++;
  136. goto drop;
  137. }
  138. wqe = get_rwqe_ptr(rq, tail);
  139. if (!ipath_init_sge(qp, wqe, &rlen, &rsge)) {
  140. spin_unlock_irqrestore(&rq->lock, flags);
  141. dev->n_pkt_drops++;
  142. goto drop;
  143. }
  144. /* Silently drop packets which are too big. */
  145. if (wc.byte_len > rlen) {
  146. spin_unlock_irqrestore(&rq->lock, flags);
  147. dev->n_pkt_drops++;
  148. goto drop;
  149. }
  150. if (++tail >= rq->size)
  151. tail = 0;
  152. wq->tail = tail;
  153. wc.wr_id = wqe->wr_id;
  154. if (handler) {
  155. u32 n;
  156. /*
  157. * validate head pointer value and compute
  158. * the number of remaining WQEs.
  159. */
  160. n = wq->head;
  161. if (n >= rq->size)
  162. n = 0;
  163. if (n < tail)
  164. n += rq->size - tail;
  165. else
  166. n -= tail;
  167. if (n < srq->limit) {
  168. struct ib_event ev;
  169. srq->limit = 0;
  170. spin_unlock_irqrestore(&rq->lock, flags);
  171. ev.device = qp->ibqp.device;
  172. ev.element.srq = qp->ibqp.srq;
  173. ev.event = IB_EVENT_SRQ_LIMIT_REACHED;
  174. handler(&ev, srq->ibsrq.srq_context);
  175. } else
  176. spin_unlock_irqrestore(&rq->lock, flags);
  177. } else
  178. spin_unlock_irqrestore(&rq->lock, flags);
  179. ah_attr = &to_iah(swqe->wr.wr.ud.ah)->attr;
  180. if (ah_attr->ah_flags & IB_AH_GRH) {
  181. ipath_copy_sge(&rsge, &ah_attr->grh, sizeof(struct ib_grh));
  182. wc.wc_flags |= IB_WC_GRH;
  183. } else
  184. ipath_skip_sge(&rsge, sizeof(struct ib_grh));
  185. sge = swqe->sg_list;
  186. while (length) {
  187. u32 len = sge->length;
  188. if (len > length)
  189. len = length;
  190. if (len > sge->sge_length)
  191. len = sge->sge_length;
  192. BUG_ON(len == 0);
  193. ipath_copy_sge(&rsge, sge->vaddr, len);
  194. sge->vaddr += len;
  195. sge->length -= len;
  196. sge->sge_length -= len;
  197. if (sge->sge_length == 0) {
  198. if (--swqe->wr.num_sge)
  199. sge++;
  200. } else if (sge->length == 0 && sge->mr != NULL) {
  201. if (++sge->n >= IPATH_SEGSZ) {
  202. if (++sge->m >= sge->mr->mapsz)
  203. break;
  204. sge->n = 0;
  205. }
  206. sge->vaddr =
  207. sge->mr->map[sge->m]->segs[sge->n].vaddr;
  208. sge->length =
  209. sge->mr->map[sge->m]->segs[sge->n].length;
  210. }
  211. length -= len;
  212. }
  213. wc.status = IB_WC_SUCCESS;
  214. wc.opcode = IB_WC_RECV;
  215. wc.qp = &qp->ibqp;
  216. wc.src_qp = sqp->ibqp.qp_num;
  217. /* XXX do we know which pkey matched? Only needed for GSI. */
  218. wc.pkey_index = 0;
  219. wc.slid = dev->dd->ipath_lid |
  220. (ah_attr->src_path_bits &
  221. ((1 << dev->dd->ipath_lmc) - 1));
  222. wc.sl = ah_attr->sl;
  223. wc.dlid_path_bits =
  224. ah_attr->dlid & ((1 << dev->dd->ipath_lmc) - 1);
  225. wc.port_num = 1;
  226. /* Signal completion event if the solicited bit is set. */
  227. ipath_cq_enter(to_icq(qp->ibqp.recv_cq), &wc,
  228. swqe->wr.send_flags & IB_SEND_SOLICITED);
  229. drop:
  230. kfree(rsge.sg_list);
  231. if (atomic_dec_and_test(&qp->refcount))
  232. wake_up(&qp->wait);
  233. done:;
  234. }
  235. /**
  236. * ipath_make_ud_req - construct a UD request packet
  237. * @qp: the QP
  238. *
  239. * Return 1 if constructed; otherwise, return 0.
  240. */
  241. int ipath_make_ud_req(struct ipath_qp *qp)
  242. {
  243. struct ipath_ibdev *dev = to_idev(qp->ibqp.device);
  244. struct ipath_other_headers *ohdr;
  245. struct ib_ah_attr *ah_attr;
  246. struct ipath_swqe *wqe;
  247. unsigned long flags;
  248. u32 nwords;
  249. u32 extra_bytes;
  250. u32 bth0;
  251. u16 lrh0;
  252. u16 lid;
  253. int ret = 0;
  254. int next_cur;
  255. spin_lock_irqsave(&qp->s_lock, flags);
  256. if (!(ib_ipath_state_ops[qp->state] & IPATH_PROCESS_NEXT_SEND_OK)) {
  257. if (!(ib_ipath_state_ops[qp->state] & IPATH_FLUSH_SEND))
  258. goto bail;
  259. /* We are in the error state, flush the work request. */
  260. if (qp->s_last == qp->s_head)
  261. goto bail;
  262. /* If DMAs are in progress, we can't flush immediately. */
  263. if (atomic_read(&qp->s_dma_busy)) {
  264. qp->s_flags |= IPATH_S_WAIT_DMA;
  265. goto bail;
  266. }
  267. wqe = get_swqe_ptr(qp, qp->s_last);
  268. ipath_send_complete(qp, wqe, IB_WC_WR_FLUSH_ERR);
  269. goto done;
  270. }
  271. if (qp->s_cur == qp->s_head)
  272. goto bail;
  273. wqe = get_swqe_ptr(qp, qp->s_cur);
  274. next_cur = qp->s_cur + 1;
  275. if (next_cur >= qp->s_size)
  276. next_cur = 0;
  277. /* Construct the header. */
  278. ah_attr = &to_iah(wqe->wr.wr.ud.ah)->attr;
  279. if (ah_attr->dlid >= IPATH_MULTICAST_LID_BASE) {
  280. if (ah_attr->dlid != IPATH_PERMISSIVE_LID)
  281. dev->n_multicast_xmit++;
  282. else
  283. dev->n_unicast_xmit++;
  284. } else {
  285. dev->n_unicast_xmit++;
  286. lid = ah_attr->dlid & ~((1 << dev->dd->ipath_lmc) - 1);
  287. if (unlikely(lid == dev->dd->ipath_lid)) {
  288. /*
  289. * If DMAs are in progress, we can't generate
  290. * a completion for the loopback packet since
  291. * it would be out of order.
  292. * XXX Instead of waiting, we could queue a
  293. * zero length descriptor so we get a callback.
  294. */
  295. if (atomic_read(&qp->s_dma_busy)) {
  296. qp->s_flags |= IPATH_S_WAIT_DMA;
  297. goto bail;
  298. }
  299. qp->s_cur = next_cur;
  300. spin_unlock_irqrestore(&qp->s_lock, flags);
  301. ipath_ud_loopback(qp, wqe);
  302. spin_lock_irqsave(&qp->s_lock, flags);
  303. ipath_send_complete(qp, wqe, IB_WC_SUCCESS);
  304. goto done;
  305. }
  306. }
  307. qp->s_cur = next_cur;
  308. extra_bytes = -wqe->length & 3;
  309. nwords = (wqe->length + extra_bytes) >> 2;
  310. /* header size in 32-bit words LRH+BTH+DETH = (8+12+8)/4. */
  311. qp->s_hdrwords = 7;
  312. qp->s_cur_size = wqe->length;
  313. qp->s_cur_sge = &qp->s_sge;
  314. qp->s_dmult = ah_attr->static_rate;
  315. qp->s_wqe = wqe;
  316. qp->s_sge.sge = wqe->sg_list[0];
  317. qp->s_sge.sg_list = wqe->sg_list + 1;
  318. qp->s_sge.num_sge = wqe->wr.num_sge;
  319. if (ah_attr->ah_flags & IB_AH_GRH) {
  320. /* Header size in 32-bit words. */
  321. qp->s_hdrwords += ipath_make_grh(dev, &qp->s_hdr.u.l.grh,
  322. &ah_attr->grh,
  323. qp->s_hdrwords, nwords);
  324. lrh0 = IPATH_LRH_GRH;
  325. ohdr = &qp->s_hdr.u.l.oth;
  326. /*
  327. * Don't worry about sending to locally attached multicast
  328. * QPs. It is unspecified by the spec. what happens.
  329. */
  330. } else {
  331. /* Header size in 32-bit words. */
  332. lrh0 = IPATH_LRH_BTH;
  333. ohdr = &qp->s_hdr.u.oth;
  334. }
  335. if (wqe->wr.opcode == IB_WR_SEND_WITH_IMM) {
  336. qp->s_hdrwords++;
  337. ohdr->u.ud.imm_data = wqe->wr.ex.imm_data;
  338. bth0 = IB_OPCODE_UD_SEND_ONLY_WITH_IMMEDIATE << 24;
  339. } else
  340. bth0 = IB_OPCODE_UD_SEND_ONLY << 24;
  341. lrh0 |= ah_attr->sl << 4;
  342. if (qp->ibqp.qp_type == IB_QPT_SMI)
  343. lrh0 |= 0xF000; /* Set VL (see ch. 13.5.3.1) */
  344. qp->s_hdr.lrh[0] = cpu_to_be16(lrh0);
  345. qp->s_hdr.lrh[1] = cpu_to_be16(ah_attr->dlid); /* DEST LID */
  346. qp->s_hdr.lrh[2] = cpu_to_be16(qp->s_hdrwords + nwords +
  347. SIZE_OF_CRC);
  348. lid = dev->dd->ipath_lid;
  349. if (lid) {
  350. lid |= ah_attr->src_path_bits &
  351. ((1 << dev->dd->ipath_lmc) - 1);
  352. qp->s_hdr.lrh[3] = cpu_to_be16(lid);
  353. } else
  354. qp->s_hdr.lrh[3] = IB_LID_PERMISSIVE;
  355. if (wqe->wr.send_flags & IB_SEND_SOLICITED)
  356. bth0 |= 1 << 23;
  357. bth0 |= extra_bytes << 20;
  358. bth0 |= qp->ibqp.qp_type == IB_QPT_SMI ? IPATH_DEFAULT_P_KEY :
  359. ipath_get_pkey(dev->dd, qp->s_pkey_index);
  360. ohdr->bth[0] = cpu_to_be32(bth0);
  361. /*
  362. * Use the multicast QP if the destination LID is a multicast LID.
  363. */
  364. ohdr->bth[1] = ah_attr->dlid >= IPATH_MULTICAST_LID_BASE &&
  365. ah_attr->dlid != IPATH_PERMISSIVE_LID ?
  366. __constant_cpu_to_be32(IPATH_MULTICAST_QPN) :
  367. cpu_to_be32(wqe->wr.wr.ud.remote_qpn);
  368. ohdr->bth[2] = cpu_to_be32(qp->s_next_psn++ & IPATH_PSN_MASK);
  369. /*
  370. * Qkeys with the high order bit set mean use the
  371. * qkey from the QP context instead of the WR (see 10.2.5).
  372. */
  373. ohdr->u.ud.deth[0] = cpu_to_be32((int)wqe->wr.wr.ud.remote_qkey < 0 ?
  374. qp->qkey : wqe->wr.wr.ud.remote_qkey);
  375. ohdr->u.ud.deth[1] = cpu_to_be32(qp->ibqp.qp_num);
  376. done:
  377. ret = 1;
  378. goto unlock;
  379. bail:
  380. qp->s_flags &= ~IPATH_S_BUSY;
  381. unlock:
  382. spin_unlock_irqrestore(&qp->s_lock, flags);
  383. return ret;
  384. }
  385. /**
  386. * ipath_ud_rcv - receive an incoming UD packet
  387. * @dev: the device the packet came in on
  388. * @hdr: the packet header
  389. * @has_grh: true if the packet has a GRH
  390. * @data: the packet data
  391. * @tlen: the packet length
  392. * @qp: the QP the packet came on
  393. *
  394. * This is called from ipath_qp_rcv() to process an incoming UD packet
  395. * for the given QP.
  396. * Called at interrupt level.
  397. */
  398. void ipath_ud_rcv(struct ipath_ibdev *dev, struct ipath_ib_header *hdr,
  399. int has_grh, void *data, u32 tlen, struct ipath_qp *qp)
  400. {
  401. struct ipath_other_headers *ohdr;
  402. int opcode;
  403. u32 hdrsize;
  404. u32 pad;
  405. struct ib_wc wc;
  406. u32 qkey;
  407. u32 src_qp;
  408. u16 dlid;
  409. int header_in_data;
  410. /* Check for GRH */
  411. if (!has_grh) {
  412. ohdr = &hdr->u.oth;
  413. hdrsize = 8 + 12 + 8; /* LRH + BTH + DETH */
  414. qkey = be32_to_cpu(ohdr->u.ud.deth[0]);
  415. src_qp = be32_to_cpu(ohdr->u.ud.deth[1]);
  416. header_in_data = 0;
  417. } else {
  418. ohdr = &hdr->u.l.oth;
  419. hdrsize = 8 + 40 + 12 + 8; /* LRH + GRH + BTH + DETH */
  420. /*
  421. * The header with GRH is 68 bytes and the core driver sets
  422. * the eager header buffer size to 56 bytes so the last 12
  423. * bytes of the IB header is in the data buffer.
  424. */
  425. header_in_data = dev->dd->ipath_rcvhdrentsize == 16;
  426. if (header_in_data) {
  427. qkey = be32_to_cpu(((__be32 *) data)[1]);
  428. src_qp = be32_to_cpu(((__be32 *) data)[2]);
  429. data += 12;
  430. } else {
  431. qkey = be32_to_cpu(ohdr->u.ud.deth[0]);
  432. src_qp = be32_to_cpu(ohdr->u.ud.deth[1]);
  433. }
  434. }
  435. src_qp &= IPATH_QPN_MASK;
  436. /*
  437. * Check that the permissive LID is only used on QP0
  438. * and the QKEY matches (see 9.6.1.4.1 and 9.6.1.5.1).
  439. */
  440. if (qp->ibqp.qp_num) {
  441. if (unlikely(hdr->lrh[1] == IB_LID_PERMISSIVE ||
  442. hdr->lrh[3] == IB_LID_PERMISSIVE)) {
  443. dev->n_pkt_drops++;
  444. goto bail;
  445. }
  446. if (unlikely(qkey != qp->qkey)) {
  447. /* XXX OK to lose a count once in a while. */
  448. dev->qkey_violations++;
  449. dev->n_pkt_drops++;
  450. goto bail;
  451. }
  452. } else if (hdr->lrh[1] == IB_LID_PERMISSIVE ||
  453. hdr->lrh[3] == IB_LID_PERMISSIVE) {
  454. struct ib_smp *smp = (struct ib_smp *) data;
  455. if (smp->mgmt_class != IB_MGMT_CLASS_SUBN_DIRECTED_ROUTE) {
  456. dev->n_pkt_drops++;
  457. goto bail;
  458. }
  459. }
  460. /*
  461. * The opcode is in the low byte when its in network order
  462. * (top byte when in host order).
  463. */
  464. opcode = be32_to_cpu(ohdr->bth[0]) >> 24;
  465. if (qp->ibqp.qp_num > 1 &&
  466. opcode == IB_OPCODE_UD_SEND_ONLY_WITH_IMMEDIATE) {
  467. if (header_in_data) {
  468. wc.ex.imm_data = *(__be32 *) data;
  469. data += sizeof(__be32);
  470. } else
  471. wc.ex.imm_data = ohdr->u.ud.imm_data;
  472. wc.wc_flags = IB_WC_WITH_IMM;
  473. hdrsize += sizeof(u32);
  474. } else if (opcode == IB_OPCODE_UD_SEND_ONLY) {
  475. wc.ex.imm_data = 0;
  476. wc.wc_flags = 0;
  477. } else {
  478. dev->n_pkt_drops++;
  479. goto bail;
  480. }
  481. /* Get the number of bytes the message was padded by. */
  482. pad = (be32_to_cpu(ohdr->bth[0]) >> 20) & 3;
  483. if (unlikely(tlen < (hdrsize + pad + 4))) {
  484. /* Drop incomplete packets. */
  485. dev->n_pkt_drops++;
  486. goto bail;
  487. }
  488. tlen -= hdrsize + pad + 4;
  489. /* Drop invalid MAD packets (see 13.5.3.1). */
  490. if (unlikely((qp->ibqp.qp_num == 0 &&
  491. (tlen != 256 ||
  492. (be16_to_cpu(hdr->lrh[0]) >> 12) != 15)) ||
  493. (qp->ibqp.qp_num == 1 &&
  494. (tlen != 256 ||
  495. (be16_to_cpu(hdr->lrh[0]) >> 12) == 15)))) {
  496. dev->n_pkt_drops++;
  497. goto bail;
  498. }
  499. /*
  500. * A GRH is expected to preceed the data even if not
  501. * present on the wire.
  502. */
  503. wc.byte_len = tlen + sizeof(struct ib_grh);
  504. /*
  505. * Get the next work request entry to find where to put the data.
  506. */
  507. if (qp->r_flags & IPATH_R_REUSE_SGE)
  508. qp->r_flags &= ~IPATH_R_REUSE_SGE;
  509. else if (!ipath_get_rwqe(qp, 0)) {
  510. /*
  511. * Count VL15 packets dropped due to no receive buffer.
  512. * Otherwise, count them as buffer overruns since usually,
  513. * the HW will be able to receive packets even if there are
  514. * no QPs with posted receive buffers.
  515. */
  516. if (qp->ibqp.qp_num == 0)
  517. dev->n_vl15_dropped++;
  518. else
  519. dev->rcv_errors++;
  520. goto bail;
  521. }
  522. /* Silently drop packets which are too big. */
  523. if (wc.byte_len > qp->r_len) {
  524. qp->r_flags |= IPATH_R_REUSE_SGE;
  525. dev->n_pkt_drops++;
  526. goto bail;
  527. }
  528. if (has_grh) {
  529. ipath_copy_sge(&qp->r_sge, &hdr->u.l.grh,
  530. sizeof(struct ib_grh));
  531. wc.wc_flags |= IB_WC_GRH;
  532. } else
  533. ipath_skip_sge(&qp->r_sge, sizeof(struct ib_grh));
  534. ipath_copy_sge(&qp->r_sge, data,
  535. wc.byte_len - sizeof(struct ib_grh));
  536. if (!test_and_clear_bit(IPATH_R_WRID_VALID, &qp->r_aflags))
  537. goto bail;
  538. wc.wr_id = qp->r_wr_id;
  539. wc.status = IB_WC_SUCCESS;
  540. wc.opcode = IB_WC_RECV;
  541. wc.vendor_err = 0;
  542. wc.qp = &qp->ibqp;
  543. wc.src_qp = src_qp;
  544. /* XXX do we know which pkey matched? Only needed for GSI. */
  545. wc.pkey_index = 0;
  546. wc.slid = be16_to_cpu(hdr->lrh[3]);
  547. wc.sl = (be16_to_cpu(hdr->lrh[0]) >> 4) & 0xF;
  548. dlid = be16_to_cpu(hdr->lrh[1]);
  549. /*
  550. * Save the LMC lower bits if the destination LID is a unicast LID.
  551. */
  552. wc.dlid_path_bits = dlid >= IPATH_MULTICAST_LID_BASE ? 0 :
  553. dlid & ((1 << dev->dd->ipath_lmc) - 1);
  554. wc.port_num = 1;
  555. /* Signal completion event if the solicited bit is set. */
  556. ipath_cq_enter(to_icq(qp->ibqp.recv_cq), &wc,
  557. (ohdr->bth[0] &
  558. __constant_cpu_to_be32(1 << 23)) != 0);
  559. bail:;
  560. }