2 * Copyright (c) 2006 Oracle. All rights reserved.
4 * This software is available to you under a choice of one of two
5 * licenses. You may choose to be licensed under the terms of the GNU
6 * General Public License (GPL) Version 2, available from the file
7 * COPYING in the main directory of this source tree, or the
8 * OpenIB.org BSD license below:
10 * Redistribution and use in source and binary forms, with or
11 * without modification, are permitted provided that the following
14 * - Redistributions of source code must retain the above
15 * copyright notice, this list of conditions and the following
18 * - Redistributions in binary form must reproduce the above
19 * copyright notice, this list of conditions and the following
20 * disclaimer in the documentation and/or other materials
21 * provided with the distribution.
23 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
24 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
25 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
26 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
27 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
28 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
29 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
33 #include <linux/kernel.h>
35 #include <linux/vmalloc.h>
41 * Set the selected protocol version
43 static void rds_ib_set_protocol(struct rds_connection
*conn
, unsigned int version
)
45 conn
->c_version
= version
;
51 static void rds_ib_set_flow_control(struct rds_connection
*conn
, u32 credits
)
53 struct rds_ib_connection
*ic
= conn
->c_transport_data
;
55 if (rds_ib_sysctl_flow_control
&& credits
!= 0) {
56 /* We're doing flow control */
58 rds_ib_send_add_credits(conn
, credits
);
65 * Tune RNR behavior. Without flow control, we use a rather
66 * low timeout, but not the absolute minimum - this should
69 * We already set the RNR retry count to 7 (which is the
70 * smallest infinite number :-) above.
71 * If flow control is off, we want to change this back to 0
72 * so that we learn quickly when our credit accounting is
75 * Caller passes in a qp_attr pointer - don't waste stack spacv
76 * by allocation this twice.
79 rds_ib_tune_rnr(struct rds_ib_connection
*ic
, struct ib_qp_attr
*attr
)
83 attr
->min_rnr_timer
= IB_RNR_TIMER_000_32
;
84 ret
= ib_modify_qp(ic
->i_cm_id
->qp
, attr
, IB_QP_MIN_RNR_TIMER
);
86 printk(KERN_NOTICE
"ib_modify_qp(IB_QP_MIN_RNR_TIMER): err=%d\n", -ret
);
90 * Connection established.
91 * We get here for both outgoing and incoming connection.
93 void rds_ib_cm_connect_complete(struct rds_connection
*conn
, struct rdma_cm_event
*event
)
95 const struct rds_ib_connect_private
*dp
= NULL
;
96 struct rds_ib_connection
*ic
= conn
->c_transport_data
;
97 struct rds_ib_device
*rds_ibdev
;
98 struct ib_qp_attr qp_attr
;
101 if (event
->param
.conn
.private_data_len
>= sizeof(*dp
)) {
102 dp
= event
->param
.conn
.private_data
;
104 /* make sure it isn't empty data */
105 if (dp
->dp_protocol_major
) {
106 rds_ib_set_protocol(conn
,
107 RDS_PROTOCOL(dp
->dp_protocol_major
,
108 dp
->dp_protocol_minor
));
109 rds_ib_set_flow_control(conn
, be32_to_cpu(dp
->dp_credit
));
113 printk(KERN_NOTICE
"RDS/IB: connected to %pI4 version %u.%u%s\n",
115 RDS_PROTOCOL_MAJOR(conn
->c_version
),
116 RDS_PROTOCOL_MINOR(conn
->c_version
),
117 ic
->i_flowctl
? ", flow control" : "");
120 * Init rings and fill recv. this needs to wait until protocol negotiation
121 * is complete, since ring layout is different from 3.0 to 3.1.
123 rds_ib_send_init_ring(ic
);
124 rds_ib_recv_init_ring(ic
);
125 /* Post receive buffers - as a side effect, this will update
126 * the posted credit count. */
127 rds_ib_recv_refill(conn
, GFP_KERNEL
, GFP_HIGHUSER
, 1);
129 /* Tune RNR behavior */
130 rds_ib_tune_rnr(ic
, &qp_attr
);
132 qp_attr
.qp_state
= IB_QPS_RTS
;
133 err
= ib_modify_qp(ic
->i_cm_id
->qp
, &qp_attr
, IB_QP_STATE
);
135 printk(KERN_NOTICE
"ib_modify_qp(IB_QP_STATE, RTS): err=%d\n", err
);
137 /* update ib_device with this local ipaddr & conn */
138 rds_ibdev
= ib_get_client_data(ic
->i_cm_id
->device
, &rds_ib_client
);
139 err
= rds_ib_update_ipaddr(rds_ibdev
, conn
->c_laddr
);
141 printk(KERN_ERR
"rds_ib_update_ipaddr failed (%d)\n", err
);
142 rds_ib_add_conn(rds_ibdev
, conn
);
144 /* If the peer gave us the last packet it saw, process this as if
145 * we had received a regular ACK. */
146 if (dp
&& dp
->dp_ack_seq
)
147 rds_send_drop_acked(conn
, be64_to_cpu(dp
->dp_ack_seq
), NULL
);
149 rds_connect_complete(conn
);
152 static void rds_ib_cm_fill_conn_param(struct rds_connection
*conn
,
153 struct rdma_conn_param
*conn_param
,
154 struct rds_ib_connect_private
*dp
,
155 u32 protocol_version
)
157 memset(conn_param
, 0, sizeof(struct rdma_conn_param
));
158 /* XXX tune these? */
159 conn_param
->responder_resources
= 1;
160 conn_param
->initiator_depth
= 1;
161 conn_param
->retry_count
= min_t(unsigned int, rds_ib_retry_count
, 7);
162 conn_param
->rnr_retry_count
= 7;
165 struct rds_ib_connection
*ic
= conn
->c_transport_data
;
167 memset(dp
, 0, sizeof(*dp
));
168 dp
->dp_saddr
= conn
->c_laddr
;
169 dp
->dp_daddr
= conn
->c_faddr
;
170 dp
->dp_protocol_major
= RDS_PROTOCOL_MAJOR(protocol_version
);
171 dp
->dp_protocol_minor
= RDS_PROTOCOL_MINOR(protocol_version
);
172 dp
->dp_protocol_minor_mask
= cpu_to_be16(RDS_IB_SUPPORTED_PROTOCOLS
);
173 dp
->dp_ack_seq
= rds_ib_piggyb_ack(ic
);
175 /* Advertise flow control */
177 unsigned int credits
;
179 credits
= IB_GET_POST_CREDITS(atomic_read(&ic
->i_credits
));
180 dp
->dp_credit
= cpu_to_be32(credits
);
181 atomic_sub(IB_SET_POST_CREDITS(credits
), &ic
->i_credits
);
184 conn_param
->private_data
= dp
;
185 conn_param
->private_data_len
= sizeof(*dp
);
189 static void rds_ib_cq_event_handler(struct ib_event
*event
, void *data
)
191 rdsdebug("event %u data %p\n", event
->event
, data
);
194 static void rds_ib_qp_event_handler(struct ib_event
*event
, void *data
)
196 struct rds_connection
*conn
= data
;
197 struct rds_ib_connection
*ic
= conn
->c_transport_data
;
199 rdsdebug("conn %p ic %p event %u\n", conn
, ic
, event
->event
);
201 switch (event
->event
) {
202 case IB_EVENT_COMM_EST
:
203 rdma_notify(ic
->i_cm_id
, IB_EVENT_COMM_EST
);
206 rds_ib_conn_error(conn
, "RDS/IB: Fatal QP Event %u "
207 "- connection %pI4->%pI4, reconnecting\n",
208 event
->event
, &conn
->c_laddr
, &conn
->c_faddr
);
214 * This needs to be very careful to not leave IS_ERR pointers around for
215 * cleanup to trip over.
217 static int rds_ib_setup_qp(struct rds_connection
*conn
)
219 struct rds_ib_connection
*ic
= conn
->c_transport_data
;
220 struct ib_device
*dev
= ic
->i_cm_id
->device
;
221 struct ib_qp_init_attr attr
;
222 struct rds_ib_device
*rds_ibdev
;
225 /* rds_ib_add_one creates a rds_ib_device object per IB device,
226 * and allocates a protection domain, memory range and FMR pool
227 * for each. If that fails for any reason, it will not register
228 * the rds_ibdev at all.
230 rds_ibdev
= ib_get_client_data(dev
, &rds_ib_client
);
231 if (rds_ibdev
== NULL
) {
232 if (printk_ratelimit())
233 printk(KERN_NOTICE
"RDS/IB: No client_data for device %s\n",
238 if (rds_ibdev
->max_wrs
< ic
->i_send_ring
.w_nr
+ 1)
239 rds_ib_ring_resize(&ic
->i_send_ring
, rds_ibdev
->max_wrs
- 1);
240 if (rds_ibdev
->max_wrs
< ic
->i_recv_ring
.w_nr
+ 1)
241 rds_ib_ring_resize(&ic
->i_recv_ring
, rds_ibdev
->max_wrs
- 1);
243 /* Protection domain and memory range */
244 ic
->i_pd
= rds_ibdev
->pd
;
245 ic
->i_mr
= rds_ibdev
->mr
;
247 ic
->i_send_cq
= ib_create_cq(dev
, rds_ib_send_cq_comp_handler
,
248 rds_ib_cq_event_handler
, conn
,
249 ic
->i_send_ring
.w_nr
+ 1, 0);
250 if (IS_ERR(ic
->i_send_cq
)) {
251 ret
= PTR_ERR(ic
->i_send_cq
);
252 ic
->i_send_cq
= NULL
;
253 rdsdebug("ib_create_cq send failed: %d\n", ret
);
257 ic
->i_recv_cq
= ib_create_cq(dev
, rds_ib_recv_cq_comp_handler
,
258 rds_ib_cq_event_handler
, conn
,
259 ic
->i_recv_ring
.w_nr
, 0);
260 if (IS_ERR(ic
->i_recv_cq
)) {
261 ret
= PTR_ERR(ic
->i_recv_cq
);
262 ic
->i_recv_cq
= NULL
;
263 rdsdebug("ib_create_cq recv failed: %d\n", ret
);
267 ret
= ib_req_notify_cq(ic
->i_send_cq
, IB_CQ_NEXT_COMP
);
269 rdsdebug("ib_req_notify_cq send failed: %d\n", ret
);
273 ret
= ib_req_notify_cq(ic
->i_recv_cq
, IB_CQ_SOLICITED
);
275 rdsdebug("ib_req_notify_cq recv failed: %d\n", ret
);
279 /* XXX negotiate max send/recv with remote? */
280 memset(&attr
, 0, sizeof(attr
));
281 attr
.event_handler
= rds_ib_qp_event_handler
;
282 attr
.qp_context
= conn
;
283 /* + 1 to allow for the single ack message */
284 attr
.cap
.max_send_wr
= ic
->i_send_ring
.w_nr
+ 1;
285 attr
.cap
.max_recv_wr
= ic
->i_recv_ring
.w_nr
+ 1;
286 attr
.cap
.max_send_sge
= rds_ibdev
->max_sge
;
287 attr
.cap
.max_recv_sge
= RDS_IB_RECV_SGE
;
288 attr
.sq_sig_type
= IB_SIGNAL_REQ_WR
;
289 attr
.qp_type
= IB_QPT_RC
;
290 attr
.send_cq
= ic
->i_send_cq
;
291 attr
.recv_cq
= ic
->i_recv_cq
;
294 * XXX this can fail if max_*_wr is too large? Are we supposed
295 * to back off until we get a value that the hardware can support?
297 ret
= rdma_create_qp(ic
->i_cm_id
, ic
->i_pd
, &attr
);
299 rdsdebug("rdma_create_qp failed: %d\n", ret
);
303 ic
->i_send_hdrs
= ib_dma_alloc_coherent(dev
,
304 ic
->i_send_ring
.w_nr
*
305 sizeof(struct rds_header
),
306 &ic
->i_send_hdrs_dma
, GFP_KERNEL
);
307 if (ic
->i_send_hdrs
== NULL
) {
309 rdsdebug("ib_dma_alloc_coherent send failed\n");
313 ic
->i_recv_hdrs
= ib_dma_alloc_coherent(dev
,
314 ic
->i_recv_ring
.w_nr
*
315 sizeof(struct rds_header
),
316 &ic
->i_recv_hdrs_dma
, GFP_KERNEL
);
317 if (ic
->i_recv_hdrs
== NULL
) {
319 rdsdebug("ib_dma_alloc_coherent recv failed\n");
323 ic
->i_ack
= ib_dma_alloc_coherent(dev
, sizeof(struct rds_header
),
324 &ic
->i_ack_dma
, GFP_KERNEL
);
325 if (ic
->i_ack
== NULL
) {
327 rdsdebug("ib_dma_alloc_coherent ack failed\n");
331 ic
->i_sends
= vmalloc(ic
->i_send_ring
.w_nr
* sizeof(struct rds_ib_send_work
));
332 if (ic
->i_sends
== NULL
) {
334 rdsdebug("send allocation failed\n");
337 memset(ic
->i_sends
, 0, ic
->i_send_ring
.w_nr
* sizeof(struct rds_ib_send_work
));
339 ic
->i_recvs
= vmalloc(ic
->i_recv_ring
.w_nr
* sizeof(struct rds_ib_recv_work
));
340 if (ic
->i_recvs
== NULL
) {
342 rdsdebug("recv allocation failed\n");
345 memset(ic
->i_recvs
, 0, ic
->i_recv_ring
.w_nr
* sizeof(struct rds_ib_recv_work
));
347 rds_ib_recv_init_ack(ic
);
349 rdsdebug("conn %p pd %p mr %p cq %p %p\n", conn
, ic
->i_pd
, ic
->i_mr
,
350 ic
->i_send_cq
, ic
->i_recv_cq
);
356 static u32
rds_ib_protocol_compatible(struct rdma_cm_event
*event
)
358 const struct rds_ib_connect_private
*dp
= event
->param
.conn
.private_data
;
363 * rdma_cm private data is odd - when there is any private data in the
364 * request, we will be given a pretty large buffer without telling us the
365 * original size. The only way to tell the difference is by looking at
366 * the contents, which are initialized to zero.
367 * If the protocol version fields aren't set, this is a connection attempt
368 * from an older version. This could could be 3.0 or 2.0 - we can't tell.
369 * We really should have changed this for OFED 1.3 :-(
372 /* Be paranoid. RDS always has privdata */
373 if (!event
->param
.conn
.private_data_len
) {
374 printk(KERN_NOTICE
"RDS incoming connection has no private data, "
379 /* Even if len is crap *now* I still want to check it. -ASG */
380 if (event
->param
.conn
.private_data_len
< sizeof (*dp
)
381 || dp
->dp_protocol_major
== 0)
382 return RDS_PROTOCOL_3_0
;
384 common
= be16_to_cpu(dp
->dp_protocol_minor_mask
) & RDS_IB_SUPPORTED_PROTOCOLS
;
385 if (dp
->dp_protocol_major
== 3 && common
) {
386 version
= RDS_PROTOCOL_3_0
;
387 while ((common
>>= 1) != 0)
389 } else if (printk_ratelimit()) {
390 printk(KERN_NOTICE
"RDS: Connection from %pI4 using "
391 "incompatible protocol version %u.%u\n",
393 dp
->dp_protocol_major
,
394 dp
->dp_protocol_minor
);
399 int rds_ib_cm_handle_connect(struct rdma_cm_id
*cm_id
,
400 struct rdma_cm_event
*event
)
402 __be64 lguid
= cm_id
->route
.path_rec
->sgid
.global
.interface_id
;
403 __be64 fguid
= cm_id
->route
.path_rec
->dgid
.global
.interface_id
;
404 const struct rds_ib_connect_private
*dp
= event
->param
.conn
.private_data
;
405 struct rds_ib_connect_private dp_rep
;
406 struct rds_connection
*conn
= NULL
;
407 struct rds_ib_connection
*ic
= NULL
;
408 struct rdma_conn_param conn_param
;
410 int err
, destroy
= 1;
412 /* Check whether the remote protocol version matches ours. */
413 version
= rds_ib_protocol_compatible(event
);
417 rdsdebug("saddr %pI4 daddr %pI4 RDSv%u.%u lguid 0x%llx fguid "
418 "0x%llx\n", &dp
->dp_saddr
, &dp
->dp_daddr
,
419 RDS_PROTOCOL_MAJOR(version
), RDS_PROTOCOL_MINOR(version
),
420 (unsigned long long)be64_to_cpu(lguid
),
421 (unsigned long long)be64_to_cpu(fguid
));
423 conn
= rds_conn_create(dp
->dp_daddr
, dp
->dp_saddr
, &rds_ib_transport
,
426 rdsdebug("rds_conn_create failed (%ld)\n", PTR_ERR(conn
));
432 * The connection request may occur while the
433 * previous connection exist, e.g. in case of failover.
434 * But as connections may be initiated simultaneously
435 * by both hosts, we have a random backoff mechanism -
436 * see the comment above rds_queue_reconnect()
438 mutex_lock(&conn
->c_cm_lock
);
439 if (!rds_conn_transition(conn
, RDS_CONN_DOWN
, RDS_CONN_CONNECTING
)) {
440 if (rds_conn_state(conn
) == RDS_CONN_UP
) {
441 rdsdebug("incoming connect while connecting\n");
443 rds_ib_stats_inc(s_ib_listen_closed_stale
);
445 if (rds_conn_state(conn
) == RDS_CONN_CONNECTING
) {
446 /* Wait and see - our connect may still be succeeding */
447 rds_ib_stats_inc(s_ib_connect_raced
);
449 mutex_unlock(&conn
->c_cm_lock
);
453 ic
= conn
->c_transport_data
;
455 rds_ib_set_protocol(conn
, version
);
456 rds_ib_set_flow_control(conn
, be32_to_cpu(dp
->dp_credit
));
458 /* If the peer gave us the last packet it saw, process this as if
459 * we had received a regular ACK. */
461 rds_send_drop_acked(conn
, be64_to_cpu(dp
->dp_ack_seq
), NULL
);
463 BUG_ON(cm_id
->context
);
467 cm_id
->context
= conn
;
469 /* We got halfway through setting up the ib_connection, if we
470 * fail now, we have to take the long route out of this mess. */
473 err
= rds_ib_setup_qp(conn
);
475 rds_ib_conn_error(conn
, "rds_ib_setup_qp failed (%d)\n", err
);
479 rds_ib_cm_fill_conn_param(conn
, &conn_param
, &dp_rep
, version
);
481 /* rdma_accept() calls rdma_reject() internally if it fails */
482 err
= rdma_accept(cm_id
, &conn_param
);
483 mutex_unlock(&conn
->c_cm_lock
);
485 rds_ib_conn_error(conn
, "rdma_accept failed (%d)\n", err
);
492 rdma_reject(cm_id
, NULL
, 0);
497 int rds_ib_cm_initiate_connect(struct rdma_cm_id
*cm_id
)
499 struct rds_connection
*conn
= cm_id
->context
;
500 struct rds_ib_connection
*ic
= conn
->c_transport_data
;
501 struct rdma_conn_param conn_param
;
502 struct rds_ib_connect_private dp
;
505 /* If the peer doesn't do protocol negotiation, we must
506 * default to RDSv3.0 */
507 rds_ib_set_protocol(conn
, RDS_PROTOCOL_3_0
);
508 ic
->i_flowctl
= rds_ib_sysctl_flow_control
; /* advertise flow control */
510 ret
= rds_ib_setup_qp(conn
);
512 rds_ib_conn_error(conn
, "rds_ib_setup_qp failed (%d)\n", ret
);
516 rds_ib_cm_fill_conn_param(conn
, &conn_param
, &dp
, RDS_PROTOCOL_VERSION
);
518 ret
= rdma_connect(cm_id
, &conn_param
);
520 rds_ib_conn_error(conn
, "rdma_connect failed (%d)\n", ret
);
523 /* Beware - returning non-zero tells the rdma_cm to destroy
524 * the cm_id. We should certainly not do it as long as we still
525 * "own" the cm_id. */
527 if (ic
->i_cm_id
== cm_id
)
533 int rds_ib_conn_connect(struct rds_connection
*conn
)
535 struct rds_ib_connection
*ic
= conn
->c_transport_data
;
536 struct sockaddr_in src
, dest
;
539 /* XXX I wonder what affect the port space has */
540 /* delegate cm event handler to rdma_transport */
541 ic
->i_cm_id
= rdma_create_id(rds_rdma_cm_event_handler
, conn
,
543 if (IS_ERR(ic
->i_cm_id
)) {
544 ret
= PTR_ERR(ic
->i_cm_id
);
546 rdsdebug("rdma_create_id() failed: %d\n", ret
);
550 rdsdebug("created cm id %p for conn %p\n", ic
->i_cm_id
, conn
);
552 src
.sin_family
= AF_INET
;
553 src
.sin_addr
.s_addr
= (__force u32
)conn
->c_laddr
;
554 src
.sin_port
= (__force u16
)htons(0);
556 dest
.sin_family
= AF_INET
;
557 dest
.sin_addr
.s_addr
= (__force u32
)conn
->c_faddr
;
558 dest
.sin_port
= (__force u16
)htons(RDS_PORT
);
560 ret
= rdma_resolve_addr(ic
->i_cm_id
, (struct sockaddr
*)&src
,
561 (struct sockaddr
*)&dest
,
562 RDS_RDMA_RESOLVE_TIMEOUT_MS
);
564 rdsdebug("addr resolve failed for cm id %p: %d\n", ic
->i_cm_id
,
566 rdma_destroy_id(ic
->i_cm_id
);
575 * This is so careful about only cleaning up resources that were built up
576 * so that it can be called at any point during startup. In fact it
577 * can be called multiple times for a given connection.
579 void rds_ib_conn_shutdown(struct rds_connection
*conn
)
581 struct rds_ib_connection
*ic
= conn
->c_transport_data
;
584 rdsdebug("cm %p pd %p cq %p %p qp %p\n", ic
->i_cm_id
,
585 ic
->i_pd
, ic
->i_send_cq
, ic
->i_recv_cq
,
586 ic
->i_cm_id
? ic
->i_cm_id
->qp
: NULL
);
589 struct ib_device
*dev
= ic
->i_cm_id
->device
;
591 rdsdebug("disconnecting cm %p\n", ic
->i_cm_id
);
592 err
= rdma_disconnect(ic
->i_cm_id
);
594 /* Actually this may happen quite frequently, when
595 * an outgoing connect raced with an incoming connect.
597 rdsdebug("failed to disconnect, cm: %p err %d\n",
601 wait_event(rds_ib_ring_empty_wait
,
602 rds_ib_ring_empty(&ic
->i_send_ring
) &&
603 rds_ib_ring_empty(&ic
->i_recv_ring
));
606 ib_dma_free_coherent(dev
,
607 ic
->i_send_ring
.w_nr
*
608 sizeof(struct rds_header
),
610 ic
->i_send_hdrs_dma
);
613 ib_dma_free_coherent(dev
,
614 ic
->i_recv_ring
.w_nr
*
615 sizeof(struct rds_header
),
617 ic
->i_recv_hdrs_dma
);
620 ib_dma_free_coherent(dev
, sizeof(struct rds_header
),
621 ic
->i_ack
, ic
->i_ack_dma
);
624 rds_ib_send_clear_ring(ic
);
626 rds_ib_recv_clear_ring(ic
);
629 rdma_destroy_qp(ic
->i_cm_id
);
631 ib_destroy_cq(ic
->i_send_cq
);
633 ib_destroy_cq(ic
->i_recv_cq
);
634 rdma_destroy_id(ic
->i_cm_id
);
637 * Move connection back to the nodev list.
640 rds_ib_remove_conn(ic
->rds_ibdev
, conn
);
645 ic
->i_send_cq
= NULL
;
646 ic
->i_recv_cq
= NULL
;
647 ic
->i_send_hdrs
= NULL
;
648 ic
->i_recv_hdrs
= NULL
;
651 BUG_ON(ic
->rds_ibdev
);
653 /* Clear pending transmit */
655 rds_message_put(ic
->i_rm
);
659 /* Clear the ACK state */
660 clear_bit(IB_ACK_IN_FLIGHT
, &ic
->i_ack_flags
);
661 #ifdef KERNEL_HAS_ATOMIC64
662 atomic64_set(&ic
->i_ack_next
, 0);
668 /* Clear flow control state */
670 atomic_set(&ic
->i_credits
, 0);
672 rds_ib_ring_init(&ic
->i_send_ring
, rds_ib_sysctl_max_send_wr
);
673 rds_ib_ring_init(&ic
->i_recv_ring
, rds_ib_sysctl_max_recv_wr
);
676 rds_inc_put(&ic
->i_ibinc
->ii_inc
);
686 int rds_ib_conn_alloc(struct rds_connection
*conn
, gfp_t gfp
)
688 struct rds_ib_connection
*ic
;
692 ic
= kzalloc(sizeof(struct rds_ib_connection
), GFP_KERNEL
);
696 INIT_LIST_HEAD(&ic
->ib_node
);
697 mutex_init(&ic
->i_recv_mutex
);
698 #ifndef KERNEL_HAS_ATOMIC64
699 spin_lock_init(&ic
->i_ack_lock
);
703 * rds_ib_conn_shutdown() waits for these to be emptied so they
704 * must be initialized before it can be called.
706 rds_ib_ring_init(&ic
->i_send_ring
, rds_ib_sysctl_max_send_wr
);
707 rds_ib_ring_init(&ic
->i_recv_ring
, rds_ib_sysctl_max_recv_wr
);
710 conn
->c_transport_data
= ic
;
712 spin_lock_irqsave(&ib_nodev_conns_lock
, flags
);
713 list_add_tail(&ic
->ib_node
, &ib_nodev_conns
);
714 spin_unlock_irqrestore(&ib_nodev_conns_lock
, flags
);
717 rdsdebug("conn %p conn ic %p\n", conn
, conn
->c_transport_data
);
722 * Free a connection. Connection must be shut down and not set for reconnect.
724 void rds_ib_conn_free(void *arg
)
726 struct rds_ib_connection
*ic
= arg
;
727 spinlock_t
*lock_ptr
;
729 rdsdebug("ic %p\n", ic
);
732 * Conn is either on a dev's list or on the nodev list.
733 * A race with shutdown() or connect() would cause problems
734 * (since rds_ibdev would change) but that should never happen.
736 lock_ptr
= ic
->rds_ibdev
? &ic
->rds_ibdev
->spinlock
: &ib_nodev_conns_lock
;
738 spin_lock_irq(lock_ptr
);
739 list_del(&ic
->ib_node
);
740 spin_unlock_irq(lock_ptr
);
747 * An error occurred on the connection
750 __rds_ib_conn_error(struct rds_connection
*conn
, const char *fmt
, ...)