ipath_uc.c

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

C
646
字号
/* * 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 "ipath_verbs.h"#include "ips_common.h"/* cut down ridiculously long IB macro names */#define OP(x) IB_OPCODE_UC_##xstatic void complete_last_send(struct ipath_qp *qp, struct ipath_swqe *wqe,			       struct ib_wc *wc){	if (++qp->s_last == qp->s_size)		qp->s_last = 0;	if (!test_bit(IPATH_S_SIGNAL_REQ_WR, &qp->s_flags) ||	    (wqe->wr.send_flags & IB_SEND_SIGNALED)) {		wc->wr_id = wqe->wr.wr_id;		wc->status = IB_WC_SUCCESS;		wc->opcode = ib_ipath_wc_opcode[wqe->wr.opcode];		wc->vendor_err = 0;		wc->byte_len = wqe->length;		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;		ipath_cq_enter(to_icq(qp->ibqp.send_cq), wc, 0);	}	wqe = get_swqe_ptr(qp, qp->s_last);}/** * ipath_do_uc_send - do a send on a UC queue * @data: contains a pointer to the QP to send on * * Process entries in the send work queue until the queue is exhausted. * Only allow one CPU to send a packet per QP (tasklet). * Otherwise, after we drop the QP lock, two threads could send * packets out of order. * This is similar to ipath_do_rc_send() below except we don't have * timeouts or resends. */void ipath_do_uc_send(unsigned long data){	struct ipath_qp *qp = (struct ipath_qp *)data;	struct ipath_ibdev *dev = to_idev(qp->ibqp.device);	struct ipath_swqe *wqe;	unsigned long flags;	u16 lrh0;	u32 hwords;	u32 nwords;	u32 extra_bytes;	u32 bth0;	u32 bth2;	u32 pmtu = ib_mtu_enum_to_int(qp->path_mtu);	u32 len;	struct ipath_other_headers *ohdr;	struct ib_wc wc;	if (test_and_set_bit(IPATH_S_BUSY, &qp->s_flags))		goto bail;	if (unlikely(qp->remote_ah_attr.dlid ==		     ipath_layer_get_lid(dev->dd))) {		/* Pass in an uninitialized ib_wc to save stack space. */		ipath_ruc_loopback(qp, &wc);		clear_bit(IPATH_S_BUSY, &qp->s_flags);		goto bail;	}	ohdr = &qp->s_hdr.u.oth;	if (qp->remote_ah_attr.ah_flags & IB_AH_GRH)		ohdr = &qp->s_hdr.u.l.oth;again:	/* Check for a constructed packet to be sent. */	if (qp->s_hdrwords != 0) {			/*			 * If no PIO bufs are available, return.			 * An interrupt will call ipath_ib_piobufavail()			 * when one is available.			 */			if (ipath_verbs_send(dev->dd, qp->s_hdrwords,					     (u32 *) &qp->s_hdr,					     qp->s_cur_size,					     qp->s_cur_sge)) {				ipath_no_bufs_available(qp, dev);				goto bail;			}			dev->n_unicast_xmit++;		/* Record that we sent the packet and s_hdr is empty. */		qp->s_hdrwords = 0;	}	lrh0 = IPS_LRH_BTH;	/* header size in 32-bit words LRH+BTH = (8+12)/4. */	hwords = 5;	/*	 * The lock is needed to synchronize between	 * setting qp->s_ack_state and post_send().	 */	spin_lock_irqsave(&qp->s_lock, flags);	if (!(ib_ipath_state_ops[qp->state] & IPATH_PROCESS_SEND_OK))		goto done;	bth0 = ipath_layer_get_pkey(dev->dd, qp->s_pkey_index);	/* Send a request. */	wqe = get_swqe_ptr(qp, qp->s_last);	switch (qp->s_state) {	default:		/*		 * Signal the completion of the last send (if there is		 * one).		 */		if (qp->s_last != qp->s_tail)			complete_last_send(qp, wqe, &wc);		/* Check if send work queue is empty. */		if (qp->s_tail == qp->s_head)			goto done;		/*		 * Start a new request.		 */		qp->s_psn = wqe->psn = qp->s_next_psn;		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;		qp->s_len = len = wqe->length;		switch (wqe->wr.opcode) {		case IB_WR_SEND:		case IB_WR_SEND_WITH_IMM:			if (len > pmtu) {				qp->s_state = OP(SEND_FIRST);				len = pmtu;				break;			}			if (wqe->wr.opcode == IB_WR_SEND)				qp->s_state = OP(SEND_ONLY);			else {				qp->s_state =					OP(SEND_ONLY_WITH_IMMEDIATE);				/* Immediate data comes after the BTH */				ohdr->u.imm_data = wqe->wr.imm_data;				hwords += 1;			}			if (wqe->wr.send_flags & IB_SEND_SOLICITED)				bth0 |= 1 << 23;			break;		case IB_WR_RDMA_WRITE:		case IB_WR_RDMA_WRITE_WITH_IMM:			ohdr->u.rc.reth.vaddr =				cpu_to_be64(wqe->wr.wr.rdma.remote_addr);			ohdr->u.rc.reth.rkey =				cpu_to_be32(wqe->wr.wr.rdma.rkey);			ohdr->u.rc.reth.length = cpu_to_be32(len);			hwords += sizeof(struct ib_reth) / 4;			if (len > pmtu) {				qp->s_state = OP(RDMA_WRITE_FIRST);				len = pmtu;				break;			}			if (wqe->wr.opcode == IB_WR_RDMA_WRITE)				qp->s_state = OP(RDMA_WRITE_ONLY);			else {				qp->s_state =					OP(RDMA_WRITE_ONLY_WITH_IMMEDIATE);				/* Immediate data comes after the RETH */				ohdr->u.rc.imm_data = wqe->wr.imm_data;				hwords += 1;				if (wqe->wr.send_flags & IB_SEND_SOLICITED)					bth0 |= 1 << 23;			}			break;		default:			goto done;		}		if (++qp->s_tail >= qp->s_size)			qp->s_tail = 0;		break;	case OP(SEND_FIRST):		qp->s_state = OP(SEND_MIDDLE);		/* FALLTHROUGH */	case OP(SEND_MIDDLE):		len = qp->s_len;		if (len > pmtu) {			len = pmtu;			break;		}		if (wqe->wr.opcode == IB_WR_SEND)			qp->s_state = OP(SEND_LAST);		else {			qp->s_state = OP(SEND_LAST_WITH_IMMEDIATE);			/* Immediate data comes after the BTH */			ohdr->u.imm_data = wqe->wr.imm_data;			hwords += 1;		}		if (wqe->wr.send_flags & IB_SEND_SOLICITED)			bth0 |= 1 << 23;		break;	case OP(RDMA_WRITE_FIRST):		qp->s_state = OP(RDMA_WRITE_MIDDLE);		/* FALLTHROUGH */	case OP(RDMA_WRITE_MIDDLE):		len = qp->s_len;		if (len > pmtu) {			len = pmtu;			break;		}		if (wqe->wr.opcode == IB_WR_RDMA_WRITE)			qp->s_state = OP(RDMA_WRITE_LAST);		else {			qp->s_state =				OP(RDMA_WRITE_LAST_WITH_IMMEDIATE);			/* Immediate data comes after the BTH */			ohdr->u.imm_data = wqe->wr.imm_data;			hwords += 1;			if (wqe->wr.send_flags & IB_SEND_SOLICITED)				bth0 |= 1 << 23;		}		break;	}	bth2 = qp->s_next_psn++ & IPS_PSN_MASK;	qp->s_len -= len;	bth0 |= qp->s_state << 24;	spin_unlock_irqrestore(&qp->s_lock, flags);	/* Construct the header. */	extra_bytes = (4 - len) & 3;	nwords = (len + extra_bytes) >> 2;	if (unlikely(qp->remote_ah_attr.ah_flags & IB_AH_GRH)) {		/* Header size in 32-bit words. */		hwords += 10;		lrh0 = IPS_LRH_GRH;		qp->s_hdr.u.l.grh.version_tclass_flow =			cpu_to_be32((6 << 28) |				    (qp->remote_ah_attr.grh.traffic_class				     << 20) |				    qp->remote_ah_attr.grh.flow_label);		qp->s_hdr.u.l.grh.paylen =			cpu_to_be16(((hwords - 12) + nwords +				     SIZE_OF_CRC) << 2);		/* next_hdr is defined by C8-7 in ch. 8.4.1 */		qp->s_hdr.u.l.grh.next_hdr = 0x1B;		qp->s_hdr.u.l.grh.hop_limit =			qp->remote_ah_attr.grh.hop_limit;		/* The SGID is 32-bit aligned. */		qp->s_hdr.u.l.grh.sgid.global.subnet_prefix =			dev->gid_prefix;		qp->s_hdr.u.l.grh.sgid.global.interface_id =			ipath_layer_get_guid(dev->dd);		qp->s_hdr.u.l.grh.dgid = qp->remote_ah_attr.grh.dgid;	}	qp->s_hdrwords = hwords;	qp->s_cur_sge = &qp->s_sge;	qp->s_cur_size = len;	lrh0 |= qp->remote_ah_attr.sl << 4;	qp->s_hdr.lrh[0] = cpu_to_be16(lrh0);	/* DEST LID */	qp->s_hdr.lrh[1] = cpu_to_be16(qp->remote_ah_attr.dlid);	qp->s_hdr.lrh[2] = cpu_to_be16(hwords + nwords + SIZE_OF_CRC);	qp->s_hdr.lrh[3] = cpu_to_be16(ipath_layer_get_lid(dev->dd));	bth0 |= extra_bytes << 20;	ohdr->bth[0] = cpu_to_be32(bth0);	ohdr->bth[1] = cpu_to_be32(qp->remote_qpn);	ohdr->bth[2] = cpu_to_be32(bth2);	/* Check for more work to do. */	goto again;done:	spin_unlock_irqrestore(&qp->s_lock, flags);	clear_bit(IPATH_S_BUSY, &qp->s_flags);bail:	return;}/** * ipath_uc_rcv - handle an incoming UC packet * @dev: the device the packet came in on * @hdr: the header of the packet * @has_grh: true if the packet has a GRH * @data: the packet data * @tlen: the length of the packet

⌨️ 快捷键说明

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