ipath_ud.c
来自「linux 内核源代码」· C语言 代码 · 共 563 行 · 第 1/2 页
C
563 行
ah_attr = &to_iah(wqe->wr.wr.ud.ah)->attr; if (ah_attr->dlid >= IPATH_MULTICAST_LID_BASE) { if (ah_attr->dlid != IPATH_PERMISSIVE_LID) dev->n_multicast_xmit++; else dev->n_unicast_xmit++; } else { dev->n_unicast_xmit++; lid = ah_attr->dlid & ~((1 << dev->dd->ipath_lmc) - 1); if (unlikely(lid == dev->dd->ipath_lid)) { ipath_ud_loopback(qp, wqe); goto done; } } 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; if (wqe->wr.opcode == IB_WR_SEND_WITH_IMM) qp->s_hdrwords++; qp->s_cur_size = wqe->length; qp->s_cur_sge = &qp->s_sge; 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; if (ah_attr->ah_flags & IB_AH_GRH) { /* Header size in 32-bit words. */ qp->s_hdrwords += ipath_make_grh(dev, &qp->s_hdr.u.l.grh, &ah_attr->grh, qp->s_hdrwords, nwords); lrh0 = IPATH_LRH_GRH; 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. */ lrh0 = IPATH_LRH_BTH; ohdr = &qp->s_hdr.u.oth; } if (wqe->wr.opcode == IB_WR_SEND_WITH_IMM) { ohdr->u.ud.imm_data = wqe->wr.imm_data; bth0 = IB_OPCODE_UD_SEND_ONLY_WITH_IMMEDIATE << 24; } else 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 */ qp->s_hdr.lrh[2] = cpu_to_be16(qp->s_hdrwords + nwords + SIZE_OF_CRC); lid = dev->dd->ipath_lid; if (lid) { lid |= ah_attr->src_path_bits & ((1 << dev->dd->ipath_lmc) - 1); qp->s_hdr.lrh[3] = cpu_to_be16(lid); } else qp->s_hdr.lrh[3] = IB_LID_PERMISSIVE; if (wqe->wr.send_flags & IB_SEND_SOLICITED) bth0 |= 1 << 23; bth0 |= extra_bytes << 20; bth0 |= qp->ibqp.qp_type == IB_QPT_SMI ? IPATH_DEFAULT_P_KEY : ipath_get_pkey(dev->dd, qp->s_pkey_index); ohdr->bth[0] = cpu_to_be32(bth0); /* * Use the multicast QP if the destination LID is a multicast LID. */ ohdr->bth[1] = ah_attr->dlid >= IPATH_MULTICAST_LID_BASE && ah_attr->dlid != IPATH_PERMISSIVE_LID ? __constant_cpu_to_be32(IPATH_MULTICAST_QPN) : cpu_to_be32(wqe->wr.wr.ud.remote_qpn); ohdr->bth[2] = cpu_to_be32(qp->s_next_psn++ & IPATH_PSN_MASK); /* * Qkeys with the high order bit set mean use the * qkey from the QP context instead of the WR (see 10.2.5). */ ohdr->u.ud.deth[0] = cpu_to_be32((int)wqe->wr.wr.ud.remote_qkey < 0 ? qp->qkey : wqe->wr.wr.ud.remote_qkey); ohdr->u.ud.deth[1] = cpu_to_be32(qp->ibqp.qp_num);done: if (++qp->s_cur >= qp->s_size) qp->s_cur = 0; ret = 1;bail: 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. */ header_in_data = dev->dd->ipath_rcvhdrentsize == 16; 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]); } } src_qp &= IPATH_QPN_MASK; /* * 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; } } /* * 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) { wc.imm_data = *(__be32 *) data; data += sizeof(__be32); } else wc.imm_data = ohdr->u.ud.imm_data; wc.wc_flags = IB_WC_WITH_IMM; hdrsize += sizeof(u32); } else if (opcode == IB_OPCODE_UD_SEND_ONLY) { wc.imm_data = 0; wc.wc_flags = 0; } else { dev->n_pkt_drops++; goto bail; } /* 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. */ if (qp->r_reuse_sge) qp->r_reuse_sge = 0; else if (!ipath_get_rwqe(qp, 0)) { /* * 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++; goto bail; } /* Silently drop packets which are too big. */ if (wc.byte_len > qp->r_len) { qp->r_reuse_sge = 1; 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)); qp->r_wrid_valid = 0; wc.wr_id = qp->r_wr_id; wc.status = IB_WC_SUCCESS; wc.opcode = IB_WC_RECV; wc.vendor_err = 0; wc.qp = &qp->ibqp; 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. */ wc.dlid_path_bits = dlid >= IPATH_MULTICAST_LID_BASE ? 0 : dlid & ((1 << dev->dd->ipath_lmc) - 1); wc.port_num = 1; /* 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:;}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?