ipath_qp.c

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

C
914
字号
/* * 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 <linux/err.h>#include <linux/vmalloc.h>#include "ipath_verbs.h"#include "ips_common.h"#define BITS_PER_PAGE		(PAGE_SIZE*BITS_PER_BYTE)#define BITS_PER_PAGE_MASK	(BITS_PER_PAGE-1)#define mk_qpn(qpt, map, off)	(((map) - (qpt)->map) * BITS_PER_PAGE + \				 (off))#define find_next_offset(map, off) find_next_zero_bit((map)->page, \						      BITS_PER_PAGE, off)#define TRANS_INVALID	0#define TRANS_ANY2RST	1#define TRANS_RST2INIT	2#define TRANS_INIT2INIT	3#define TRANS_INIT2RTR	4#define TRANS_RTR2RTS	5#define TRANS_RTS2RTS	6#define TRANS_SQERR2RTS	7#define TRANS_ANY2ERR	8#define TRANS_RTS2SQD	9  /* XXX Wait for expected ACKs & signal event */#define TRANS_SQD2SQD	10 /* error if not drained & parameter change */#define TRANS_SQD2RTS	11 /* error if not drained *//* * Convert the AETH credit code into the number of credits. */static u32 credit_table[31] = {	0,			/* 0 */	1,			/* 1 */	2,			/* 2 */	3,			/* 3 */	4,			/* 4 */	6,			/* 5 */	8,			/* 6 */	12,			/* 7 */	16,			/* 8 */	24,			/* 9 */	32,			/* A */	48,			/* B */	64,			/* C */	96,			/* D */	128,			/* E */	192,			/* F */	256,			/* 10 */	384,			/* 11 */	512,			/* 12 */	768,			/* 13 */	1024,			/* 14 */	1536,			/* 15 */	2048,			/* 16 */	3072,			/* 17 */	4096,			/* 18 */	6144,			/* 19 */	8192,			/* 1A */	12288,			/* 1B */	16384,			/* 1C */	24576,			/* 1D */	32768			/* 1E */};static u32 alloc_qpn(struct ipath_qp_table *qpt){	u32 i, offset, max_scan, qpn;	struct qpn_map *map;	u32 ret;	qpn = qpt->last + 1;	if (qpn >= QPN_MAX)		qpn = 2;	offset = qpn & BITS_PER_PAGE_MASK;	map = &qpt->map[qpn / BITS_PER_PAGE];	max_scan = qpt->nmaps - !offset;	for (i = 0;;) {		if (unlikely(!map->page)) {			unsigned long page = get_zeroed_page(GFP_KERNEL);			unsigned long flags;			/*			 * Free the page if someone raced with us			 * installing it:			 */			spin_lock_irqsave(&qpt->lock, flags);			if (map->page)				free_page(page);			else				map->page = (void *)page;			spin_unlock_irqrestore(&qpt->lock, flags);			if (unlikely(!map->page))				break;		}		if (likely(atomic_read(&map->n_free))) {			do {				if (!test_and_set_bit(offset, map->page)) {					atomic_dec(&map->n_free);					qpt->last = qpn;					ret = qpn;					goto bail;				}				offset = find_next_offset(map, offset);				qpn = mk_qpn(qpt, map, offset);				/*				 * This test differs from alloc_pidmap().				 * If find_next_offset() does find a zero				 * bit, we don't need to check for QPN				 * wrapping around past our starting QPN.				 * We just need to be sure we don't loop				 * forever.				 */			} while (offset < BITS_PER_PAGE && qpn < QPN_MAX);		}		/*		 * In order to keep the number of pages allocated to a		 * minimum, we scan the all existing pages before increasing		 * the size of the bitmap table.		 */		if (++i > max_scan) {			if (qpt->nmaps == QPNMAP_ENTRIES)				break;			map = &qpt->map[qpt->nmaps++];			offset = 0;		} else if (map < &qpt->map[qpt->nmaps]) {			++map;			offset = 0;		} else {			map = &qpt->map[0];			offset = 2;		}		qpn = mk_qpn(qpt, map, offset);	}	ret = 0;bail:	return ret;}static void free_qpn(struct ipath_qp_table *qpt, u32 qpn){	struct qpn_map *map;	map = qpt->map + qpn / BITS_PER_PAGE;	if (map->page)		clear_bit(qpn & BITS_PER_PAGE_MASK, map->page);	atomic_inc(&map->n_free);}/** * ipath_alloc_qpn - allocate a QP number * @qpt: the QP table * @qp: the QP * @type: the QP type (IB_QPT_SMI and IB_QPT_GSI are special) * * Allocate the next available QPN and put the QP into the hash table. * The hash table holds a reference to the QP. */static int ipath_alloc_qpn(struct ipath_qp_table *qpt, struct ipath_qp *qp,			   enum ib_qp_type type){	unsigned long flags;	u32 qpn;	int ret;	if (type == IB_QPT_SMI)		qpn = 0;	else if (type == IB_QPT_GSI)		qpn = 1;	else {		/* Allocate the next available QPN */		qpn = alloc_qpn(qpt);		if (qpn == 0) {			ret = -ENOMEM;			goto bail;		}	}	qp->ibqp.qp_num = qpn;	/* Add the QP to the hash table. */	spin_lock_irqsave(&qpt->lock, flags);	qpn %= qpt->max;	qp->next = qpt->table[qpn];	qpt->table[qpn] = qp;	atomic_inc(&qp->refcount);	spin_unlock_irqrestore(&qpt->lock, flags);	ret = 0;bail:	return ret;}/** * ipath_free_qp - remove a QP from the QP table * @qpt: the QP table * @qp: the QP to remove * * Remove the QP from the table so it can't be found asynchronously by * the receive interrupt routine. */static void ipath_free_qp(struct ipath_qp_table *qpt, struct ipath_qp *qp){	struct ipath_qp *q, **qpp;	unsigned long flags;	int fnd = 0;	spin_lock_irqsave(&qpt->lock, flags);	/* Remove QP from the hash table. */	qpp = &qpt->table[qp->ibqp.qp_num % qpt->max];	for (; (q = *qpp) != NULL; qpp = &q->next) {		if (q == qp) {			*qpp = qp->next;			qp->next = NULL;			atomic_dec(&qp->refcount);			fnd = 1;			break;		}	}	spin_unlock_irqrestore(&qpt->lock, flags);	if (!fnd)		return;	/* If QPN is not reserved, mark QPN free in the bitmap. */	if (qp->ibqp.qp_num > 1)		free_qpn(qpt, qp->ibqp.qp_num);	wait_event(qp->wait, !atomic_read(&qp->refcount));}/** * ipath_free_all_qps - remove all QPs from the table * @qpt: the QP table to empty */void ipath_free_all_qps(struct ipath_qp_table *qpt){	unsigned long flags;	struct ipath_qp *qp, *nqp;	u32 n;	for (n = 0; n < qpt->max; n++) {		spin_lock_irqsave(&qpt->lock, flags);		qp = qpt->table[n];		qpt->table[n] = NULL;		spin_unlock_irqrestore(&qpt->lock, flags);		while (qp) {			nqp = qp->next;			if (qp->ibqp.qp_num > 1)				free_qpn(qpt, qp->ibqp.qp_num);			if (!atomic_dec_and_test(&qp->refcount) ||			    !ipath_destroy_qp(&qp->ibqp))				_VERBS_INFO("QP memory leak!\n");			qp = nqp;		}	}	for (n = 0; n < ARRAY_SIZE(qpt->map); n++) {		if (qpt->map[n].page)			free_page((unsigned long)qpt->map[n].page);	}}/** * ipath_lookup_qpn - return the QP with the given QPN * @qpt: the QP table * @qpn: the QP number to look up * * The caller is responsible for decrementing the QP reference count * when done. */struct ipath_qp *ipath_lookup_qpn(struct ipath_qp_table *qpt, u32 qpn){	unsigned long flags;	struct ipath_qp *qp;	spin_lock_irqsave(&qpt->lock, flags);	for (qp = qpt->table[qpn % qpt->max]; qp; qp = qp->next) {		if (qp->ibqp.qp_num == qpn) {			atomic_inc(&qp->refcount);			break;		}	}	spin_unlock_irqrestore(&qpt->lock, flags);	return qp;}/** * ipath_reset_qp - initialize the QP state to the reset state * @qp: the QP to reset */static void ipath_reset_qp(struct ipath_qp *qp){	qp->remote_qpn = 0;	qp->qkey = 0;	qp->qp_access_flags = 0;	qp->s_hdrwords = 0;	qp->s_psn = 0;	qp->r_psn = 0;	atomic_set(&qp->msn, 0);	if (qp->ibqp.qp_type == IB_QPT_RC) {		qp->s_state = IB_OPCODE_RC_SEND_LAST;		qp->r_state = IB_OPCODE_RC_SEND_LAST;	} else {		qp->s_state = IB_OPCODE_UC_SEND_LAST;		qp->r_state = IB_OPCODE_UC_SEND_LAST;	}	qp->s_ack_state = IB_OPCODE_RC_ACKNOWLEDGE;	qp->s_nak_state = 0;	qp->s_rnr_timeout = 0;	qp->s_head = 0;	qp->s_tail = 0;	qp->s_cur = 0;	qp->s_last = 0;	qp->s_ssn = 1;	qp->s_lsn = 0;	qp->r_rq.head = 0;	qp->r_rq.tail = 0;	qp->r_reuse_sge = 0;}/** * ipath_error_qp - put a QP into an error state * @qp: the QP to put into an error state * * Flushes both send and receive work queues. * QP r_rq.lock and s_lock should be held. */static void ipath_error_qp(struct ipath_qp *qp){	struct ipath_ibdev *dev = to_idev(qp->ibqp.device);	struct ib_wc wc;	_VERBS_INFO("QP%d/%d in error state\n",		    qp->ibqp.qp_num, qp->remote_qpn);	spin_lock(&dev->pending_lock);	/* XXX What if its already removed by the timeout code? */	if (!list_empty(&qp->timerwait))		list_del_init(&qp->timerwait);	if (!list_empty(&qp->piowait))		list_del_init(&qp->piowait);	spin_unlock(&dev->pending_lock);	wc.status = IB_WC_WR_FLUSH_ERR;	wc.vendor_err = 0;	wc.byte_len = 0;	wc.imm_data = 0;	wc.qp_num = qp->ibqp.qp_num;	wc.src_qp = 0;	wc.wc_flags = 0;	wc.pkey_index = 0;	wc.slid = 0;	wc.sl = 0;	wc.dlid_path_bits = 0;	wc.port_num = 0;	while (qp->s_last != qp->s_head) {		struct ipath_swqe *wqe = get_swqe_ptr(qp, qp->s_last);		wc.wr_id = wqe->wr.wr_id;		wc.opcode = ib_ipath_wc_opcode[wqe->wr.opcode];		if (++qp->s_last >= qp->s_size)			qp->s_last = 0;		ipath_cq_enter(to_icq(qp->ibqp.send_cq), &wc, 1);	}	qp->s_cur = qp->s_tail = qp->s_head;	qp->s_hdrwords = 0;	qp->s_ack_state = IB_OPCODE_RC_ACKNOWLEDGE;	wc.opcode = IB_WC_RECV;	while (qp->r_rq.tail != qp->r_rq.head) {		wc.wr_id = get_rwqe_ptr(&qp->r_rq, qp->r_rq.tail)->wr_id;		if (++qp->r_rq.tail >= qp->r_rq.size)			qp->r_rq.tail = 0;		ipath_cq_enter(to_icq(qp->ibqp.recv_cq), &wc, 1);	}}/** * ipath_modify_qp - modify the attributes of a queue pair * @ibqp: the queue pair who's attributes we're modifying * @attr: the new attributes * @attr_mask: the mask of attributes to modify * * Returns 0 on success, otherwise returns an errno. */int ipath_modify_qp(struct ib_qp *ibqp, struct ib_qp_attr *attr,		    int attr_mask){	struct ipath_ibdev *dev = to_idev(ibqp->device);	struct ipath_qp *qp = to_iqp(ibqp);	enum ib_qp_state cur_state, new_state;	unsigned long flags;	int ret;	spin_lock_irqsave(&qp->r_rq.lock, flags);	spin_lock(&qp->s_lock);	cur_state = attr_mask & IB_QP_CUR_STATE ?		attr->cur_qp_state : qp->state;	new_state = attr_mask & IB_QP_STATE ? attr->qp_state : cur_state;	if (!ib_modify_qp_is_ok(cur_state, new_state, ibqp->qp_type,				attr_mask))		goto inval;	if (attr_mask & IB_QP_AV)		if (attr->ah_attr.dlid == 0 ||		    attr->ah_attr.dlid >= IPS_MULTICAST_LID_BASE)			goto inval;	if (attr_mask & IB_QP_PKEY_INDEX)		if (attr->pkey_index >= ipath_layer_get_npkeys(dev->dd))			goto inval;	if (attr_mask & IB_QP_MIN_RNR_TIMER)		if (attr->min_rnr_timer > 31)

⌨️ 快捷键说明

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