diff options
Diffstat (limited to 'net/rds/ib.h')
-rw-r--r-- | net/rds/ib.h | 100 |
1 files changed, 49 insertions, 51 deletions
diff --git a/net/rds/ib.h b/net/rds/ib.h index 64df4e79b29f..7ad3d57e06a5 100644 --- a/net/rds/ib.h +++ b/net/rds/ib.h | |||
@@ -3,11 +3,13 @@ | |||
3 | 3 | ||
4 | #include <rdma/ib_verbs.h> | 4 | #include <rdma/ib_verbs.h> |
5 | #include <rdma/rdma_cm.h> | 5 | #include <rdma/rdma_cm.h> |
6 | #include <linux/pci.h> | ||
7 | #include <linux/slab.h> | ||
6 | #include "rds.h" | 8 | #include "rds.h" |
7 | #include "rdma_transport.h" | 9 | #include "rdma_transport.h" |
8 | 10 | ||
9 | #define RDS_FMR_SIZE 256 | 11 | #define RDS_FMR_SIZE 256 |
10 | #define RDS_FMR_POOL_SIZE 4096 | 12 | #define RDS_FMR_POOL_SIZE 8192 |
11 | 13 | ||
12 | #define RDS_IB_MAX_SGE 8 | 14 | #define RDS_IB_MAX_SGE 8 |
13 | #define RDS_IB_RECV_SGE 2 | 15 | #define RDS_IB_RECV_SGE 2 |
@@ -19,6 +21,9 @@ | |||
19 | 21 | ||
20 | #define RDS_IB_SUPPORTED_PROTOCOLS 0x00000003 /* minor versions supported */ | 22 | #define RDS_IB_SUPPORTED_PROTOCOLS 0x00000003 /* minor versions supported */ |
21 | 23 | ||
24 | #define RDS_IB_RECYCLE_BATCH_COUNT 32 | ||
25 | |||
26 | extern struct rw_semaphore rds_ib_devices_lock; | ||
22 | extern struct list_head rds_ib_devices; | 27 | extern struct list_head rds_ib_devices; |
23 | 28 | ||
24 | /* | 29 | /* |
@@ -26,20 +31,29 @@ extern struct list_head rds_ib_devices; | |||
26 | * try and minimize the amount of memory tied up both the device and | 31 | * try and minimize the amount of memory tied up both the device and |
27 | * socket receive queues. | 32 | * socket receive queues. |
28 | */ | 33 | */ |
29 | /* page offset of the final full frag that fits in the page */ | ||
30 | #define RDS_PAGE_LAST_OFF (((PAGE_SIZE / RDS_FRAG_SIZE) - 1) * RDS_FRAG_SIZE) | ||
31 | struct rds_page_frag { | 34 | struct rds_page_frag { |
32 | struct list_head f_item; | 35 | struct list_head f_item; |
33 | struct page *f_page; | 36 | struct list_head f_cache_entry; |
34 | unsigned long f_offset; | 37 | struct scatterlist f_sg; |
35 | dma_addr_t f_mapped; | ||
36 | }; | 38 | }; |
37 | 39 | ||
38 | struct rds_ib_incoming { | 40 | struct rds_ib_incoming { |
39 | struct list_head ii_frags; | 41 | struct list_head ii_frags; |
42 | struct list_head ii_cache_entry; | ||
40 | struct rds_incoming ii_inc; | 43 | struct rds_incoming ii_inc; |
41 | }; | 44 | }; |
42 | 45 | ||
46 | struct rds_ib_cache_head { | ||
47 | struct list_head *first; | ||
48 | unsigned long count; | ||
49 | }; | ||
50 | |||
51 | struct rds_ib_refill_cache { | ||
52 | struct rds_ib_cache_head *percpu; | ||
53 | struct list_head *xfer; | ||
54 | struct list_head *ready; | ||
55 | }; | ||
56 | |||
43 | struct rds_ib_connect_private { | 57 | struct rds_ib_connect_private { |
44 | /* Add new fields at the end, and don't permute existing fields. */ | 58 | /* Add new fields at the end, and don't permute existing fields. */ |
45 | __be32 dp_saddr; | 59 | __be32 dp_saddr; |
@@ -53,8 +67,7 @@ struct rds_ib_connect_private { | |||
53 | }; | 67 | }; |
54 | 68 | ||
55 | struct rds_ib_send_work { | 69 | struct rds_ib_send_work { |
56 | struct rds_message *s_rm; | 70 | void *s_op; |
57 | struct rds_rdma_op *s_op; | ||
58 | struct ib_send_wr s_wr; | 71 | struct ib_send_wr s_wr; |
59 | struct ib_sge s_sge[RDS_IB_MAX_SGE]; | 72 | struct ib_sge s_sge[RDS_IB_MAX_SGE]; |
60 | unsigned long s_queued; | 73 | unsigned long s_queued; |
@@ -92,10 +105,11 @@ struct rds_ib_connection { | |||
92 | 105 | ||
93 | /* tx */ | 106 | /* tx */ |
94 | struct rds_ib_work_ring i_send_ring; | 107 | struct rds_ib_work_ring i_send_ring; |
95 | struct rds_message *i_rm; | 108 | struct rm_data_op *i_data_op; |
96 | struct rds_header *i_send_hdrs; | 109 | struct rds_header *i_send_hdrs; |
97 | u64 i_send_hdrs_dma; | 110 | u64 i_send_hdrs_dma; |
98 | struct rds_ib_send_work *i_sends; | 111 | struct rds_ib_send_work *i_sends; |
112 | atomic_t i_signaled_sends; | ||
99 | 113 | ||
100 | /* rx */ | 114 | /* rx */ |
101 | struct tasklet_struct i_recv_tasklet; | 115 | struct tasklet_struct i_recv_tasklet; |
@@ -106,8 +120,9 @@ struct rds_ib_connection { | |||
106 | struct rds_header *i_recv_hdrs; | 120 | struct rds_header *i_recv_hdrs; |
107 | u64 i_recv_hdrs_dma; | 121 | u64 i_recv_hdrs_dma; |
108 | struct rds_ib_recv_work *i_recvs; | 122 | struct rds_ib_recv_work *i_recvs; |
109 | struct rds_page_frag i_frag; | ||
110 | u64 i_ack_recv; /* last ACK received */ | 123 | u64 i_ack_recv; /* last ACK received */ |
124 | struct rds_ib_refill_cache i_cache_incs; | ||
125 | struct rds_ib_refill_cache i_cache_frags; | ||
111 | 126 | ||
112 | /* sending acks */ | 127 | /* sending acks */ |
113 | unsigned long i_ack_flags; | 128 | unsigned long i_ack_flags; |
@@ -138,7 +153,6 @@ struct rds_ib_connection { | |||
138 | 153 | ||
139 | /* Batched completions */ | 154 | /* Batched completions */ |
140 | unsigned int i_unsignaled_wrs; | 155 | unsigned int i_unsignaled_wrs; |
141 | long i_unsignaled_bytes; | ||
142 | }; | 156 | }; |
143 | 157 | ||
144 | /* This assumes that atomic_t is at least 32 bits */ | 158 | /* This assumes that atomic_t is at least 32 bits */ |
@@ -164,9 +178,17 @@ struct rds_ib_device { | |||
164 | unsigned int max_fmrs; | 178 | unsigned int max_fmrs; |
165 | int max_sge; | 179 | int max_sge; |
166 | unsigned int max_wrs; | 180 | unsigned int max_wrs; |
181 | unsigned int max_initiator_depth; | ||
182 | unsigned int max_responder_resources; | ||
167 | spinlock_t spinlock; /* protect the above */ | 183 | spinlock_t spinlock; /* protect the above */ |
184 | atomic_t refcount; | ||
185 | struct work_struct free_work; | ||
168 | }; | 186 | }; |
169 | 187 | ||
188 | #define pcidev_to_node(pcidev) pcibus_to_node(pcidev->bus) | ||
189 | #define ibdev_to_node(ibdev) pcidev_to_node(to_pci_dev(ibdev->dma_device)) | ||
190 | #define rdsibdev_to_node(rdsibdev) ibdev_to_node(rdsibdev->dev) | ||
191 | |||
170 | /* bits for i_ack_flags */ | 192 | /* bits for i_ack_flags */ |
171 | #define IB_ACK_IN_FLIGHT 0 | 193 | #define IB_ACK_IN_FLIGHT 0 |
172 | #define IB_ACK_REQUESTED 1 | 194 | #define IB_ACK_REQUESTED 1 |
@@ -202,6 +224,8 @@ struct rds_ib_statistics { | |||
202 | uint64_t s_ib_rdma_mr_pool_flush; | 224 | uint64_t s_ib_rdma_mr_pool_flush; |
203 | uint64_t s_ib_rdma_mr_pool_wait; | 225 | uint64_t s_ib_rdma_mr_pool_wait; |
204 | uint64_t s_ib_rdma_mr_pool_depleted; | 226 | uint64_t s_ib_rdma_mr_pool_depleted; |
227 | uint64_t s_ib_atomic_cswp; | ||
228 | uint64_t s_ib_atomic_fadd; | ||
205 | }; | 229 | }; |
206 | 230 | ||
207 | extern struct workqueue_struct *rds_ib_wq; | 231 | extern struct workqueue_struct *rds_ib_wq; |
@@ -243,6 +267,8 @@ static inline void rds_ib_dma_sync_sg_for_device(struct ib_device *dev, | |||
243 | extern struct rds_transport rds_ib_transport; | 267 | extern struct rds_transport rds_ib_transport; |
244 | extern void rds_ib_add_one(struct ib_device *device); | 268 | extern void rds_ib_add_one(struct ib_device *device); |
245 | extern void rds_ib_remove_one(struct ib_device *device); | 269 | extern void rds_ib_remove_one(struct ib_device *device); |
270 | struct rds_ib_device *rds_ib_get_client_data(struct ib_device *device); | ||
271 | void rds_ib_dev_put(struct rds_ib_device *rds_ibdev); | ||
246 | extern struct ib_client rds_ib_client; | 272 | extern struct ib_client rds_ib_client; |
247 | 273 | ||
248 | extern unsigned int fmr_pool_size; | 274 | extern unsigned int fmr_pool_size; |
@@ -258,7 +284,7 @@ void rds_ib_conn_free(void *arg); | |||
258 | int rds_ib_conn_connect(struct rds_connection *conn); | 284 | int rds_ib_conn_connect(struct rds_connection *conn); |
259 | void rds_ib_conn_shutdown(struct rds_connection *conn); | 285 | void rds_ib_conn_shutdown(struct rds_connection *conn); |
260 | void rds_ib_state_change(struct sock *sk); | 286 | void rds_ib_state_change(struct sock *sk); |
261 | int __init rds_ib_listen_init(void); | 287 | int rds_ib_listen_init(void); |
262 | void rds_ib_listen_stop(void); | 288 | void rds_ib_listen_stop(void); |
263 | void __rds_ib_conn_error(struct rds_connection *conn, const char *, ...); | 289 | void __rds_ib_conn_error(struct rds_connection *conn, const char *, ...); |
264 | int rds_ib_cm_handle_connect(struct rdma_cm_id *cm_id, | 290 | int rds_ib_cm_handle_connect(struct rdma_cm_id *cm_id, |
@@ -275,15 +301,7 @@ void rds_ib_cm_connect_complete(struct rds_connection *conn, | |||
275 | int rds_ib_update_ipaddr(struct rds_ib_device *rds_ibdev, __be32 ipaddr); | 301 | int rds_ib_update_ipaddr(struct rds_ib_device *rds_ibdev, __be32 ipaddr); |
276 | void rds_ib_add_conn(struct rds_ib_device *rds_ibdev, struct rds_connection *conn); | 302 | void rds_ib_add_conn(struct rds_ib_device *rds_ibdev, struct rds_connection *conn); |
277 | void rds_ib_remove_conn(struct rds_ib_device *rds_ibdev, struct rds_connection *conn); | 303 | void rds_ib_remove_conn(struct rds_ib_device *rds_ibdev, struct rds_connection *conn); |
278 | void __rds_ib_destroy_conns(struct list_head *list, spinlock_t *list_lock); | 304 | void rds_ib_destroy_nodev_conns(void); |
279 | static inline void rds_ib_destroy_nodev_conns(void) | ||
280 | { | ||
281 | __rds_ib_destroy_conns(&ib_nodev_conns, &ib_nodev_conns_lock); | ||
282 | } | ||
283 | static inline void rds_ib_destroy_conns(struct rds_ib_device *rds_ibdev) | ||
284 | { | ||
285 | __rds_ib_destroy_conns(&rds_ibdev->conn_list, &rds_ibdev->spinlock); | ||
286 | } | ||
287 | struct rds_ib_mr_pool *rds_ib_create_mr_pool(struct rds_ib_device *); | 305 | struct rds_ib_mr_pool *rds_ib_create_mr_pool(struct rds_ib_device *); |
288 | void rds_ib_get_mr_info(struct rds_ib_device *rds_ibdev, struct rds_info_rdma_connection *iinfo); | 306 | void rds_ib_get_mr_info(struct rds_ib_device *rds_ibdev, struct rds_info_rdma_connection *iinfo); |
289 | void rds_ib_destroy_mr_pool(struct rds_ib_mr_pool *); | 307 | void rds_ib_destroy_mr_pool(struct rds_ib_mr_pool *); |
@@ -292,14 +310,16 @@ void *rds_ib_get_mr(struct scatterlist *sg, unsigned long nents, | |||
292 | void rds_ib_sync_mr(void *trans_private, int dir); | 310 | void rds_ib_sync_mr(void *trans_private, int dir); |
293 | void rds_ib_free_mr(void *trans_private, int invalidate); | 311 | void rds_ib_free_mr(void *trans_private, int invalidate); |
294 | void rds_ib_flush_mrs(void); | 312 | void rds_ib_flush_mrs(void); |
313 | int rds_ib_fmr_init(void); | ||
314 | void rds_ib_fmr_exit(void); | ||
295 | 315 | ||
296 | /* ib_recv.c */ | 316 | /* ib_recv.c */ |
297 | int __init rds_ib_recv_init(void); | 317 | int rds_ib_recv_init(void); |
298 | void rds_ib_recv_exit(void); | 318 | void rds_ib_recv_exit(void); |
299 | int rds_ib_recv(struct rds_connection *conn); | 319 | int rds_ib_recv(struct rds_connection *conn); |
300 | int rds_ib_recv_refill(struct rds_connection *conn, gfp_t kptr_gfp, | 320 | int rds_ib_recv_alloc_caches(struct rds_ib_connection *ic); |
301 | gfp_t page_gfp, int prefill); | 321 | void rds_ib_recv_free_caches(struct rds_ib_connection *ic); |
302 | void rds_ib_inc_purge(struct rds_incoming *inc); | 322 | void rds_ib_recv_refill(struct rds_connection *conn, int prefill); |
303 | void rds_ib_inc_free(struct rds_incoming *inc); | 323 | void rds_ib_inc_free(struct rds_incoming *inc); |
304 | int rds_ib_inc_copy_to_user(struct rds_incoming *inc, struct iovec *iov, | 324 | int rds_ib_inc_copy_to_user(struct rds_incoming *inc, struct iovec *iov, |
305 | size_t size); | 325 | size_t size); |
@@ -325,17 +345,19 @@ u32 rds_ib_ring_completed(struct rds_ib_work_ring *ring, u32 wr_id, u32 oldest); | |||
325 | extern wait_queue_head_t rds_ib_ring_empty_wait; | 345 | extern wait_queue_head_t rds_ib_ring_empty_wait; |
326 | 346 | ||
327 | /* ib_send.c */ | 347 | /* ib_send.c */ |
348 | char *rds_ib_wc_status_str(enum ib_wc_status status); | ||
328 | void rds_ib_xmit_complete(struct rds_connection *conn); | 349 | void rds_ib_xmit_complete(struct rds_connection *conn); |
329 | int rds_ib_xmit(struct rds_connection *conn, struct rds_message *rm, | 350 | int rds_ib_xmit(struct rds_connection *conn, struct rds_message *rm, |
330 | unsigned int hdr_off, unsigned int sg, unsigned int off); | 351 | unsigned int hdr_off, unsigned int sg, unsigned int off); |
331 | void rds_ib_send_cq_comp_handler(struct ib_cq *cq, void *context); | 352 | void rds_ib_send_cq_comp_handler(struct ib_cq *cq, void *context); |
332 | void rds_ib_send_init_ring(struct rds_ib_connection *ic); | 353 | void rds_ib_send_init_ring(struct rds_ib_connection *ic); |
333 | void rds_ib_send_clear_ring(struct rds_ib_connection *ic); | 354 | void rds_ib_send_clear_ring(struct rds_ib_connection *ic); |
334 | int rds_ib_xmit_rdma(struct rds_connection *conn, struct rds_rdma_op *op); | 355 | int rds_ib_xmit_rdma(struct rds_connection *conn, struct rm_rdma_op *op); |
335 | void rds_ib_send_add_credits(struct rds_connection *conn, unsigned int credits); | 356 | void rds_ib_send_add_credits(struct rds_connection *conn, unsigned int credits); |
336 | void rds_ib_advertise_credits(struct rds_connection *conn, unsigned int posted); | 357 | void rds_ib_advertise_credits(struct rds_connection *conn, unsigned int posted); |
337 | int rds_ib_send_grab_credits(struct rds_ib_connection *ic, u32 wanted, | 358 | int rds_ib_send_grab_credits(struct rds_ib_connection *ic, u32 wanted, |
338 | u32 *adv_credits, int need_posted, int max_posted); | 359 | u32 *adv_credits, int need_posted, int max_posted); |
360 | int rds_ib_xmit_atomic(struct rds_connection *conn, struct rm_atomic_op *op); | ||
339 | 361 | ||
340 | /* ib_stats.c */ | 362 | /* ib_stats.c */ |
341 | DECLARE_PER_CPU(struct rds_ib_statistics, rds_ib_stats); | 363 | DECLARE_PER_CPU(struct rds_ib_statistics, rds_ib_stats); |
@@ -344,7 +366,7 @@ unsigned int rds_ib_stats_info_copy(struct rds_info_iterator *iter, | |||
344 | unsigned int avail); | 366 | unsigned int avail); |
345 | 367 | ||
346 | /* ib_sysctl.c */ | 368 | /* ib_sysctl.c */ |
347 | int __init rds_ib_sysctl_init(void); | 369 | int rds_ib_sysctl_init(void); |
348 | void rds_ib_sysctl_exit(void); | 370 | void rds_ib_sysctl_exit(void); |
349 | extern unsigned long rds_ib_sysctl_max_send_wr; | 371 | extern unsigned long rds_ib_sysctl_max_send_wr; |
350 | extern unsigned long rds_ib_sysctl_max_recv_wr; | 372 | extern unsigned long rds_ib_sysctl_max_recv_wr; |
@@ -354,28 +376,4 @@ extern unsigned long rds_ib_sysctl_max_recv_allocation; | |||
354 | extern unsigned int rds_ib_sysctl_flow_control; | 376 | extern unsigned int rds_ib_sysctl_flow_control; |
355 | extern ctl_table rds_ib_sysctl_table[]; | 377 | extern ctl_table rds_ib_sysctl_table[]; |
356 | 378 | ||
357 | /* | ||
358 | * Helper functions for getting/setting the header and data SGEs in | ||
359 | * RDS packets (not RDMA) | ||
360 | * | ||
361 | * From version 3.1 onwards, header is in front of data in the sge. | ||
362 | */ | ||
363 | static inline struct ib_sge * | ||
364 | rds_ib_header_sge(struct rds_ib_connection *ic, struct ib_sge *sge) | ||
365 | { | ||
366 | if (ic->conn->c_version > RDS_PROTOCOL_3_0) | ||
367 | return &sge[0]; | ||
368 | else | ||
369 | return &sge[1]; | ||
370 | } | ||
371 | |||
372 | static inline struct ib_sge * | ||
373 | rds_ib_data_sge(struct rds_ib_connection *ic, struct ib_sge *sge) | ||
374 | { | ||
375 | if (ic->conn->c_version > RDS_PROTOCOL_3_0) | ||
376 | return &sge[1]; | ||
377 | else | ||
378 | return &sge[0]; | ||
379 | } | ||
380 | |||
381 | #endif | 379 | #endif |