| 
									
										
										
										
											2010-05-23 21:44:54 -07:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * Copyright (c) 2006, 2007, 2009 QLogic Corporation. All rights reserved. | 
					
						
							|  |  |  |  * 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 "qib.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /**
 | 
					
						
							|  |  |  |  * qib_alloc_lkey - allocate an lkey | 
					
						
							|  |  |  |  * @mr: memory region that this lkey protects | 
					
						
							| 
									
										
										
										
											2012-06-27 18:33:12 -04:00
										 |  |  |  * @dma_region: 0->normal key, 1->restricted DMA key | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Returns 0 if successful, otherwise returns -errno. | 
					
						
							|  |  |  |  * | 
					
						
							| 
									
										
										
										
											2012-06-27 18:33:19 -04:00
										 |  |  |  * Increments mr reference count as required. | 
					
						
							| 
									
										
										
										
											2012-06-27 18:33:12 -04:00
										 |  |  |  * | 
					
						
							|  |  |  |  * Sets the lkey field mr for non-dma regions. | 
					
						
							| 
									
										
										
										
											2010-05-23 21:44:54 -07:00
										 |  |  |  * | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-06-27 18:33:12 -04:00
										 |  |  | int qib_alloc_lkey(struct qib_mregion *mr, int dma_region) | 
					
						
							| 
									
										
										
										
											2010-05-23 21:44:54 -07:00
										 |  |  | { | 
					
						
							|  |  |  | 	unsigned long flags; | 
					
						
							|  |  |  | 	u32 r; | 
					
						
							|  |  |  | 	u32 n; | 
					
						
							| 
									
										
										
										
											2012-06-27 18:33:12 -04:00
										 |  |  | 	int ret = 0; | 
					
						
							|  |  |  | 	struct qib_ibdev *dev = to_idev(mr->pd->device); | 
					
						
							|  |  |  | 	struct qib_lkey_table *rkt = &dev->lk_table; | 
					
						
							| 
									
										
										
										
											2010-05-23 21:44:54 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	spin_lock_irqsave(&rkt->lock, flags); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-06-27 18:33:12 -04:00
										 |  |  | 	/* special case for dma_mr lkey == 0 */ | 
					
						
							|  |  |  | 	if (dma_region) { | 
					
						
							| 
									
										
										
										
											2012-06-27 18:33:19 -04:00
										 |  |  | 		struct qib_mregion *tmr; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-17 12:40:32 +00:00
										 |  |  | 		tmr = rcu_access_pointer(dev->dma_mr); | 
					
						
							| 
									
										
										
										
											2012-06-27 18:33:19 -04:00
										 |  |  | 		if (!tmr) { | 
					
						
							| 
									
										
										
										
											2012-06-27 18:33:12 -04:00
										 |  |  | 			qib_get_mr(mr); | 
					
						
							| 
									
										
										
										
											2012-06-27 18:33:19 -04:00
										 |  |  | 			rcu_assign_pointer(dev->dma_mr, mr); | 
					
						
							| 
									
										
										
										
											2012-06-27 18:33:12 -04:00
										 |  |  | 			mr->lkey_published = 1; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		goto success; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-05-23 21:44:54 -07:00
										 |  |  | 	/* Find the next available LKEY */ | 
					
						
							|  |  |  | 	r = rkt->next; | 
					
						
							|  |  |  | 	n = r; | 
					
						
							|  |  |  | 	for (;;) { | 
					
						
							|  |  |  | 		if (rkt->table[r] == NULL) | 
					
						
							|  |  |  | 			break; | 
					
						
							|  |  |  | 		r = (r + 1) & (rkt->max - 1); | 
					
						
							| 
									
										
										
										
											2012-06-27 18:33:12 -04:00
										 |  |  | 		if (r == n) | 
					
						
							| 
									
										
										
										
											2010-05-23 21:44:54 -07:00
										 |  |  | 			goto bail; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	rkt->next = (r + 1) & (rkt->max - 1); | 
					
						
							|  |  |  | 	/*
 | 
					
						
							|  |  |  | 	 * Make sure lkey is never zero which is reserved to indicate an | 
					
						
							|  |  |  | 	 * unrestricted LKEY. | 
					
						
							|  |  |  | 	 */ | 
					
						
							|  |  |  | 	rkt->gen++; | 
					
						
							|  |  |  | 	mr->lkey = (r << (32 - ib_qib_lkey_table_size)) | | 
					
						
							|  |  |  | 		((((1 << (24 - ib_qib_lkey_table_size)) - 1) & rkt->gen) | 
					
						
							|  |  |  | 		 << 8); | 
					
						
							|  |  |  | 	if (mr->lkey == 0) { | 
					
						
							|  |  |  | 		mr->lkey |= 1 << 8; | 
					
						
							|  |  |  | 		rkt->gen++; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2012-06-27 18:33:12 -04:00
										 |  |  | 	qib_get_mr(mr); | 
					
						
							| 
									
										
										
										
											2012-06-27 18:33:19 -04:00
										 |  |  | 	rcu_assign_pointer(rkt->table[r], mr); | 
					
						
							| 
									
										
										
										
											2012-06-27 18:33:12 -04:00
										 |  |  | 	mr->lkey_published = 1; | 
					
						
							|  |  |  | success: | 
					
						
							| 
									
										
										
										
											2010-05-23 21:44:54 -07:00
										 |  |  | 	spin_unlock_irqrestore(&rkt->lock, flags); | 
					
						
							| 
									
										
										
										
											2012-06-27 18:33:12 -04:00
										 |  |  | out: | 
					
						
							| 
									
										
										
										
											2010-05-23 21:44:54 -07:00
										 |  |  | 	return ret; | 
					
						
							| 
									
										
										
										
											2012-06-27 18:33:12 -04:00
										 |  |  | bail: | 
					
						
							|  |  |  | 	spin_unlock_irqrestore(&rkt->lock, flags); | 
					
						
							|  |  |  | 	ret = -ENOMEM; | 
					
						
							|  |  |  | 	goto out; | 
					
						
							| 
									
										
										
										
											2010-05-23 21:44:54 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /**
 | 
					
						
							|  |  |  |  * qib_free_lkey - free an lkey | 
					
						
							| 
									
										
										
										
											2012-06-27 18:33:12 -04:00
										 |  |  |  * @mr: mr to free from tables | 
					
						
							| 
									
										
										
										
											2010-05-23 21:44:54 -07:00
										 |  |  |  */ | 
					
						
							| 
									
										
										
										
											2012-06-27 18:33:12 -04:00
										 |  |  | void qib_free_lkey(struct qib_mregion *mr) | 
					
						
							| 
									
										
										
										
											2010-05-23 21:44:54 -07:00
										 |  |  | { | 
					
						
							|  |  |  | 	unsigned long flags; | 
					
						
							|  |  |  | 	u32 lkey = mr->lkey; | 
					
						
							|  |  |  | 	u32 r; | 
					
						
							| 
									
										
										
										
											2012-06-27 18:33:12 -04:00
										 |  |  | 	struct qib_ibdev *dev = to_idev(mr->pd->device); | 
					
						
							|  |  |  | 	struct qib_lkey_table *rkt = &dev->lk_table; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	spin_lock_irqsave(&rkt->lock, flags); | 
					
						
							|  |  |  | 	if (!mr->lkey_published) | 
					
						
							|  |  |  | 		goto out; | 
					
						
							| 
									
										
										
										
											2012-06-27 18:33:19 -04:00
										 |  |  | 	if (lkey == 0) | 
					
						
							|  |  |  | 		rcu_assign_pointer(dev->dma_mr, NULL); | 
					
						
							|  |  |  | 	else { | 
					
						
							| 
									
										
										
										
											2010-05-23 21:44:54 -07:00
										 |  |  | 		r = lkey >> (32 - ib_qib_lkey_table_size); | 
					
						
							| 
									
										
										
										
											2012-06-27 18:33:19 -04:00
										 |  |  | 		rcu_assign_pointer(rkt->table[r], NULL); | 
					
						
							| 
									
										
										
										
											2010-05-23 21:44:54 -07:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2012-06-27 18:33:19 -04:00
										 |  |  | 	qib_put_mr(mr); | 
					
						
							|  |  |  | 	mr->lkey_published = 0; | 
					
						
							| 
									
										
										
										
											2012-06-27 18:33:12 -04:00
										 |  |  | out: | 
					
						
							| 
									
										
										
										
											2012-06-27 18:33:19 -04:00
										 |  |  | 	spin_unlock_irqrestore(&rkt->lock, flags); | 
					
						
							| 
									
										
										
										
											2010-05-23 21:44:54 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /**
 | 
					
						
							|  |  |  |  * qib_lkey_ok - check IB SGE for validity and initialize | 
					
						
							|  |  |  |  * @rkt: table containing lkey to check SGE against | 
					
						
							| 
									
										
										
										
											2012-06-27 18:33:19 -04:00
										 |  |  |  * @pd: protection domain | 
					
						
							| 
									
										
										
										
											2010-05-23 21:44:54 -07:00
										 |  |  |  * @isge: outgoing internal SGE | 
					
						
							|  |  |  |  * @sge: SGE to check | 
					
						
							|  |  |  |  * @acc: access flags | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Return 1 if valid and successful, otherwise returns 0. | 
					
						
							|  |  |  |  * | 
					
						
							| 
									
										
										
										
											2012-06-27 18:33:19 -04:00
										 |  |  |  * increments the reference count upon success | 
					
						
							|  |  |  |  * | 
					
						
							| 
									
										
										
										
											2010-05-23 21:44:54 -07:00
										 |  |  |  * Check the IB SGE for validity and initialize our internal version | 
					
						
							|  |  |  |  * of it. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | int qib_lkey_ok(struct qib_lkey_table *rkt, struct qib_pd *pd, | 
					
						
							|  |  |  | 		struct qib_sge *isge, struct ib_sge *sge, int acc) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct qib_mregion *mr; | 
					
						
							|  |  |  | 	unsigned n, m; | 
					
						
							|  |  |  | 	size_t off; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/*
 | 
					
						
							|  |  |  | 	 * We use LKEY == zero for kernel virtual addresses | 
					
						
							|  |  |  | 	 * (see qib_get_dma_mr and qib_dma.c). | 
					
						
							|  |  |  | 	 */ | 
					
						
							| 
									
										
										
										
											2012-06-27 18:33:19 -04:00
										 |  |  | 	rcu_read_lock(); | 
					
						
							| 
									
										
										
										
											2010-05-23 21:44:54 -07:00
										 |  |  | 	if (sge->lkey == 0) { | 
					
						
							|  |  |  | 		struct qib_ibdev *dev = to_idev(pd->ibpd.device); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		if (pd->user) | 
					
						
							|  |  |  | 			goto bail; | 
					
						
							| 
									
										
										
										
											2012-06-27 18:33:19 -04:00
										 |  |  | 		mr = rcu_dereference(dev->dma_mr); | 
					
						
							|  |  |  | 		if (!mr) | 
					
						
							|  |  |  | 			goto bail; | 
					
						
							|  |  |  | 		if (unlikely(!atomic_inc_not_zero(&mr->refcount))) | 
					
						
							| 
									
										
										
										
											2010-05-23 21:44:54 -07:00
										 |  |  | 			goto bail; | 
					
						
							| 
									
										
										
										
											2012-06-27 18:33:19 -04:00
										 |  |  | 		rcu_read_unlock(); | 
					
						
							| 
									
										
										
										
											2011-01-10 17:42:23 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-06-27 18:33:19 -04:00
										 |  |  | 		isge->mr = mr; | 
					
						
							| 
									
										
										
										
											2010-05-23 21:44:54 -07:00
										 |  |  | 		isge->vaddr = (void *) sge->addr; | 
					
						
							|  |  |  | 		isge->length = sge->length; | 
					
						
							|  |  |  | 		isge->sge_length = sge->length; | 
					
						
							|  |  |  | 		isge->m = 0; | 
					
						
							|  |  |  | 		isge->n = 0; | 
					
						
							|  |  |  | 		goto ok; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2012-06-27 18:33:19 -04:00
										 |  |  | 	mr = rcu_dereference( | 
					
						
							|  |  |  | 		rkt->table[(sge->lkey >> (32 - ib_qib_lkey_table_size))]); | 
					
						
							|  |  |  | 	if (unlikely(!mr || mr->lkey != sge->lkey || mr->pd != &pd->ibpd)) | 
					
						
							| 
									
										
										
										
											2010-05-23 21:44:54 -07:00
										 |  |  | 		goto bail; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	off = sge->addr - mr->user_base; | 
					
						
							| 
									
										
										
										
											2012-09-28 17:33:52 +00:00
										 |  |  | 	if (unlikely(sge->addr < mr->user_base || | 
					
						
							|  |  |  | 		     off + sge->length > mr->length || | 
					
						
							|  |  |  | 		     (mr->access_flags & acc) != acc)) | 
					
						
							| 
									
										
										
										
											2011-01-10 17:42:23 -08:00
										 |  |  | 		goto bail; | 
					
						
							| 
									
										
										
										
											2012-06-27 18:33:19 -04:00
										 |  |  | 	if (unlikely(!atomic_inc_not_zero(&mr->refcount))) | 
					
						
							|  |  |  | 		goto bail; | 
					
						
							|  |  |  | 	rcu_read_unlock(); | 
					
						
							| 
									
										
										
										
											2010-05-23 21:44:54 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	off += mr->offset; | 
					
						
							| 
									
										
										
										
											2011-01-10 17:42:22 -08:00
										 |  |  | 	if (mr->page_shift) { | 
					
						
							|  |  |  | 		/*
 | 
					
						
							|  |  |  | 		page sizes are uniform power of 2 so no loop is necessary | 
					
						
							|  |  |  | 		entries_spanned_by_off is the number of times the loop below | 
					
						
							|  |  |  | 		would have executed. | 
					
						
							|  |  |  | 		*/ | 
					
						
							|  |  |  | 		size_t entries_spanned_by_off; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		entries_spanned_by_off = off >> mr->page_shift; | 
					
						
							|  |  |  | 		off -= (entries_spanned_by_off << mr->page_shift); | 
					
						
							|  |  |  | 		m = entries_spanned_by_off/QIB_SEGSZ; | 
					
						
							|  |  |  | 		n = entries_spanned_by_off%QIB_SEGSZ; | 
					
						
							|  |  |  | 	} else { | 
					
						
							|  |  |  | 		m = 0; | 
					
						
							|  |  |  | 		n = 0; | 
					
						
							|  |  |  | 		while (off >= mr->map[m]->segs[n].length) { | 
					
						
							|  |  |  | 			off -= mr->map[m]->segs[n].length; | 
					
						
							|  |  |  | 			n++; | 
					
						
							|  |  |  | 			if (n >= QIB_SEGSZ) { | 
					
						
							|  |  |  | 				m++; | 
					
						
							|  |  |  | 				n = 0; | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2010-05-23 21:44:54 -07:00
										 |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	isge->mr = mr; | 
					
						
							|  |  |  | 	isge->vaddr = mr->map[m]->segs[n].vaddr + off; | 
					
						
							|  |  |  | 	isge->length = mr->map[m]->segs[n].length - off; | 
					
						
							|  |  |  | 	isge->sge_length = sge->length; | 
					
						
							|  |  |  | 	isge->m = m; | 
					
						
							|  |  |  | 	isge->n = n; | 
					
						
							|  |  |  | ok: | 
					
						
							| 
									
										
										
										
											2011-01-10 17:42:23 -08:00
										 |  |  | 	return 1; | 
					
						
							| 
									
										
										
										
											2010-05-23 21:44:54 -07:00
										 |  |  | bail: | 
					
						
							| 
									
										
										
										
											2012-06-27 18:33:19 -04:00
										 |  |  | 	rcu_read_unlock(); | 
					
						
							| 
									
										
										
										
											2011-01-10 17:42:23 -08:00
										 |  |  | 	return 0; | 
					
						
							| 
									
										
										
										
											2010-05-23 21:44:54 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /**
 | 
					
						
							|  |  |  |  * qib_rkey_ok - check the IB virtual address, length, and RKEY | 
					
						
							| 
									
										
										
										
											2012-06-27 18:33:19 -04:00
										 |  |  |  * @qp: qp for validation | 
					
						
							|  |  |  |  * @sge: SGE state | 
					
						
							| 
									
										
										
										
											2010-05-23 21:44:54 -07:00
										 |  |  |  * @len: length of data | 
					
						
							|  |  |  |  * @vaddr: virtual address to place data | 
					
						
							|  |  |  |  * @rkey: rkey to check | 
					
						
							|  |  |  |  * @acc: access flags | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Return 1 if successful, otherwise 0. | 
					
						
							| 
									
										
										
										
											2012-06-27 18:33:19 -04:00
										 |  |  |  * | 
					
						
							|  |  |  |  * increments the reference count upon success | 
					
						
							| 
									
										
										
										
											2010-05-23 21:44:54 -07:00
										 |  |  |  */ | 
					
						
							|  |  |  | int qib_rkey_ok(struct qib_qp *qp, struct qib_sge *sge, | 
					
						
							|  |  |  | 		u32 len, u64 vaddr, u32 rkey, int acc) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct qib_lkey_table *rkt = &to_idev(qp->ibqp.device)->lk_table; | 
					
						
							|  |  |  | 	struct qib_mregion *mr; | 
					
						
							|  |  |  | 	unsigned n, m; | 
					
						
							|  |  |  | 	size_t off; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/*
 | 
					
						
							|  |  |  | 	 * We use RKEY == zero for kernel virtual addresses | 
					
						
							|  |  |  | 	 * (see qib_get_dma_mr and qib_dma.c). | 
					
						
							|  |  |  | 	 */ | 
					
						
							| 
									
										
										
										
											2012-06-27 18:33:19 -04:00
										 |  |  | 	rcu_read_lock(); | 
					
						
							| 
									
										
										
										
											2010-05-23 21:44:54 -07:00
										 |  |  | 	if (rkey == 0) { | 
					
						
							|  |  |  | 		struct qib_pd *pd = to_ipd(qp->ibqp.pd); | 
					
						
							|  |  |  | 		struct qib_ibdev *dev = to_idev(pd->ibpd.device); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		if (pd->user) | 
					
						
							|  |  |  | 			goto bail; | 
					
						
							| 
									
										
										
										
											2012-06-27 18:33:19 -04:00
										 |  |  | 		mr = rcu_dereference(dev->dma_mr); | 
					
						
							|  |  |  | 		if (!mr) | 
					
						
							|  |  |  | 			goto bail; | 
					
						
							|  |  |  | 		if (unlikely(!atomic_inc_not_zero(&mr->refcount))) | 
					
						
							| 
									
										
										
										
											2010-05-23 21:44:54 -07:00
										 |  |  | 			goto bail; | 
					
						
							| 
									
										
										
										
											2012-06-27 18:33:19 -04:00
										 |  |  | 		rcu_read_unlock(); | 
					
						
							| 
									
										
										
										
											2011-01-10 17:42:23 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-06-27 18:33:19 -04:00
										 |  |  | 		sge->mr = mr; | 
					
						
							| 
									
										
										
										
											2010-05-23 21:44:54 -07:00
										 |  |  | 		sge->vaddr = (void *) vaddr; | 
					
						
							|  |  |  | 		sge->length = len; | 
					
						
							|  |  |  | 		sge->sge_length = len; | 
					
						
							|  |  |  | 		sge->m = 0; | 
					
						
							|  |  |  | 		sge->n = 0; | 
					
						
							|  |  |  | 		goto ok; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-06-27 18:33:19 -04:00
										 |  |  | 	mr = rcu_dereference( | 
					
						
							|  |  |  | 		rkt->table[(rkey >> (32 - ib_qib_lkey_table_size))]); | 
					
						
							|  |  |  | 	if (unlikely(!mr || mr->lkey != rkey || qp->ibqp.pd != mr->pd)) | 
					
						
							| 
									
										
										
										
											2010-05-23 21:44:54 -07:00
										 |  |  | 		goto bail; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	off = vaddr - mr->iova; | 
					
						
							|  |  |  | 	if (unlikely(vaddr < mr->iova || off + len > mr->length || | 
					
						
							|  |  |  | 		     (mr->access_flags & acc) == 0)) | 
					
						
							| 
									
										
										
										
											2011-01-10 17:42:23 -08:00
										 |  |  | 		goto bail; | 
					
						
							| 
									
										
										
										
											2012-06-27 18:33:19 -04:00
										 |  |  | 	if (unlikely(!atomic_inc_not_zero(&mr->refcount))) | 
					
						
							|  |  |  | 		goto bail; | 
					
						
							|  |  |  | 	rcu_read_unlock(); | 
					
						
							| 
									
										
										
										
											2010-05-23 21:44:54 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	off += mr->offset; | 
					
						
							| 
									
										
										
										
											2011-01-10 17:42:22 -08:00
										 |  |  | 	if (mr->page_shift) { | 
					
						
							|  |  |  | 		/*
 | 
					
						
							|  |  |  | 		page sizes are uniform power of 2 so no loop is necessary | 
					
						
							|  |  |  | 		entries_spanned_by_off is the number of times the loop below | 
					
						
							|  |  |  | 		would have executed. | 
					
						
							|  |  |  | 		*/ | 
					
						
							|  |  |  | 		size_t entries_spanned_by_off; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		entries_spanned_by_off = off >> mr->page_shift; | 
					
						
							|  |  |  | 		off -= (entries_spanned_by_off << mr->page_shift); | 
					
						
							|  |  |  | 		m = entries_spanned_by_off/QIB_SEGSZ; | 
					
						
							|  |  |  | 		n = entries_spanned_by_off%QIB_SEGSZ; | 
					
						
							|  |  |  | 	} else { | 
					
						
							|  |  |  | 		m = 0; | 
					
						
							|  |  |  | 		n = 0; | 
					
						
							|  |  |  | 		while (off >= mr->map[m]->segs[n].length) { | 
					
						
							|  |  |  | 			off -= mr->map[m]->segs[n].length; | 
					
						
							|  |  |  | 			n++; | 
					
						
							|  |  |  | 			if (n >= QIB_SEGSZ) { | 
					
						
							|  |  |  | 				m++; | 
					
						
							|  |  |  | 				n = 0; | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2010-05-23 21:44:54 -07:00
										 |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	sge->mr = mr; | 
					
						
							|  |  |  | 	sge->vaddr = mr->map[m]->segs[n].vaddr + off; | 
					
						
							|  |  |  | 	sge->length = mr->map[m]->segs[n].length - off; | 
					
						
							|  |  |  | 	sge->sge_length = len; | 
					
						
							|  |  |  | 	sge->m = m; | 
					
						
							|  |  |  | 	sge->n = n; | 
					
						
							|  |  |  | ok: | 
					
						
							| 
									
										
										
										
											2011-01-10 17:42:23 -08:00
										 |  |  | 	return 1; | 
					
						
							| 
									
										
										
										
											2010-05-23 21:44:54 -07:00
										 |  |  | bail: | 
					
						
							| 
									
										
										
										
											2012-06-27 18:33:19 -04:00
										 |  |  | 	rcu_read_unlock(); | 
					
						
							| 
									
										
										
										
											2011-01-10 17:42:23 -08:00
										 |  |  | 	return 0; | 
					
						
							| 
									
										
										
										
											2010-05-23 21:44:54 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * Initialize the memory region specified by the work reqeust. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | int qib_fast_reg_mr(struct qib_qp *qp, struct ib_send_wr *wr) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct qib_lkey_table *rkt = &to_idev(qp->ibqp.device)->lk_table; | 
					
						
							|  |  |  | 	struct qib_pd *pd = to_ipd(qp->ibqp.pd); | 
					
						
							|  |  |  | 	struct qib_mregion *mr; | 
					
						
							|  |  |  | 	u32 rkey = wr->wr.fast_reg.rkey; | 
					
						
							|  |  |  | 	unsigned i, n, m; | 
					
						
							|  |  |  | 	int ret = -EINVAL; | 
					
						
							|  |  |  | 	unsigned long flags; | 
					
						
							|  |  |  | 	u64 *page_list; | 
					
						
							|  |  |  | 	size_t ps; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	spin_lock_irqsave(&rkt->lock, flags); | 
					
						
							|  |  |  | 	if (pd->user || rkey == 0) | 
					
						
							|  |  |  | 		goto bail; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-07-06 18:29:45 +00:00
										 |  |  | 	mr = rcu_dereference_protected( | 
					
						
							|  |  |  | 		rkt->table[(rkey >> (32 - ib_qib_lkey_table_size))], | 
					
						
							|  |  |  | 		lockdep_is_held(&rkt->lock)); | 
					
						
							| 
									
										
										
										
											2010-05-23 21:44:54 -07:00
										 |  |  | 	if (unlikely(mr == NULL || qp->ibqp.pd != mr->pd)) | 
					
						
							|  |  |  | 		goto bail; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (wr->wr.fast_reg.page_list_len > mr->max_segs) | 
					
						
							|  |  |  | 		goto bail; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	ps = 1UL << wr->wr.fast_reg.page_shift; | 
					
						
							|  |  |  | 	if (wr->wr.fast_reg.length > ps * wr->wr.fast_reg.page_list_len) | 
					
						
							|  |  |  | 		goto bail; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	mr->user_base = wr->wr.fast_reg.iova_start; | 
					
						
							|  |  |  | 	mr->iova = wr->wr.fast_reg.iova_start; | 
					
						
							|  |  |  | 	mr->lkey = rkey; | 
					
						
							|  |  |  | 	mr->length = wr->wr.fast_reg.length; | 
					
						
							|  |  |  | 	mr->access_flags = wr->wr.fast_reg.access_flags; | 
					
						
							|  |  |  | 	page_list = wr->wr.fast_reg.page_list->page_list; | 
					
						
							|  |  |  | 	m = 0; | 
					
						
							|  |  |  | 	n = 0; | 
					
						
							|  |  |  | 	for (i = 0; i < wr->wr.fast_reg.page_list_len; i++) { | 
					
						
							|  |  |  | 		mr->map[m]->segs[n].vaddr = (void *) page_list[i]; | 
					
						
							|  |  |  | 		mr->map[m]->segs[n].length = ps; | 
					
						
							|  |  |  | 		if (++n == QIB_SEGSZ) { | 
					
						
							|  |  |  | 			m++; | 
					
						
							|  |  |  | 			n = 0; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	ret = 0; | 
					
						
							|  |  |  | bail: | 
					
						
							|  |  |  | 	spin_unlock_irqrestore(&rkt->lock, flags); | 
					
						
							|  |  |  | 	return ret; | 
					
						
							|  |  |  | } |