blob: 56adcfcabe0b09bfba2f79f3c862e720a13768f4 [file] [log] [blame]
Dennis Dalessandrob4e64392016-01-06 10:04:31 -08001#ifndef DEF_RDMAVT_INCQP_H
2#define DEF_RDMAVT_INCQP_H
3
4/*
Dennis Dalessandrofe314192016-01-22 13:04:58 -08005 * Copyright(c) 2016 Intel Corporation.
Dennis Dalessandrob4e64392016-01-06 10:04:31 -08006 *
7 * This file is provided under a dual BSD/GPLv2 license. When using or
8 * redistributing this file, you may do so under either license.
9 *
10 * GPL LICENSE SUMMARY
11 *
12 * This program is free software; you can redistribute it and/or modify
13 * it under the terms of version 2 of the GNU General Public License as
14 * published by the Free Software Foundation.
15 *
16 * This program is distributed in the hope that it will be useful, but
17 * WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19 * General Public License for more details.
20 *
21 * BSD LICENSE
22 *
23 * Redistribution and use in source and binary forms, with or without
24 * modification, are permitted provided that the following conditions
25 * are met:
26 *
27 * - Redistributions of source code must retain the above copyright
28 * notice, this list of conditions and the following disclaimer.
29 * - Redistributions in binary form must reproduce the above copyright
30 * notice, this list of conditions and the following disclaimer in
31 * the documentation and/or other materials provided with the
32 * distribution.
33 * - Neither the name of Intel Corporation nor the names of its
34 * contributors may be used to endorse or promote products derived
35 * from this software without specific prior written permission.
36 *
37 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
38 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
39 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
40 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
41 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
42 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
43 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
44 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
45 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
46 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
47 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
48 *
49 */
50
Dennis Dalessandro5a9cf6f2016-01-22 12:50:24 -080051#include <rdma/rdma_vt.h>
Dennis Dalessandro050eb7f2016-01-22 12:50:11 -080052#include <rdma/ib_pack.h>
Dennis Dalessandro4e740802016-01-22 13:00:55 -080053#include <rdma/ib_verbs.h>
Dennis Dalessandro050eb7f2016-01-22 12:50:11 -080054/*
55 * Atomic bit definitions for r_aflags.
56 */
57#define RVT_R_WRID_VALID 0
58#define RVT_R_REWIND_SGE 1
59
60/*
61 * Bit definitions for r_flags.
62 */
63#define RVT_R_REUSE_SGE 0x01
64#define RVT_R_RDMAR_SEQ 0x02
65#define RVT_R_RSP_NAK 0x04
66#define RVT_R_RSP_SEND 0x08
67#define RVT_R_COMM_EST 0x10
68
69/*
70 * Bit definitions for s_flags.
71 *
72 * RVT_S_SIGNAL_REQ_WR - set if QP send WRs contain completion signaled
73 * RVT_S_BUSY - send tasklet is processing the QP
74 * RVT_S_TIMER - the RC retry timer is active
75 * RVT_S_ACK_PENDING - an ACK is waiting to be sent after RDMA read/atomics
76 * RVT_S_WAIT_FENCE - waiting for all prior RDMA read or atomic SWQEs
77 * before processing the next SWQE
78 * RVT_S_WAIT_RDMAR - waiting for a RDMA read or atomic SWQE to complete
79 * before processing the next SWQE
80 * RVT_S_WAIT_RNR - waiting for RNR timeout
81 * RVT_S_WAIT_SSN_CREDIT - waiting for RC credits to process next SWQE
82 * RVT_S_WAIT_DMA - waiting for send DMA queue to drain before generating
83 * next send completion entry not via send DMA
84 * RVT_S_WAIT_PIO - waiting for a send buffer to be available
Mike Marciniszyn14553ca2016-02-14 12:45:36 -080085 * RVT_S_WAIT_PIO_DRAIN - waiting for a qp to drain pio packets
Dennis Dalessandro050eb7f2016-01-22 12:50:11 -080086 * RVT_S_WAIT_TX - waiting for a struct verbs_txreq to be available
87 * RVT_S_WAIT_DMA_DESC - waiting for DMA descriptors to be available
88 * RVT_S_WAIT_KMEM - waiting for kernel memory to be available
89 * RVT_S_WAIT_PSN - waiting for a packet to exit the send DMA queue
90 * RVT_S_WAIT_ACK - waiting for an ACK packet before sending more requests
91 * RVT_S_SEND_ONE - send one packet, request ACK, then wait for ACK
92 * RVT_S_ECN - a BECN was queued to the send engine
93 */
94#define RVT_S_SIGNAL_REQ_WR 0x0001
95#define RVT_S_BUSY 0x0002
96#define RVT_S_TIMER 0x0004
97#define RVT_S_RESP_PENDING 0x0008
98#define RVT_S_ACK_PENDING 0x0010
99#define RVT_S_WAIT_FENCE 0x0020
100#define RVT_S_WAIT_RDMAR 0x0040
101#define RVT_S_WAIT_RNR 0x0080
102#define RVT_S_WAIT_SSN_CREDIT 0x0100
103#define RVT_S_WAIT_DMA 0x0200
104#define RVT_S_WAIT_PIO 0x0400
Mike Marciniszyn14553ca2016-02-14 12:45:36 -0800105#define RVT_S_WAIT_PIO_DRAIN 0x0800
106#define RVT_S_WAIT_TX 0x1000
107#define RVT_S_WAIT_DMA_DESC 0x2000
108#define RVT_S_WAIT_KMEM 0x4000
109#define RVT_S_WAIT_PSN 0x8000
110#define RVT_S_WAIT_ACK 0x10000
111#define RVT_S_SEND_ONE 0x20000
112#define RVT_S_UNLIMITED_CREDIT 0x40000
113#define RVT_S_AHG_VALID 0x80000
114#define RVT_S_AHG_CLEAR 0x100000
115#define RVT_S_ECN 0x200000
Dennis Dalessandro050eb7f2016-01-22 12:50:11 -0800116
117/*
118 * Wait flags that would prevent any packet type from being sent.
119 */
Mike Marciniszynf39cc342016-04-12 10:45:51 -0700120#define RVT_S_ANY_WAIT_IO \
121 (RVT_S_WAIT_PIO | RVT_S_WAIT_PIO_DRAIN | RVT_S_WAIT_TX | \
122 RVT_S_WAIT_DMA_DESC | RVT_S_WAIT_KMEM)
Dennis Dalessandro050eb7f2016-01-22 12:50:11 -0800123
124/*
125 * Wait flags that would prevent send work requests from making progress.
126 */
127#define RVT_S_ANY_WAIT_SEND (RVT_S_WAIT_FENCE | RVT_S_WAIT_RDMAR | \
128 RVT_S_WAIT_RNR | RVT_S_WAIT_SSN_CREDIT | RVT_S_WAIT_DMA | \
129 RVT_S_WAIT_PSN | RVT_S_WAIT_ACK)
130
131#define RVT_S_ANY_WAIT (RVT_S_ANY_WAIT_IO | RVT_S_ANY_WAIT_SEND)
132
133/* Number of bits to pay attention to in the opcode for checking qp type */
134#define RVT_OPCODE_QP_MASK 0xE0
135
Dennis Dalessandrobfbac092016-01-22 13:00:22 -0800136/* Flags for checking QP state (see ib_rvt_state_ops[]) */
137#define RVT_POST_SEND_OK 0x01
138#define RVT_POST_RECV_OK 0x02
139#define RVT_PROCESS_RECV_OK 0x04
140#define RVT_PROCESS_SEND_OK 0x08
141#define RVT_PROCESS_NEXT_SEND_OK 0x10
142#define RVT_FLUSH_SEND 0x20
143#define RVT_FLUSH_RECV 0x40
144#define RVT_PROCESS_OR_FLUSH_SEND \
145 (RVT_PROCESS_SEND_OK | RVT_FLUSH_SEND)
146
Dennis Dalessandrob4e64392016-01-06 10:04:31 -0800147/*
Mike Marciniszyn856cc4c2016-07-25 13:39:39 -0700148 * Internal send flags
149 */
150#define RVT_SEND_RESERVE_USED IB_SEND_RESERVED_START
151
152/*
Dennis Dalessandrob4e64392016-01-06 10:04:31 -0800153 * Send work request queue entry.
154 * The size of the sg_list is determined when the QP is created and stored
155 * in qp->s_max_sge.
156 */
157struct rvt_swqe {
158 union {
159 struct ib_send_wr wr; /* don't use wr.sg_list */
160 struct ib_ud_wr ud_wr;
161 struct ib_reg_wr reg_wr;
162 struct ib_rdma_wr rdma_wr;
163 struct ib_atomic_wr atomic_wr;
164 };
165 u32 psn; /* first packet sequence number */
166 u32 lpsn; /* last packet sequence number */
167 u32 ssn; /* send sequence number */
168 u32 length; /* total length of data in sg_list */
169 struct rvt_sge sg_list[0];
170};
171
172/*
173 * Receive work request queue entry.
174 * The size of the sg_list is determined when the QP (or SRQ) is created
175 * and stored in qp->r_rq.max_sge (or srq->rq.max_sge).
176 */
177struct rvt_rwqe {
178 u64 wr_id;
179 u8 num_sge;
180 struct ib_sge sg_list[0];
181};
182
183/*
184 * This structure is used to contain the head pointer, tail pointer,
185 * and receive work queue entries as a single memory allocation so
186 * it can be mmap'ed into user space.
187 * Note that the wq array elements are variable size so you can't
188 * just index into the array to get the N'th element;
189 * use get_rwqe_ptr() instead.
190 */
191struct rvt_rwq {
192 u32 head; /* new work requests posted to the head */
193 u32 tail; /* receives pull requests from here. */
194 struct rvt_rwqe wq[0];
195};
196
197struct rvt_rq {
198 struct rvt_rwq *wq;
199 u32 size; /* size of RWQE array */
200 u8 max_sge;
201 /* protect changes in this struct */
202 spinlock_t lock ____cacheline_aligned_in_smp;
203};
204
205/*
206 * This structure is used by rvt_mmap() to validate an offset
207 * when an mmap() request is made. The vm_area_struct then uses
208 * this as its vm_private_data.
209 */
210struct rvt_mmap_info {
211 struct list_head pending_mmaps;
212 struct ib_ucontext *context;
213 void *obj;
214 __u64 offset;
215 struct kref ref;
216 unsigned size;
217};
218
Dennis Dalessandrob4e64392016-01-06 10:04:31 -0800219/*
220 * This structure holds the information that the send tasklet needs
221 * to send a RDMA read response or atomic operation.
222 */
223struct rvt_ack_entry {
224 u8 opcode;
225 u8 sent;
226 u32 psn;
227 u32 lpsn;
228 union {
229 struct rvt_sge rdma_sge;
230 u64 atomic_data;
231 };
232};
233
Vennila Megavannanbfee5e32016-02-09 14:29:49 -0800234#define RC_QP_SCALING_INTERVAL 5
235
Mike Marciniszynafcf8f72016-07-01 16:02:07 -0700236#define RVT_OPERATION_PRIV 0x00000001
237#define RVT_OPERATION_ATOMIC 0x00000002
238#define RVT_OPERATION_ATOMIC_SGE 0x00000004
Jianxin Xiongd9f87232016-07-25 13:38:25 -0700239#define RVT_OPERATION_LOCAL 0x00000008
Mike Marciniszyn856cc4c2016-07-25 13:39:39 -0700240#define RVT_OPERATION_USE_RESERVE 0x00000010
Mike Marciniszynafcf8f72016-07-01 16:02:07 -0700241
242#define RVT_OPERATION_MAX (IB_WR_RESERVED10 + 1)
243
244/**
245 * rvt_operation_params - op table entry
246 * @length - the length to copy into the swqe entry
247 * @qpt_support - a bit mask indicating QP type support
248 * @flags - RVT_OPERATION flags (see above)
Dennis Dalessandrob4e64392016-01-06 10:04:31 -0800249 *
Mike Marciniszynafcf8f72016-07-01 16:02:07 -0700250 * This supports table driven post send so that
251 * the driver can have differing an potentially
252 * different sets of operations.
253 *
254 **/
255
256struct rvt_operation_params {
257 size_t length;
258 u32 qpt_support;
259 u32 flags;
260};
261
262/*
Dennis Dalessandrob4e64392016-01-06 10:04:31 -0800263 * Common variables are protected by both r_rq.lock and s_lock in that order
264 * which only happens in modify_qp() or changing the QP 'state'.
265 */
266struct rvt_qp {
267 struct ib_qp ibqp;
268 void *priv; /* Driver private data */
269 /* read mostly fields above and below */
270 struct ib_ah_attr remote_ah_attr;
271 struct ib_ah_attr alt_ah_attr;
272 struct rvt_qp __rcu *next; /* link list for QPN hash table */
273 struct rvt_swqe *s_wq; /* send work queue */
274 struct rvt_mmap_info *ip;
275
276 unsigned long timeout_jiffies; /* computed from timeout */
277
278 enum ib_mtu path_mtu;
279 int srate_mbps; /* s_srate (below) converted to Mbit/s */
Mike Marciniszynef086c02016-03-07 11:35:08 -0800280 pid_t pid; /* pid for user mode QPs */
Dennis Dalessandrob4e64392016-01-06 10:04:31 -0800281 u32 remote_qpn;
Dennis Dalessandrob4e64392016-01-06 10:04:31 -0800282 u32 qkey; /* QKEY for this QP (for UD or RD) */
283 u32 s_size; /* send work queue size */
Dennis Dalessandrob4e64392016-01-06 10:04:31 -0800284 u32 s_ahgpsn; /* set to the psn in the copy of the header */
285
Mike Marciniszyn46a80d62016-02-14 12:10:04 -0800286 u16 pmtu; /* decoded from path_mtu */
287 u8 log_pmtu; /* shift for pmtu */
Dennis Dalessandrob4e64392016-01-06 10:04:31 -0800288 u8 state; /* QP state */
289 u8 allowed_ops; /* high order bits of allowed opcodes */
290 u8 qp_access_flags;
291 u8 alt_timeout; /* Alternate path timeout for this QP */
292 u8 timeout; /* Timeout for this QP */
293 u8 s_srate;
294 u8 s_mig_state;
295 u8 port_num;
296 u8 s_pkey_index; /* PKEY index to use */
297 u8 s_alt_pkey_index; /* Alternate path PKEY index to use */
298 u8 r_max_rd_atomic; /* max number of RDMA read/atomic to receive */
299 u8 s_max_rd_atomic; /* max number of RDMA read/atomic to send */
300 u8 s_retry_cnt; /* number of times to retry */
301 u8 s_rnr_retry_cnt;
302 u8 r_min_rnr_timer; /* retry timeout value for RNR NAKs */
303 u8 s_max_sge; /* size of s_wq->sg_list */
304 u8 s_draining;
305
306 /* start of read/write fields */
307 atomic_t refcount ____cacheline_aligned_in_smp;
308 wait_queue_head_t wait;
309
Mike Marciniszyn8b103e92016-05-24 12:50:40 -0700310 struct rvt_ack_entry *s_ack_queue;
Dennis Dalessandrob4e64392016-01-06 10:04:31 -0800311 struct rvt_sge_state s_rdma_read_sge;
312
313 spinlock_t r_lock ____cacheline_aligned_in_smp; /* used for APM */
Mike Marciniszynd2421a82016-02-14 12:44:26 -0800314 u32 r_psn; /* expected rcv packet sequence number */
Dennis Dalessandrob4e64392016-01-06 10:04:31 -0800315 unsigned long r_aflags;
316 u64 r_wr_id; /* ID for current receive WQE */
317 u32 r_ack_psn; /* PSN for next ACK or atomic ACK */
318 u32 r_len; /* total length of r_sge */
319 u32 r_rcv_len; /* receive data len processed */
Dennis Dalessandrob4e64392016-01-06 10:04:31 -0800320 u32 r_msn; /* message sequence number */
321
322 u8 r_state; /* opcode of last packet received */
323 u8 r_flags;
324 u8 r_head_ack_queue; /* index into s_ack_queue[] */
325
326 struct list_head rspwait; /* link for waiting to respond */
327
328 struct rvt_sge_state r_sge; /* current receive data */
329 struct rvt_rq r_rq; /* receive work queue */
330
Mike Marciniszyn46a80d62016-02-14 12:10:04 -0800331 /* post send line */
332 spinlock_t s_hlock ____cacheline_aligned_in_smp;
333 u32 s_head; /* new entries added here */
334 u32 s_next_psn; /* PSN for next request */
335 u32 s_avail; /* number of entries avail */
336 u32 s_ssn; /* SSN of tail entry */
Mike Marciniszyn856cc4c2016-07-25 13:39:39 -0700337 atomic_t s_reserved_used; /* reserved entries in use */
Mike Marciniszyn46a80d62016-02-14 12:10:04 -0800338
Dennis Dalessandrob4e64392016-01-06 10:04:31 -0800339 spinlock_t s_lock ____cacheline_aligned_in_smp;
Dennis Dalessandrob4e64392016-01-06 10:04:31 -0800340 u32 s_flags;
Mike Marciniszynd2421a82016-02-14 12:44:26 -0800341 struct rvt_sge_state *s_cur_sge;
Dennis Dalessandrob4e64392016-01-06 10:04:31 -0800342 struct rvt_swqe *s_wqe;
343 struct rvt_sge_state s_sge; /* current send request data */
344 struct rvt_mregion *s_rdma_mr;
Dennis Dalessandrob4e64392016-01-06 10:04:31 -0800345 u32 s_cur_size; /* size of send packet in bytes */
346 u32 s_len; /* total length of s_sge */
347 u32 s_rdma_read_len; /* total length of s_rdma_read_sge */
Dennis Dalessandrob4e64392016-01-06 10:04:31 -0800348 u32 s_last_psn; /* last response PSN processed */
349 u32 s_sending_psn; /* lowest PSN that is being sent */
350 u32 s_sending_hpsn; /* highest PSN that is being sent */
351 u32 s_psn; /* current packet sequence number */
352 u32 s_ack_rdma_psn; /* PSN for sending RDMA read responses */
353 u32 s_ack_psn; /* PSN for acking sends and RDMA writes */
Dennis Dalessandrob4e64392016-01-06 10:04:31 -0800354 u32 s_tail; /* next entry to process */
355 u32 s_cur; /* current work queue entry */
356 u32 s_acked; /* last un-ACK'ed entry */
357 u32 s_last; /* last completed entry */
Dennis Dalessandrob4e64392016-01-06 10:04:31 -0800358 u32 s_lsn; /* limit sequence number (credit) */
359 u16 s_hdrwords; /* size of s_hdr in 32 bit words */
360 u16 s_rdma_ack_cnt;
361 s8 s_ahgidx;
362 u8 s_state; /* opcode of last packet sent */
363 u8 s_ack_state; /* opcode of packet to ACK */
364 u8 s_nak_state; /* non-zero if NAK is pending */
365 u8 r_nak_state; /* non-zero if NAK is pending */
366 u8 s_retry; /* requester retry counter */
367 u8 s_rnr_retry; /* requester RNR retry counter */
368 u8 s_num_rd_atomic; /* number of RDMA read/atomic pending */
369 u8 s_tail_ack_queue; /* index into s_ack_queue[] */
370
371 struct rvt_sge_state s_ack_rdma_sge;
372 struct timer_list s_timer;
373
Jianxin Xiongd9f87232016-07-25 13:38:25 -0700374 atomic_t local_ops_pending; /* number of fast_reg/local_inv reqs */
375
Dennis Dalessandrob4e64392016-01-06 10:04:31 -0800376 /*
377 * This sge list MUST be last. Do not add anything below here.
378 */
379 struct rvt_sge r_sg_list[0] /* verified SGEs */
380 ____cacheline_aligned_in_smp;
381};
382
383struct rvt_srq {
384 struct ib_srq ibsrq;
385 struct rvt_rq rq;
386 struct rvt_mmap_info *ip;
387 /* send signal when number of RWQEs < limit */
388 u32 limit;
389};
390
Dennis Dalessandro0acb0cc2016-01-06 10:04:46 -0800391#define RVT_QPN_MAX BIT(24)
392#define RVT_QPNMAP_ENTRIES (RVT_QPN_MAX / PAGE_SIZE / BITS_PER_BYTE)
393#define RVT_BITS_PER_PAGE (PAGE_SIZE * BITS_PER_BYTE)
394#define RVT_BITS_PER_PAGE_MASK (RVT_BITS_PER_PAGE - 1)
Dennis Dalessandro3b0b3fb2016-01-22 13:00:35 -0800395#define RVT_QPN_MASK 0xFFFFFF
Dennis Dalessandro0acb0cc2016-01-06 10:04:46 -0800396
397/*
398 * QPN-map pages start out as NULL, they get allocated upon
399 * first use and are never deallocated. This way,
400 * large bitmaps are not allocated unless large numbers of QPs are used.
401 */
402struct rvt_qpn_map {
403 void *page;
404};
405
406struct rvt_qpn_table {
407 spinlock_t lock; /* protect changes to the qp table */
408 unsigned flags; /* flags for QP0/1 allocated for each port */
409 u32 last; /* last QP number allocated */
410 u32 nmaps; /* size of the map table */
411 u16 limit;
412 u8 incr;
413 /* bit map of free QP numbers other than 0/1 */
414 struct rvt_qpn_map map[RVT_QPNMAP_ENTRIES];
415};
416
417struct rvt_qp_ibdev {
418 u32 qp_table_size;
419 u32 qp_table_bits;
420 struct rvt_qp __rcu **qp_table;
421 spinlock_t qpt_lock; /* qptable lock */
422 struct rvt_qpn_table qpn_table;
423};
424
Dennis Dalessandrobfbac092016-01-22 13:00:22 -0800425/*
Dennis Dalessandro4e740802016-01-22 13:00:55 -0800426 * There is one struct rvt_mcast for each multicast GID.
427 * All attached QPs are then stored as a list of
428 * struct rvt_mcast_qp.
429 */
430struct rvt_mcast_qp {
431 struct list_head list;
432 struct rvt_qp *qp;
433};
434
435struct rvt_mcast {
436 struct rb_node rb_node;
437 union ib_gid mgid;
438 struct list_head qp_list;
439 wait_queue_head_t wait;
440 atomic_t refcount;
441 int n_attached;
442};
443
444/*
Dennis Dalessandrobfbac092016-01-22 13:00:22 -0800445 * Since struct rvt_swqe is not a fixed size, we can't simply index into
Dennis Dalessandro4e740802016-01-22 13:00:55 -0800446 * struct rvt_qp.s_wq. This function does the array index computation.
Dennis Dalessandrobfbac092016-01-22 13:00:22 -0800447 */
448static inline struct rvt_swqe *rvt_get_swqe_ptr(struct rvt_qp *qp,
449 unsigned n)
450{
451 return (struct rvt_swqe *)((char *)qp->s_wq +
452 (sizeof(struct rvt_swqe) +
453 qp->s_max_sge *
454 sizeof(struct rvt_sge)) * n);
455}
456
Dennis Dalessandro3b0b3fb2016-01-22 13:00:35 -0800457/*
458 * Since struct rvt_rwqe is not a fixed size, we can't simply index into
459 * struct rvt_rwq.wq. This function does the array index computation.
460 */
461static inline struct rvt_rwqe *rvt_get_rwqe_ptr(struct rvt_rq *rq, unsigned n)
462{
463 return (struct rvt_rwqe *)
464 ((char *)rq->wq->wq +
465 (sizeof(struct rvt_rwqe) +
466 rq->max_sge * sizeof(struct ib_sge)) * n);
467}
468
Mike Marciniszyn856cc4c2016-07-25 13:39:39 -0700469/**
470 * rvt_qp_wqe_reserve - reserve operation
471 * @qp - the rvt qp
472 * @wqe - the send wqe
473 *
474 * This routine used in post send to record
475 * a wqe relative reserved operation use.
476 */
477static inline void rvt_qp_wqe_reserve(
478 struct rvt_qp *qp,
479 struct rvt_swqe *wqe)
480{
481 wqe->wr.send_flags |= RVT_SEND_RESERVE_USED;
482 atomic_inc(&qp->s_reserved_used);
483}
484
485/**
486 * rvt_qp_wqe_unreserve - clean reserved operation
487 * @qp - the rvt qp
488 * @wqe - the send wqe
489 *
490 * This decrements the reserve use count.
491 *
492 * This call MUST precede the change to
493 * s_last to insure that post send sees a stable
494 * s_avail.
495 *
496 * An smp_mp__after_atomic() is used to insure
497 * the compiler does not juggle the order of the s_last
498 * ring index and the decrementing of s_reserved_used.
499 */
500static inline void rvt_qp_wqe_unreserve(
501 struct rvt_qp *qp,
502 struct rvt_swqe *wqe)
503{
504 if (unlikely(wqe->wr.send_flags & RVT_SEND_RESERVE_USED)) {
505 wqe->wr.send_flags &= ~RVT_SEND_RESERVE_USED;
506 atomic_dec(&qp->s_reserved_used);
507 /* insure no compiler re-order up to s_last change */
508 smp_mb__after_atomic();
509 }
510}
511
Dennis Dalessandrobfbac092016-01-22 13:00:22 -0800512extern const int ib_rvt_state_ops[];
513
Dennis Dalessandro3b0b3fb2016-01-22 13:00:35 -0800514struct rvt_dev_info;
Dennis Dalessandro3b0b3fb2016-01-22 13:00:35 -0800515int rvt_error_qp(struct rvt_qp *qp, enum ib_wc_status err);
Dennis Dalessandro3b0b3fb2016-01-22 13:00:35 -0800516
Dennis Dalessandrob4e64392016-01-06 10:04:31 -0800517#endif /* DEF_RDMAVT_INCQP_H */