ipath_uc.c

来自「LINUX 2.6.17.4的源码」· C语言 代码 · 共 646 行 · 第 1/2 页

C
646
字号
 * @qp: the QP for this packet. * * This is called from ipath_qp_rcv() to process an incoming UC packet * for the given QP. * Called at interrupt level. */void ipath_uc_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 psn;	u32 pad;	unsigned long flags;	struct ib_wc wc;	u32 pmtu = ib_mtu_enum_to_int(qp->path_mtu);	struct ib_reth *reth;	int header_in_data;	/* Check for GRH */	if (!has_grh) {		ohdr = &hdr->u.oth;		hdrsize = 8 + 12;	/* LRH + BTH */		psn = be32_to_cpu(ohdr->bth[2]);		header_in_data = 0;	} else {		ohdr = &hdr->u.l.oth;		hdrsize = 8 + 40 + 12;	/* LRH + GRH + BTH */		/*		 * The header with GRH is 60 bytes and the		 * core driver sets the eager header buffer		 * size to 56 bytes so the last 4 bytes of		 * the BTH header (PSN) is in the data buffer.		 */		header_in_data =			ipath_layer_get_rcvhdrentsize(dev->dd) == 16;		if (header_in_data) {			psn = be32_to_cpu(((__be32 *) data)[0]);			data += sizeof(__be32);		} else			psn = be32_to_cpu(ohdr->bth[2]);	}	/*	 * 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;	wc.imm_data = 0;	wc.wc_flags = 0;	spin_lock_irqsave(&qp->r_rq.lock, flags);	/* Compare the PSN verses the expected PSN. */	if (unlikely(ipath_cmp24(psn, qp->r_psn) != 0)) {		/*		 * Handle a sequence error.		 * Silently drop any current message.		 */		qp->r_psn = psn;	inv:		qp->r_state = OP(SEND_LAST);		switch (opcode) {		case OP(SEND_FIRST):		case OP(SEND_ONLY):		case OP(SEND_ONLY_WITH_IMMEDIATE):			goto send_first;		case OP(RDMA_WRITE_FIRST):		case OP(RDMA_WRITE_ONLY):		case OP(RDMA_WRITE_ONLY_WITH_IMMEDIATE):			goto rdma_first;		default:			dev->n_pkt_drops++;			goto done;		}	}	/* Check for opcode sequence errors. */	switch (qp->r_state) {	case OP(SEND_FIRST):	case OP(SEND_MIDDLE):		if (opcode == OP(SEND_MIDDLE) ||		    opcode == OP(SEND_LAST) ||		    opcode == OP(SEND_LAST_WITH_IMMEDIATE))			break;		goto inv;	case OP(RDMA_WRITE_FIRST):	case OP(RDMA_WRITE_MIDDLE):		if (opcode == OP(RDMA_WRITE_MIDDLE) ||		    opcode == OP(RDMA_WRITE_LAST) ||		    opcode == OP(RDMA_WRITE_LAST_WITH_IMMEDIATE))			break;		goto inv;	default:		if (opcode == OP(SEND_FIRST) ||		    opcode == OP(SEND_ONLY) ||		    opcode == OP(SEND_ONLY_WITH_IMMEDIATE) ||		    opcode == OP(RDMA_WRITE_FIRST) ||		    opcode == OP(RDMA_WRITE_ONLY) ||		    opcode == OP(RDMA_WRITE_ONLY_WITH_IMMEDIATE))			break;		goto inv;	}	/* OK, process the packet. */	switch (opcode) {	case OP(SEND_FIRST):	case OP(SEND_ONLY):	case OP(SEND_ONLY_WITH_IMMEDIATE):	send_first:		if (qp->r_reuse_sge) {			qp->r_reuse_sge = 0;			qp->r_sge = qp->s_rdma_sge;		} else if (!ipath_get_rwqe(qp, 0)) {			dev->n_pkt_drops++;			goto done;		}		/* Save the WQE so we can reuse it in case of an error. */		qp->s_rdma_sge = qp->r_sge;		qp->r_rcv_len = 0;		if (opcode == OP(SEND_ONLY))			goto send_last;		else if (opcode == OP(SEND_ONLY_WITH_IMMEDIATE))			goto send_last_imm;		/* FALLTHROUGH */	case OP(SEND_MIDDLE):		/* Check for invalid length PMTU or posted rwqe len. */		if (unlikely(tlen != (hdrsize + pmtu + 4))) {			qp->r_reuse_sge = 1;			dev->n_pkt_drops++;			goto done;		}		qp->r_rcv_len += pmtu;		if (unlikely(qp->r_rcv_len > qp->r_len)) {			qp->r_reuse_sge = 1;			dev->n_pkt_drops++;			goto done;		}		ipath_copy_sge(&qp->r_sge, data, pmtu);		break;	case OP(SEND_LAST_WITH_IMMEDIATE):	send_last_imm:		if (header_in_data) {			wc.imm_data = *(__be32 *) data;			data += sizeof(__be32);		} else {			/* Immediate data comes after BTH */			wc.imm_data = ohdr->u.imm_data;		}		hdrsize += 4;		wc.wc_flags = IB_WC_WITH_IMM;		/* FALLTHROUGH */	case OP(SEND_LAST):	send_last:		/* Get the number of bytes the message was padded by. */		pad = (be32_to_cpu(ohdr->bth[0]) >> 20) & 3;		/* Check for invalid length. */		/* XXX LAST len should be >= 1 */		if (unlikely(tlen < (hdrsize + pad + 4))) {			qp->r_reuse_sge = 1;			dev->n_pkt_drops++;			goto done;		}		/* Don't count the CRC. */		tlen -= (hdrsize + pad + 4);		wc.byte_len = tlen + qp->r_rcv_len;		if (unlikely(wc.byte_len > qp->r_len)) {			qp->r_reuse_sge = 1;			dev->n_pkt_drops++;			goto done;		}		/* XXX Need to free SGEs */	last_imm:		ipath_copy_sge(&qp->r_sge, data, tlen);		wc.wr_id = qp->r_wr_id;		wc.status = IB_WC_SUCCESS;		wc.opcode = IB_WC_RECV;		wc.vendor_err = 0;		wc.qp_num = qp->ibqp.qp_num;		wc.src_qp = qp->remote_qpn;		wc.pkey_index = 0;		wc.slid = qp->remote_ah_attr.dlid;		wc.sl = qp->remote_ah_attr.sl;		wc.dlid_path_bits = 0;		wc.port_num = 0;		/* 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);		break;	case OP(RDMA_WRITE_FIRST):	case OP(RDMA_WRITE_ONLY):	case OP(RDMA_WRITE_ONLY_WITH_IMMEDIATE): /* consume RWQE */	rdma_first:		/* RETH comes after BTH */		if (!header_in_data)			reth = &ohdr->u.rc.reth;		else {			reth = (struct ib_reth *)data;			data += sizeof(*reth);		}		hdrsize += sizeof(*reth);		qp->r_len = be32_to_cpu(reth->length);		qp->r_rcv_len = 0;		if (qp->r_len != 0) {			u32 rkey = be32_to_cpu(reth->rkey);			u64 vaddr = be64_to_cpu(reth->vaddr);			/* Check rkey */			if (unlikely(!ipath_rkey_ok(					     dev, &qp->r_sge, qp->r_len,					     vaddr, rkey,					     IB_ACCESS_REMOTE_WRITE))) {				dev->n_pkt_drops++;				goto done;			}		} else {			qp->r_sge.sg_list = NULL;			qp->r_sge.sge.mr = NULL;			qp->r_sge.sge.vaddr = NULL;			qp->r_sge.sge.length = 0;			qp->r_sge.sge.sge_length = 0;		}		if (unlikely(!(qp->qp_access_flags &			       IB_ACCESS_REMOTE_WRITE))) {			dev->n_pkt_drops++;			goto done;		}		if (opcode == OP(RDMA_WRITE_ONLY))			goto rdma_last;		else if (opcode ==			 OP(RDMA_WRITE_ONLY_WITH_IMMEDIATE))			goto rdma_last_imm;		/* FALLTHROUGH */	case OP(RDMA_WRITE_MIDDLE):		/* Check for invalid length PMTU or posted rwqe len. */		if (unlikely(tlen != (hdrsize + pmtu + 4))) {			dev->n_pkt_drops++;			goto done;		}		qp->r_rcv_len += pmtu;		if (unlikely(qp->r_rcv_len > qp->r_len)) {			dev->n_pkt_drops++;			goto done;		}		ipath_copy_sge(&qp->r_sge, data, pmtu);		break;	case OP(RDMA_WRITE_LAST_WITH_IMMEDIATE):	rdma_last_imm:		/* Get the number of bytes the message was padded by. */		pad = (be32_to_cpu(ohdr->bth[0]) >> 20) & 3;		/* Check for invalid length. */		/* XXX LAST len should be >= 1 */		if (unlikely(tlen < (hdrsize + pad + 4))) {			dev->n_pkt_drops++;			goto done;		}		/* Don't count the CRC. */		tlen -= (hdrsize + pad + 4);		if (unlikely(tlen + qp->r_rcv_len != qp->r_len)) {			dev->n_pkt_drops++;			goto done;		}		if (qp->r_reuse_sge) {			qp->r_reuse_sge = 0;		} else if (!ipath_get_rwqe(qp, 1)) {			dev->n_pkt_drops++;			goto done;		}		if (header_in_data) {			wc.imm_data = *(__be32 *) data;			data += sizeof(__be32);		} else {			/* Immediate data comes after BTH */			wc.imm_data = ohdr->u.imm_data;		}		hdrsize += 4;		wc.wc_flags = IB_WC_WITH_IMM;		wc.byte_len = 0;		goto last_imm;	case OP(RDMA_WRITE_LAST):	rdma_last:		/* Get the number of bytes the message was padded by. */		pad = (be32_to_cpu(ohdr->bth[0]) >> 20) & 3;		/* Check for invalid length. */		/* XXX LAST len should be >= 1 */		if (unlikely(tlen < (hdrsize + pad + 4))) {			dev->n_pkt_drops++;			goto done;		}		/* Don't count the CRC. */		tlen -= (hdrsize + pad + 4);		if (unlikely(tlen + qp->r_rcv_len != qp->r_len)) {			dev->n_pkt_drops++;			goto done;		}		ipath_copy_sge(&qp->r_sge, data, tlen);		break;	default:		/* Drop packet for unknown opcodes. */		spin_unlock_irqrestore(&qp->r_rq.lock, flags);		dev->n_pkt_drops++;		goto bail;	}	qp->r_psn++;	qp->r_state = opcode;done:	spin_unlock_irqrestore(&qp->r_rq.lock, flags);bail:	return;}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?