xref: /openbmc/linux/drivers/infiniband/hw/mlx4/srq.c (revision 119181d1)
1225c7b1fSRoland Dreier /*
2225c7b1fSRoland Dreier  * Copyright (c) 2007 Cisco Systems, Inc. All rights reserved.
351a379d0SJack Morgenstein  * Copyright (c) 2007, 2008 Mellanox Technologies. All rights reserved.
4225c7b1fSRoland Dreier  *
5225c7b1fSRoland Dreier  * This software is available to you under a choice of one of two
6225c7b1fSRoland Dreier  * licenses.  You may choose to be licensed under the terms of the GNU
7225c7b1fSRoland Dreier  * General Public License (GPL) Version 2, available from the file
8225c7b1fSRoland Dreier  * COPYING in the main directory of this source tree, or the
9225c7b1fSRoland Dreier  * OpenIB.org BSD license below:
10225c7b1fSRoland Dreier  *
11225c7b1fSRoland Dreier  *     Redistribution and use in source and binary forms, with or
12225c7b1fSRoland Dreier  *     without modification, are permitted provided that the following
13225c7b1fSRoland Dreier  *     conditions are met:
14225c7b1fSRoland Dreier  *
15225c7b1fSRoland Dreier  *      - Redistributions of source code must retain the above
16225c7b1fSRoland Dreier  *        copyright notice, this list of conditions and the following
17225c7b1fSRoland Dreier  *        disclaimer.
18225c7b1fSRoland Dreier  *
19225c7b1fSRoland Dreier  *      - Redistributions in binary form must reproduce the above
20225c7b1fSRoland Dreier  *        copyright notice, this list of conditions and the following
21225c7b1fSRoland Dreier  *        disclaimer in the documentation and/or other materials
22225c7b1fSRoland Dreier  *        provided with the distribution.
23225c7b1fSRoland Dreier  *
24225c7b1fSRoland Dreier  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
25225c7b1fSRoland Dreier  * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
26225c7b1fSRoland Dreier  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
27225c7b1fSRoland Dreier  * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
28225c7b1fSRoland Dreier  * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
29225c7b1fSRoland Dreier  * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
30225c7b1fSRoland Dreier  * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
31225c7b1fSRoland Dreier  * SOFTWARE.
32225c7b1fSRoland Dreier  */
33225c7b1fSRoland Dreier 
34225c7b1fSRoland Dreier #include <linux/mlx4/qp.h>
35225c7b1fSRoland Dreier #include <linux/mlx4/srq.h>
365a0e3ad6STejun Heo #include <linux/slab.h>
37225c7b1fSRoland Dreier 
38225c7b1fSRoland Dreier #include "mlx4_ib.h"
399ce28a20SLeon Romanovsky #include <rdma/mlx4-abi.h>
4089944450SShamir Rabinovitch #include <rdma/uverbs_ioctl.h>
41225c7b1fSRoland Dreier 
42225c7b1fSRoland Dreier static void *get_wqe(struct mlx4_ib_srq *srq, int n)
43225c7b1fSRoland Dreier {
441c69fc2aSRoland Dreier 	return mlx4_buf_offset(&srq->buf, n << srq->msrq.wqe_shift);
45225c7b1fSRoland Dreier }
46225c7b1fSRoland Dreier 
47225c7b1fSRoland Dreier static void mlx4_ib_srq_event(struct mlx4_srq *srq, enum mlx4_event type)
48225c7b1fSRoland Dreier {
49225c7b1fSRoland Dreier 	struct ib_event event;
50225c7b1fSRoland Dreier 	struct ib_srq *ibsrq = &to_mibsrq(srq)->ibsrq;
51225c7b1fSRoland Dreier 
52225c7b1fSRoland Dreier 	if (ibsrq->event_handler) {
53225c7b1fSRoland Dreier 		event.device      = ibsrq->device;
54225c7b1fSRoland Dreier 		event.element.srq = ibsrq;
55225c7b1fSRoland Dreier 		switch (type) {
56225c7b1fSRoland Dreier 		case MLX4_EVENT_TYPE_SRQ_LIMIT:
57225c7b1fSRoland Dreier 			event.event = IB_EVENT_SRQ_LIMIT_REACHED;
58225c7b1fSRoland Dreier 			break;
59225c7b1fSRoland Dreier 		case MLX4_EVENT_TYPE_SRQ_CATAS_ERROR:
60225c7b1fSRoland Dreier 			event.event = IB_EVENT_SRQ_ERR;
61225c7b1fSRoland Dreier 			break;
62225c7b1fSRoland Dreier 		default:
63987c8f8fSShlomo Pongratz 			pr_warn("Unexpected event type %d "
64225c7b1fSRoland Dreier 			       "on SRQ %06x\n", type, srq->srqn);
65225c7b1fSRoland Dreier 			return;
66225c7b1fSRoland Dreier 		}
67225c7b1fSRoland Dreier 
68225c7b1fSRoland Dreier 		ibsrq->event_handler(&event, ibsrq->srq_context);
69225c7b1fSRoland Dreier 	}
70225c7b1fSRoland Dreier }
71225c7b1fSRoland Dreier 
7268e326deSLeon Romanovsky int mlx4_ib_create_srq(struct ib_srq *ib_srq,
73225c7b1fSRoland Dreier 		       struct ib_srq_init_attr *init_attr,
74225c7b1fSRoland Dreier 		       struct ib_udata *udata)
75225c7b1fSRoland Dreier {
7668e326deSLeon Romanovsky 	struct mlx4_ib_dev *dev = to_mdev(ib_srq->device);
7789944450SShamir Rabinovitch 	struct mlx4_ib_ucontext *ucontext = rdma_udata_to_drv_context(
7889944450SShamir Rabinovitch 		udata, struct mlx4_ib_ucontext, ibucontext);
7968e326deSLeon Romanovsky 	struct mlx4_ib_srq *srq = to_msrq(ib_srq);
80225c7b1fSRoland Dreier 	struct mlx4_wqe_srq_next_seg *next;
814c425588SJack Morgenstein 	struct mlx4_wqe_data_seg *scatter;
8218abd5eaSSean Hefty 	u32 cqn;
8318abd5eaSSean Hefty 	u16 xrcdn;
84225c7b1fSRoland Dreier 	int desc_size;
85225c7b1fSRoland Dreier 	int buf_size;
86225c7b1fSRoland Dreier 	int err;
87225c7b1fSRoland Dreier 	int i;
88225c7b1fSRoland Dreier 
89225c7b1fSRoland Dreier 	/* Sanity check SRQ size before proceeding */
90225c7b1fSRoland Dreier 	if (init_attr->attr.max_wr  >= dev->dev->caps.max_srq_wqes ||
91225c7b1fSRoland Dreier 	    init_attr->attr.max_sge >  dev->dev->caps.max_srq_sge)
9268e326deSLeon Romanovsky 		return -EINVAL;
93225c7b1fSRoland Dreier 
94225c7b1fSRoland Dreier 	mutex_init(&srq->mutex);
95225c7b1fSRoland Dreier 	spin_lock_init(&srq->lock);
96225c7b1fSRoland Dreier 	srq->msrq.max    = roundup_pow_of_two(init_attr->attr.max_wr + 1);
97225c7b1fSRoland Dreier 	srq->msrq.max_gs = init_attr->attr.max_sge;
98225c7b1fSRoland Dreier 
99225c7b1fSRoland Dreier 	desc_size = max(32UL,
100225c7b1fSRoland Dreier 			roundup_pow_of_two(sizeof (struct mlx4_wqe_srq_next_seg) +
101225c7b1fSRoland Dreier 					   srq->msrq.max_gs *
102225c7b1fSRoland Dreier 					   sizeof (struct mlx4_wqe_data_seg)));
103225c7b1fSRoland Dreier 	srq->msrq.wqe_shift = ilog2(desc_size);
104225c7b1fSRoland Dreier 
105225c7b1fSRoland Dreier 	buf_size = srq->msrq.max * desc_size;
106225c7b1fSRoland Dreier 
107e00b64f7SShamir Rabinovitch 	if (udata) {
108225c7b1fSRoland Dreier 		struct mlx4_ib_create_srq ucmd;
109225c7b1fSRoland Dreier 
11068e326deSLeon Romanovsky 		if (ib_copy_from_udata(&ucmd, udata, sizeof(ucmd)))
11168e326deSLeon Romanovsky 			return -EFAULT;
112225c7b1fSRoland Dreier 
113c320e527SMoni Shoua 		srq->umem =
114c320e527SMoni Shoua 			ib_umem_get(ib_srq->device, ucmd.buf_addr, buf_size, 0);
11568e326deSLeon Romanovsky 		if (IS_ERR(srq->umem))
11668e326deSLeon Romanovsky 			return PTR_ERR(srq->umem);
117225c7b1fSRoland Dreier 
118225c7b1fSRoland Dreier 		err = mlx4_mtt_init(dev->dev, ib_umem_page_count(srq->umem),
119d2183c6fSJason Gunthorpe 				    PAGE_SHIFT, &srq->mtt);
120225c7b1fSRoland Dreier 		if (err)
121225c7b1fSRoland Dreier 			goto err_buf;
122225c7b1fSRoland Dreier 
123225c7b1fSRoland Dreier 		err = mlx4_ib_umem_write_mtt(dev, &srq->mtt, srq->umem);
124225c7b1fSRoland Dreier 		if (err)
125225c7b1fSRoland Dreier 			goto err_mtt;
126225c7b1fSRoland Dreier 
127ff23dfa1SShamir Rabinovitch 		err = mlx4_ib_db_map_user(udata, ucmd.db_addr, &srq->db);
128225c7b1fSRoland Dreier 		if (err)
129225c7b1fSRoland Dreier 			goto err_mtt;
130225c7b1fSRoland Dreier 	} else {
1318900b894SLeon Romanovsky 		err = mlx4_db_alloc(dev->dev, &srq->db, 0);
132225c7b1fSRoland Dreier 		if (err)
13368e326deSLeon Romanovsky 			return err;
134225c7b1fSRoland Dreier 
135225c7b1fSRoland Dreier 		*srq->db.db = 0;
136225c7b1fSRoland Dreier 
1378900b894SLeon Romanovsky 		if (mlx4_buf_alloc(dev->dev, buf_size, PAGE_SIZE * 2,
1388900b894SLeon Romanovsky 				   &srq->buf)) {
139225c7b1fSRoland Dreier 			err = -ENOMEM;
140225c7b1fSRoland Dreier 			goto err_db;
141225c7b1fSRoland Dreier 		}
142225c7b1fSRoland Dreier 
143225c7b1fSRoland Dreier 		srq->head    = 0;
144225c7b1fSRoland Dreier 		srq->tail    = srq->msrq.max - 1;
145225c7b1fSRoland Dreier 		srq->wqe_ctr = 0;
146225c7b1fSRoland Dreier 
147225c7b1fSRoland Dreier 		for (i = 0; i < srq->msrq.max; ++i) {
148225c7b1fSRoland Dreier 			next = get_wqe(srq, i);
149225c7b1fSRoland Dreier 			next->next_wqe_index =
150225c7b1fSRoland Dreier 				cpu_to_be16((i + 1) & (srq->msrq.max - 1));
1514c425588SJack Morgenstein 
1524c425588SJack Morgenstein 			for (scatter = (void *) (next + 1);
1534c425588SJack Morgenstein 			     (void *) scatter < (void *) next + desc_size;
1544c425588SJack Morgenstein 			     ++scatter)
1554c425588SJack Morgenstein 				scatter->lkey = cpu_to_be32(MLX4_INVALID_LKEY);
156225c7b1fSRoland Dreier 		}
157225c7b1fSRoland Dreier 
158225c7b1fSRoland Dreier 		err = mlx4_mtt_init(dev->dev, srq->buf.npages, srq->buf.page_shift,
159225c7b1fSRoland Dreier 				    &srq->mtt);
160225c7b1fSRoland Dreier 		if (err)
161225c7b1fSRoland Dreier 			goto err_buf;
162225c7b1fSRoland Dreier 
1638900b894SLeon Romanovsky 		err = mlx4_buf_write_mtt(dev->dev, &srq->mtt, &srq->buf);
164225c7b1fSRoland Dreier 		if (err)
165225c7b1fSRoland Dreier 			goto err_mtt;
166225c7b1fSRoland Dreier 
167e9105cdeSLi Dongyang 		srq->wrid = kvmalloc_array(srq->msrq.max,
168e9105cdeSLi Dongyang 					   sizeof(u64), GFP_KERNEL);
1690ef2f05cSWengang Wang 		if (!srq->wrid) {
170225c7b1fSRoland Dreier 			err = -ENOMEM;
171225c7b1fSRoland Dreier 			goto err_mtt;
172225c7b1fSRoland Dreier 		}
173225c7b1fSRoland Dreier 	}
174225c7b1fSRoland Dreier 
1751a56ff6dSArtemy Kovalyov 	cqn = ib_srq_has_cq(init_attr->srq_type) ?
1761a56ff6dSArtemy Kovalyov 		to_mcq(init_attr->ext.cq)->mcq.cqn : 0;
17718abd5eaSSean Hefty 	xrcdn = (init_attr->srq_type == IB_SRQT_XRC) ?
17818abd5eaSSean Hefty 		to_mxrcd(init_attr->ext.xrc.xrcd)->xrcdn :
17918abd5eaSSean Hefty 		(u16) dev->dev->caps.reserved_xrcds;
18068e326deSLeon Romanovsky 	err = mlx4_srq_alloc(dev->dev, to_mpd(ib_srq->pd)->pdn, cqn, xrcdn,
18168e326deSLeon Romanovsky 			     &srq->mtt, srq->db.dma, &srq->msrq);
182225c7b1fSRoland Dreier 	if (err)
183225c7b1fSRoland Dreier 		goto err_wrid;
184225c7b1fSRoland Dreier 
185225c7b1fSRoland Dreier 	srq->msrq.event = mlx4_ib_srq_event;
18618abd5eaSSean Hefty 	srq->ibsrq.ext.xrc.srq_num = srq->msrq.srqn;
187225c7b1fSRoland Dreier 
188e00b64f7SShamir Rabinovitch 	if (udata)
189225c7b1fSRoland Dreier 		if (ib_copy_to_udata(udata, &srq->msrq.srqn, sizeof (__u32))) {
190225c7b1fSRoland Dreier 			err = -EFAULT;
191225c7b1fSRoland Dreier 			goto err_wrid;
192225c7b1fSRoland Dreier 		}
193225c7b1fSRoland Dreier 
194225c7b1fSRoland Dreier 	init_attr->attr.max_wr = srq->msrq.max - 1;
195225c7b1fSRoland Dreier 
19668e326deSLeon Romanovsky 	return 0;
197225c7b1fSRoland Dreier 
198225c7b1fSRoland Dreier err_wrid:
199e00b64f7SShamir Rabinovitch 	if (udata)
20089944450SShamir Rabinovitch 		mlx4_ib_db_unmap_user(ucontext, &srq->db);
201225c7b1fSRoland Dreier 	else
2020ef2f05cSWengang Wang 		kvfree(srq->wrid);
203225c7b1fSRoland Dreier 
204225c7b1fSRoland Dreier err_mtt:
205225c7b1fSRoland Dreier 	mlx4_mtt_cleanup(dev->dev, &srq->mtt);
206225c7b1fSRoland Dreier 
207225c7b1fSRoland Dreier err_buf:
208836a0fbbSLeon Romanovsky 	if (!srq->umem)
209225c7b1fSRoland Dreier 		mlx4_buf_free(dev->dev, buf_size, &srq->buf);
210836a0fbbSLeon Romanovsky 	ib_umem_release(srq->umem);
211225c7b1fSRoland Dreier 
212225c7b1fSRoland Dreier err_db:
213e00b64f7SShamir Rabinovitch 	if (!udata)
2146296883cSYevgeny Petrilin 		mlx4_db_free(dev->dev, &srq->db);
215225c7b1fSRoland Dreier 
21668e326deSLeon Romanovsky 	return err;
217225c7b1fSRoland Dreier }
218225c7b1fSRoland Dreier 
219225c7b1fSRoland Dreier int mlx4_ib_modify_srq(struct ib_srq *ibsrq, struct ib_srq_attr *attr,
220225c7b1fSRoland Dreier 		       enum ib_srq_attr_mask attr_mask, struct ib_udata *udata)
221225c7b1fSRoland Dreier {
222225c7b1fSRoland Dreier 	struct mlx4_ib_dev *dev = to_mdev(ibsrq->device);
223225c7b1fSRoland Dreier 	struct mlx4_ib_srq *srq = to_msrq(ibsrq);
224225c7b1fSRoland Dreier 	int ret;
225225c7b1fSRoland Dreier 
226225c7b1fSRoland Dreier 	/* We don't support resizing SRQs (yet?) */
227225c7b1fSRoland Dreier 	if (attr_mask & IB_SRQ_MAX_WR)
228225c7b1fSRoland Dreier 		return -EINVAL;
229225c7b1fSRoland Dreier 
230225c7b1fSRoland Dreier 	if (attr_mask & IB_SRQ_LIMIT) {
231225c7b1fSRoland Dreier 		if (attr->srq_limit >= srq->msrq.max)
232225c7b1fSRoland Dreier 			return -EINVAL;
233225c7b1fSRoland Dreier 
234225c7b1fSRoland Dreier 		mutex_lock(&srq->mutex);
235225c7b1fSRoland Dreier 		ret = mlx4_srq_arm(dev->dev, &srq->msrq, attr->srq_limit);
236225c7b1fSRoland Dreier 		mutex_unlock(&srq->mutex);
237225c7b1fSRoland Dreier 
238225c7b1fSRoland Dreier 		if (ret)
239225c7b1fSRoland Dreier 			return ret;
240225c7b1fSRoland Dreier 	}
241225c7b1fSRoland Dreier 
242225c7b1fSRoland Dreier 	return 0;
243225c7b1fSRoland Dreier }
244225c7b1fSRoland Dreier 
24565541cb7SJack Morgenstein int mlx4_ib_query_srq(struct ib_srq *ibsrq, struct ib_srq_attr *srq_attr)
24665541cb7SJack Morgenstein {
24765541cb7SJack Morgenstein 	struct mlx4_ib_dev *dev = to_mdev(ibsrq->device);
24865541cb7SJack Morgenstein 	struct mlx4_ib_srq *srq = to_msrq(ibsrq);
24965541cb7SJack Morgenstein 	int ret;
25065541cb7SJack Morgenstein 	int limit_watermark;
25165541cb7SJack Morgenstein 
25265541cb7SJack Morgenstein 	ret = mlx4_srq_query(dev->dev, &srq->msrq, &limit_watermark);
25365541cb7SJack Morgenstein 	if (ret)
25465541cb7SJack Morgenstein 		return ret;
25565541cb7SJack Morgenstein 
256d7dc3ccbSRoland Dreier 	srq_attr->srq_limit = limit_watermark;
25765541cb7SJack Morgenstein 	srq_attr->max_wr    = srq->msrq.max - 1;
25865541cb7SJack Morgenstein 	srq_attr->max_sge   = srq->msrq.max_gs;
25965541cb7SJack Morgenstein 
26065541cb7SJack Morgenstein 	return 0;
26165541cb7SJack Morgenstein }
26265541cb7SJack Morgenstein 
263119181d1SLeon Romanovsky int mlx4_ib_destroy_srq(struct ib_srq *srq, struct ib_udata *udata)
264225c7b1fSRoland Dreier {
265225c7b1fSRoland Dreier 	struct mlx4_ib_dev *dev = to_mdev(srq->device);
266225c7b1fSRoland Dreier 	struct mlx4_ib_srq *msrq = to_msrq(srq);
267225c7b1fSRoland Dreier 
268225c7b1fSRoland Dreier 	mlx4_srq_free(dev->dev, &msrq->msrq);
269225c7b1fSRoland Dreier 	mlx4_mtt_cleanup(dev->dev, &msrq->mtt);
270225c7b1fSRoland Dreier 
271bdeacabdSShamir Rabinovitch 	if (udata) {
272bdeacabdSShamir Rabinovitch 		mlx4_ib_db_unmap_user(
273bdeacabdSShamir Rabinovitch 			rdma_udata_to_drv_context(
274bdeacabdSShamir Rabinovitch 				udata,
275bdeacabdSShamir Rabinovitch 				struct mlx4_ib_ucontext,
276bdeacabdSShamir Rabinovitch 				ibucontext),
277bdeacabdSShamir Rabinovitch 			&msrq->db);
278225c7b1fSRoland Dreier 	} else {
279df417667SWengang Wang 		kvfree(msrq->wrid);
280225c7b1fSRoland Dreier 		mlx4_buf_free(dev->dev, msrq->msrq.max << msrq->msrq.wqe_shift,
281225c7b1fSRoland Dreier 			      &msrq->buf);
2826296883cSYevgeny Petrilin 		mlx4_db_free(dev->dev, &msrq->db);
283225c7b1fSRoland Dreier 	}
284836a0fbbSLeon Romanovsky 	ib_umem_release(msrq->umem);
285119181d1SLeon Romanovsky 	return 0;
286225c7b1fSRoland Dreier }
287225c7b1fSRoland Dreier 
288225c7b1fSRoland Dreier void mlx4_ib_free_srq_wqe(struct mlx4_ib_srq *srq, int wqe_index)
289225c7b1fSRoland Dreier {
290225c7b1fSRoland Dreier 	struct mlx4_wqe_srq_next_seg *next;
291225c7b1fSRoland Dreier 
292225c7b1fSRoland Dreier 	/* always called with interrupts disabled. */
293225c7b1fSRoland Dreier 	spin_lock(&srq->lock);
294225c7b1fSRoland Dreier 
295225c7b1fSRoland Dreier 	next = get_wqe(srq, srq->tail);
296225c7b1fSRoland Dreier 	next->next_wqe_index = cpu_to_be16(wqe_index);
297225c7b1fSRoland Dreier 	srq->tail = wqe_index;
298225c7b1fSRoland Dreier 
299225c7b1fSRoland Dreier 	spin_unlock(&srq->lock);
300225c7b1fSRoland Dreier }
301225c7b1fSRoland Dreier 
302d34ac5cdSBart Van Assche int mlx4_ib_post_srq_recv(struct ib_srq *ibsrq, const struct ib_recv_wr *wr,
303d34ac5cdSBart Van Assche 			  const struct ib_recv_wr **bad_wr)
304225c7b1fSRoland Dreier {
305225c7b1fSRoland Dreier 	struct mlx4_ib_srq *srq = to_msrq(ibsrq);
306225c7b1fSRoland Dreier 	struct mlx4_wqe_srq_next_seg *next;
307225c7b1fSRoland Dreier 	struct mlx4_wqe_data_seg *scat;
308225c7b1fSRoland Dreier 	unsigned long flags;
309225c7b1fSRoland Dreier 	int err = 0;
310225c7b1fSRoland Dreier 	int nreq;
311225c7b1fSRoland Dreier 	int i;
31235f05dabSYishai Hadas 	struct mlx4_ib_dev *mdev = to_mdev(ibsrq->device);
313225c7b1fSRoland Dreier 
314225c7b1fSRoland Dreier 	spin_lock_irqsave(&srq->lock, flags);
31535f05dabSYishai Hadas 	if (mdev->dev->persist->state & MLX4_DEVICE_STATE_INTERNAL_ERROR) {
31635f05dabSYishai Hadas 		err = -EIO;
31735f05dabSYishai Hadas 		*bad_wr = wr;
31835f05dabSYishai Hadas 		nreq = 0;
31935f05dabSYishai Hadas 		goto out;
32035f05dabSYishai Hadas 	}
321225c7b1fSRoland Dreier 
322225c7b1fSRoland Dreier 	for (nreq = 0; wr; ++nreq, wr = wr->next) {
323225c7b1fSRoland Dreier 		if (unlikely(wr->num_sge > srq->msrq.max_gs)) {
324225c7b1fSRoland Dreier 			err = -EINVAL;
325225c7b1fSRoland Dreier 			*bad_wr = wr;
326225c7b1fSRoland Dreier 			break;
327225c7b1fSRoland Dreier 		}
328225c7b1fSRoland Dreier 
32956a8c8b6SRoland Dreier 		if (unlikely(srq->head == srq->tail)) {
33056a8c8b6SRoland Dreier 			err = -ENOMEM;
33156a8c8b6SRoland Dreier 			*bad_wr = wr;
33256a8c8b6SRoland Dreier 			break;
33356a8c8b6SRoland Dreier 		}
33456a8c8b6SRoland Dreier 
335225c7b1fSRoland Dreier 		srq->wrid[srq->head] = wr->wr_id;
336225c7b1fSRoland Dreier 
337225c7b1fSRoland Dreier 		next      = get_wqe(srq, srq->head);
338225c7b1fSRoland Dreier 		srq->head = be16_to_cpu(next->next_wqe_index);
339225c7b1fSRoland Dreier 		scat      = (struct mlx4_wqe_data_seg *) (next + 1);
340225c7b1fSRoland Dreier 
341225c7b1fSRoland Dreier 		for (i = 0; i < wr->num_sge; ++i) {
342225c7b1fSRoland Dreier 			scat[i].byte_count = cpu_to_be32(wr->sg_list[i].length);
343225c7b1fSRoland Dreier 			scat[i].lkey       = cpu_to_be32(wr->sg_list[i].lkey);
344225c7b1fSRoland Dreier 			scat[i].addr       = cpu_to_be64(wr->sg_list[i].addr);
345225c7b1fSRoland Dreier 		}
346225c7b1fSRoland Dreier 
347225c7b1fSRoland Dreier 		if (i < srq->msrq.max_gs) {
348225c7b1fSRoland Dreier 			scat[i].byte_count = 0;
349225c7b1fSRoland Dreier 			scat[i].lkey       = cpu_to_be32(MLX4_INVALID_LKEY);
350225c7b1fSRoland Dreier 			scat[i].addr       = 0;
351225c7b1fSRoland Dreier 		}
352225c7b1fSRoland Dreier 	}
353225c7b1fSRoland Dreier 
354225c7b1fSRoland Dreier 	if (likely(nreq)) {
355225c7b1fSRoland Dreier 		srq->wqe_ctr += nreq;
356225c7b1fSRoland Dreier 
357225c7b1fSRoland Dreier 		/*
358225c7b1fSRoland Dreier 		 * Make sure that descriptors are written before
359225c7b1fSRoland Dreier 		 * doorbell record.
360225c7b1fSRoland Dreier 		 */
361225c7b1fSRoland Dreier 		wmb();
362225c7b1fSRoland Dreier 
363225c7b1fSRoland Dreier 		*srq->db.db = cpu_to_be32(srq->wqe_ctr);
364225c7b1fSRoland Dreier 	}
36535f05dabSYishai Hadas out:
366225c7b1fSRoland Dreier 
367225c7b1fSRoland Dreier 	spin_unlock_irqrestore(&srq->lock, flags);
368225c7b1fSRoland Dreier 
369225c7b1fSRoland Dreier 	return err;
370225c7b1fSRoland Dreier }
371