4 #include <rdma/ib_verbs.h>
5 #include <rdma/rdma_cm.h>
6 #include <linux/interrupt.h>
8 #include <linux/slab.h>
10 #include "rdma_transport.h"
12 #define RDS_FMR_1M_POOL_SIZE (8192 / 2)
13 #define RDS_FMR_1M_MSG_SIZE 256
14 #define RDS_FMR_8K_MSG_SIZE 2
15 #define RDS_MR_8K_SCALE (256 / (RDS_FMR_8K_MSG_SIZE + 1))
16 #define RDS_FMR_8K_POOL_SIZE (RDS_MR_8K_SCALE * (8192 / 2))
18 #define RDS_IB_MAX_SGE 8
19 #define RDS_IB_RECV_SGE 2
21 #define RDS_IB_DEFAULT_RECV_WR 1024
22 #define RDS_IB_DEFAULT_SEND_WR 256
24 #define RDS_IB_DEFAULT_RETRY_COUNT 2
26 #define RDS_IB_SUPPORTED_PROTOCOLS 0x00000003 /* minor versions supported */
28 #define RDS_IB_RECYCLE_BATCH_COUNT 32
30 #define RDS_IB_WC_MAX 32
31 #define RDS_IB_SEND_OP BIT_ULL(63)
33 extern struct rw_semaphore rds_ib_devices_lock
;
34 extern struct list_head rds_ib_devices
;
37 * IB posts RDS_FRAG_SIZE fragments of pages to the receive queues to
38 * try and minimize the amount of memory tied up both the device and
39 * socket receive queues.
41 struct rds_page_frag
{
42 struct list_head f_item
;
43 struct list_head f_cache_entry
;
44 struct scatterlist f_sg
;
47 struct rds_ib_incoming
{
48 struct list_head ii_frags
;
49 struct list_head ii_cache_entry
;
50 struct rds_incoming ii_inc
;
53 struct rds_ib_cache_head
{
54 struct list_head
*first
;
58 struct rds_ib_refill_cache
{
59 struct rds_ib_cache_head __percpu
*percpu
;
60 struct list_head
*xfer
;
61 struct list_head
*ready
;
64 struct rds_ib_connect_private
{
65 /* Add new fields at the end, and don't permute existing fields. */
70 __be16 dp_protocol_minor_mask
; /* bitmask */
73 __be32 dp_credit
; /* non-zero enables flow ctl */
76 struct rds_ib_send_work
{
79 struct ib_send_wr s_wr
;
80 struct ib_rdma_wr s_rdma_wr
;
81 struct ib_atomic_wr s_atomic_wr
;
83 struct ib_sge s_sge
[RDS_IB_MAX_SGE
];
84 unsigned long s_queued
;
87 struct rds_ib_recv_work
{
88 struct rds_ib_incoming
*r_ibinc
;
89 struct rds_page_frag
*r_frag
;
90 struct ib_recv_wr r_wr
;
91 struct ib_sge r_sge
[2];
94 struct rds_ib_work_ring
{
102 /* Rings are posted with all the allocations they'll need to queue the
103 * incoming message to the receiving socket so this can't fail.
104 * All fragments start with a header, so we can make sure we're not receiving
105 * garbage, and we can tell a small 8 byte fragment from an ACK frame.
107 struct rds_ib_ack_state
{
110 unsigned int ack_required
:1;
111 unsigned int ack_next_valid
:1;
112 unsigned int ack_recv_valid
:1;
116 struct rds_ib_device
;
118 struct rds_ib_connection
{
120 struct list_head ib_node
;
121 struct rds_ib_device
*rds_ibdev
;
122 struct rds_connection
*conn
;
124 /* alphabet soup, IBTA style */
125 struct rdma_cm_id
*i_cm_id
;
127 struct ib_cq
*i_send_cq
;
128 struct ib_cq
*i_recv_cq
;
129 struct ib_wc i_send_wc
[RDS_IB_WC_MAX
];
130 struct ib_wc i_recv_wc
[RDS_IB_WC_MAX
];
132 /* interrupt handling */
133 struct tasklet_struct i_send_tasklet
;
134 struct tasklet_struct i_recv_tasklet
;
137 struct rds_ib_work_ring i_send_ring
;
138 struct rm_data_op
*i_data_op
;
139 struct rds_header
*i_send_hdrs
;
141 struct rds_ib_send_work
*i_sends
;
142 atomic_t i_signaled_sends
;
145 struct mutex i_recv_mutex
;
146 struct rds_ib_work_ring i_recv_ring
;
147 struct rds_ib_incoming
*i_ibinc
;
149 struct rds_header
*i_recv_hdrs
;
151 struct rds_ib_recv_work
*i_recvs
;
152 u64 i_ack_recv
; /* last ACK received */
153 struct rds_ib_refill_cache i_cache_incs
;
154 struct rds_ib_refill_cache i_cache_frags
;
157 unsigned long i_ack_flags
;
158 #ifdef KERNEL_HAS_ATOMIC64
159 atomic64_t i_ack_next
; /* next ACK to send */
161 spinlock_t i_ack_lock
; /* protect i_ack_next */
162 u64 i_ack_next
; /* next ACK to send */
164 struct rds_header
*i_ack
;
165 struct ib_send_wr i_ack_wr
;
166 struct ib_sge i_ack_sge
;
168 unsigned long i_ack_queued
;
170 /* Flow control related information
172 * Our algorithm uses a pair variables that we need to access
173 * atomically - one for the send credits, and one posted
174 * recv credits we need to transfer to remote.
175 * Rather than protect them using a slow spinlock, we put both into
176 * a single atomic_t and update it using cmpxchg
180 /* Protocol version specific information */
181 unsigned int i_flowctl
:1; /* enable/disable flow ctl */
183 /* Batched completions */
184 unsigned int i_unsignaled_wrs
;
187 /* This assumes that atomic_t is at least 32 bits */
188 #define IB_GET_SEND_CREDITS(v) ((v) & 0xffff)
189 #define IB_GET_POST_CREDITS(v) ((v) >> 16)
190 #define IB_SET_SEND_CREDITS(v) ((v) & 0xffff)
191 #define IB_SET_POST_CREDITS(v) ((v) << 16)
193 struct rds_ib_ipaddr
{
194 struct list_head list
;
204 struct rds_ib_device
{
205 struct list_head list
;
206 struct list_head ipaddr_list
;
207 struct list_head conn_list
;
208 struct ib_device
*dev
;
210 unsigned int max_fmrs
;
211 struct rds_ib_mr_pool
*mr_1m_pool
;
212 struct rds_ib_mr_pool
*mr_8k_pool
;
213 unsigned int fmr_max_remaps
;
214 unsigned int max_8k_fmrs
;
215 unsigned int max_1m_fmrs
;
217 unsigned int max_wrs
;
218 unsigned int max_initiator_depth
;
219 unsigned int max_responder_resources
;
220 spinlock_t spinlock
; /* protect the above */
222 struct work_struct free_work
;
225 #define ibdev_to_node(ibdev) dev_to_node(ibdev->dma_device)
226 #define rdsibdev_to_node(rdsibdev) ibdev_to_node(rdsibdev->dev)
228 /* bits for i_ack_flags */
229 #define IB_ACK_IN_FLIGHT 0
230 #define IB_ACK_REQUESTED 1
232 /* Magic WR_ID for ACKs */
233 #define RDS_IB_ACK_WR_ID (~(u64) 0)
235 struct rds_ib_statistics
{
236 uint64_t s_ib_connect_raced
;
237 uint64_t s_ib_listen_closed_stale
;
238 uint64_t s_ib_evt_handler_call
;
239 uint64_t s_ib_tasklet_call
;
240 uint64_t s_ib_tx_cq_event
;
241 uint64_t s_ib_tx_ring_full
;
242 uint64_t s_ib_tx_throttle
;
243 uint64_t s_ib_tx_sg_mapping_failure
;
244 uint64_t s_ib_tx_stalled
;
245 uint64_t s_ib_tx_credit_updates
;
246 uint64_t s_ib_rx_cq_event
;
247 uint64_t s_ib_rx_ring_empty
;
248 uint64_t s_ib_rx_refill_from_cq
;
249 uint64_t s_ib_rx_refill_from_thread
;
250 uint64_t s_ib_rx_alloc_limit
;
251 uint64_t s_ib_rx_credit_updates
;
252 uint64_t s_ib_ack_sent
;
253 uint64_t s_ib_ack_send_failure
;
254 uint64_t s_ib_ack_send_delayed
;
255 uint64_t s_ib_ack_send_piggybacked
;
256 uint64_t s_ib_ack_received
;
257 uint64_t s_ib_rdma_mr_8k_alloc
;
258 uint64_t s_ib_rdma_mr_8k_free
;
259 uint64_t s_ib_rdma_mr_8k_used
;
260 uint64_t s_ib_rdma_mr_8k_pool_flush
;
261 uint64_t s_ib_rdma_mr_8k_pool_wait
;
262 uint64_t s_ib_rdma_mr_8k_pool_depleted
;
263 uint64_t s_ib_rdma_mr_1m_alloc
;
264 uint64_t s_ib_rdma_mr_1m_free
;
265 uint64_t s_ib_rdma_mr_1m_used
;
266 uint64_t s_ib_rdma_mr_1m_pool_flush
;
267 uint64_t s_ib_rdma_mr_1m_pool_wait
;
268 uint64_t s_ib_rdma_mr_1m_pool_depleted
;
269 uint64_t s_ib_atomic_cswp
;
270 uint64_t s_ib_atomic_fadd
;
273 extern struct workqueue_struct
*rds_ib_wq
;
276 * Fake ib_dma_sync_sg_for_{cpu,device} as long as ib_verbs.h
279 static inline void rds_ib_dma_sync_sg_for_cpu(struct ib_device
*dev
,
280 struct scatterlist
*sglist
,
281 unsigned int sg_dma_len
,
284 struct scatterlist
*sg
;
287 for_each_sg(sglist
, sg
, sg_dma_len
, i
) {
288 ib_dma_sync_single_for_cpu(dev
,
289 ib_sg_dma_address(dev
, sg
),
290 ib_sg_dma_len(dev
, sg
),
294 #define ib_dma_sync_sg_for_cpu rds_ib_dma_sync_sg_for_cpu
296 static inline void rds_ib_dma_sync_sg_for_device(struct ib_device
*dev
,
297 struct scatterlist
*sglist
,
298 unsigned int sg_dma_len
,
301 struct scatterlist
*sg
;
304 for_each_sg(sglist
, sg
, sg_dma_len
, i
) {
305 ib_dma_sync_single_for_device(dev
,
306 ib_sg_dma_address(dev
, sg
),
307 ib_sg_dma_len(dev
, sg
),
311 #define ib_dma_sync_sg_for_device rds_ib_dma_sync_sg_for_device
315 extern struct rds_transport rds_ib_transport
;
316 struct rds_ib_device
*rds_ib_get_client_data(struct ib_device
*device
);
317 void rds_ib_dev_put(struct rds_ib_device
*rds_ibdev
);
318 extern struct ib_client rds_ib_client
;
320 extern unsigned int rds_ib_fmr_1m_pool_size
;
321 extern unsigned int rds_ib_fmr_8k_pool_size
;
322 extern unsigned int rds_ib_retry_count
;
324 extern spinlock_t ib_nodev_conns_lock
;
325 extern struct list_head ib_nodev_conns
;
328 int rds_ib_conn_alloc(struct rds_connection
*conn
, gfp_t gfp
);
329 void rds_ib_conn_free(void *arg
);
330 int rds_ib_conn_connect(struct rds_connection
*conn
);
331 void rds_ib_conn_shutdown(struct rds_connection
*conn
);
332 void rds_ib_state_change(struct sock
*sk
);
333 int rds_ib_listen_init(void);
334 void rds_ib_listen_stop(void);
335 void __rds_ib_conn_error(struct rds_connection
*conn
, const char *, ...);
336 int rds_ib_cm_handle_connect(struct rdma_cm_id
*cm_id
,
337 struct rdma_cm_event
*event
);
338 int rds_ib_cm_initiate_connect(struct rdma_cm_id
*cm_id
);
339 void rds_ib_cm_connect_complete(struct rds_connection
*conn
,
340 struct rdma_cm_event
*event
);
343 #define rds_ib_conn_error(conn, fmt...) \
344 __rds_ib_conn_error(conn, KERN_WARNING "RDS/IB: " fmt)
347 int rds_ib_update_ipaddr(struct rds_ib_device
*rds_ibdev
, __be32 ipaddr
);
348 void rds_ib_add_conn(struct rds_ib_device
*rds_ibdev
, struct rds_connection
*conn
);
349 void rds_ib_remove_conn(struct rds_ib_device
*rds_ibdev
, struct rds_connection
*conn
);
350 void rds_ib_destroy_nodev_conns(void);
351 struct rds_ib_mr_pool
*rds_ib_create_mr_pool(struct rds_ib_device
*rds_dev
,
353 void rds_ib_get_mr_info(struct rds_ib_device
*rds_ibdev
, struct rds_info_rdma_connection
*iinfo
);
354 void rds_ib_destroy_mr_pool(struct rds_ib_mr_pool
*);
355 void *rds_ib_get_mr(struct scatterlist
*sg
, unsigned long nents
,
356 struct rds_sock
*rs
, u32
*key_ret
);
357 void rds_ib_sync_mr(void *trans_private
, int dir
);
358 void rds_ib_free_mr(void *trans_private
, int invalidate
);
359 void rds_ib_flush_mrs(void);
360 int rds_ib_fmr_init(void);
361 void rds_ib_fmr_exit(void);
364 int rds_ib_recv_init(void);
365 void rds_ib_recv_exit(void);
366 int rds_ib_recv(struct rds_connection
*conn
);
367 int rds_ib_recv_alloc_caches(struct rds_ib_connection
*ic
);
368 void rds_ib_recv_free_caches(struct rds_ib_connection
*ic
);
369 void rds_ib_recv_refill(struct rds_connection
*conn
, int prefill
, gfp_t gfp
);
370 void rds_ib_inc_free(struct rds_incoming
*inc
);
371 int rds_ib_inc_copy_to_user(struct rds_incoming
*inc
, struct iov_iter
*to
);
372 void rds_ib_recv_cqe_handler(struct rds_ib_connection
*ic
, struct ib_wc
*wc
,
373 struct rds_ib_ack_state
*state
);
374 void rds_ib_recv_tasklet_fn(unsigned long data
);
375 void rds_ib_recv_init_ring(struct rds_ib_connection
*ic
);
376 void rds_ib_recv_clear_ring(struct rds_ib_connection
*ic
);
377 void rds_ib_recv_init_ack(struct rds_ib_connection
*ic
);
378 void rds_ib_attempt_ack(struct rds_ib_connection
*ic
);
379 void rds_ib_ack_send_complete(struct rds_ib_connection
*ic
);
380 u64
rds_ib_piggyb_ack(struct rds_ib_connection
*ic
);
381 void rds_ib_set_ack(struct rds_ib_connection
*ic
, u64 seq
, int ack_required
);
384 void rds_ib_ring_init(struct rds_ib_work_ring
*ring
, u32 nr
);
385 void rds_ib_ring_resize(struct rds_ib_work_ring
*ring
, u32 nr
);
386 u32
rds_ib_ring_alloc(struct rds_ib_work_ring
*ring
, u32 val
, u32
*pos
);
387 void rds_ib_ring_free(struct rds_ib_work_ring
*ring
, u32 val
);
388 void rds_ib_ring_unalloc(struct rds_ib_work_ring
*ring
, u32 val
);
389 int rds_ib_ring_empty(struct rds_ib_work_ring
*ring
);
390 int rds_ib_ring_low(struct rds_ib_work_ring
*ring
);
391 u32
rds_ib_ring_oldest(struct rds_ib_work_ring
*ring
);
392 u32
rds_ib_ring_completed(struct rds_ib_work_ring
*ring
, u32 wr_id
, u32 oldest
);
393 extern wait_queue_head_t rds_ib_ring_empty_wait
;
396 void rds_ib_xmit_complete(struct rds_connection
*conn
);
397 int rds_ib_xmit(struct rds_connection
*conn
, struct rds_message
*rm
,
398 unsigned int hdr_off
, unsigned int sg
, unsigned int off
);
399 void rds_ib_send_cqe_handler(struct rds_ib_connection
*ic
, struct ib_wc
*wc
);
400 void rds_ib_send_init_ring(struct rds_ib_connection
*ic
);
401 void rds_ib_send_clear_ring(struct rds_ib_connection
*ic
);
402 int rds_ib_xmit_rdma(struct rds_connection
*conn
, struct rm_rdma_op
*op
);
403 void rds_ib_send_add_credits(struct rds_connection
*conn
, unsigned int credits
);
404 void rds_ib_advertise_credits(struct rds_connection
*conn
, unsigned int posted
);
405 int rds_ib_send_grab_credits(struct rds_ib_connection
*ic
, u32 wanted
,
406 u32
*adv_credits
, int need_posted
, int max_posted
);
407 int rds_ib_xmit_atomic(struct rds_connection
*conn
, struct rm_atomic_op
*op
);
410 DECLARE_PER_CPU(struct rds_ib_statistics
, rds_ib_stats
);
411 #define rds_ib_stats_inc(member) rds_stats_inc_which(rds_ib_stats, member)
412 unsigned int rds_ib_stats_info_copy(struct rds_info_iterator
*iter
,
416 int rds_ib_sysctl_init(void);
417 void rds_ib_sysctl_exit(void);
418 extern unsigned long rds_ib_sysctl_max_send_wr
;
419 extern unsigned long rds_ib_sysctl_max_recv_wr
;
420 extern unsigned long rds_ib_sysctl_max_unsig_wrs
;
421 extern unsigned long rds_ib_sysctl_max_unsig_bytes
;
422 extern unsigned long rds_ib_sysctl_max_recv_allocation
;
423 extern unsigned int rds_ib_sysctl_flow_control
;