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
) {
102 dp
= event
->param
.conn
.private_data
;
104 rds_ib_set_protocol(conn
,
105 RDS_PROTOCOL(dp
->dp_protocol_major
,
106 dp
->dp_protocol_minor
));
107 rds_ib_set_flow_control(conn
, be32_to_cpu(dp
->dp_credit
));
110 printk(KERN_NOTICE
"RDS/IB: connected to %pI4 version %u.%u%s\n",
112 RDS_PROTOCOL_MAJOR(conn
->c_version
),
113 RDS_PROTOCOL_MINOR(conn
->c_version
),
114 ic
->i_flowctl
? ", flow control" : "");
116 /* Tune RNR behavior */
117 rds_ib_tune_rnr(ic
, &qp_attr
);
119 qp_attr
.qp_state
= IB_QPS_RTS
;
120 err
= ib_modify_qp(ic
->i_cm_id
->qp
, &qp_attr
, IB_QP_STATE
);
122 printk(KERN_NOTICE
"ib_modify_qp(IB_QP_STATE, RTS): err=%d\n", err
);
124 /* update ib_device with this local ipaddr & conn */
125 rds_ibdev
= ib_get_client_data(ic
->i_cm_id
->device
, &rds_ib_client
);
126 err
= rds_ib_update_ipaddr(rds_ibdev
, conn
->c_laddr
);
128 printk(KERN_ERR
"rds_ib_update_ipaddr failed (%d)\n", err
);
129 err
= rds_ib_add_conn(rds_ibdev
, conn
);
131 printk(KERN_ERR
"rds_ib_add_conn failed (%d)\n", err
);
133 /* If the peer gave us the last packet it saw, process this as if
134 * we had received a regular ACK. */
135 if (dp
&& dp
->dp_ack_seq
)
136 rds_send_drop_acked(conn
, be64_to_cpu(dp
->dp_ack_seq
), NULL
);
138 rds_connect_complete(conn
);
141 static void rds_ib_cm_fill_conn_param(struct rds_connection
*conn
,
142 struct rdma_conn_param
*conn_param
,
143 struct rds_ib_connect_private
*dp
,
144 u32 protocol_version
)
146 memset(conn_param
, 0, sizeof(struct rdma_conn_param
));
147 /* XXX tune these? */
148 conn_param
->responder_resources
= 1;
149 conn_param
->initiator_depth
= 1;
150 conn_param
->retry_count
= 7;
151 conn_param
->rnr_retry_count
= 7;
154 struct rds_ib_connection
*ic
= conn
->c_transport_data
;
156 memset(dp
, 0, sizeof(*dp
));
157 dp
->dp_saddr
= conn
->c_laddr
;
158 dp
->dp_daddr
= conn
->c_faddr
;
159 dp
->dp_protocol_major
= RDS_PROTOCOL_MAJOR(protocol_version
);
160 dp
->dp_protocol_minor
= RDS_PROTOCOL_MINOR(protocol_version
);
161 dp
->dp_protocol_minor_mask
= cpu_to_be16(RDS_IB_SUPPORTED_PROTOCOLS
);
162 dp
->dp_ack_seq
= rds_ib_piggyb_ack(ic
);
164 /* Advertise flow control */
166 unsigned int credits
;
168 credits
= IB_GET_POST_CREDITS(atomic_read(&ic
->i_credits
));
169 dp
->dp_credit
= cpu_to_be32(credits
);
170 atomic_sub(IB_SET_POST_CREDITS(credits
), &ic
->i_credits
);
173 conn_param
->private_data
= dp
;
174 conn_param
->private_data_len
= sizeof(*dp
);
178 static void rds_ib_cq_event_handler(struct ib_event
*event
, void *data
)
180 rdsdebug("event %u data %p\n", event
->event
, data
);
183 static void rds_ib_qp_event_handler(struct ib_event
*event
, void *data
)
185 struct rds_connection
*conn
= data
;
186 struct rds_ib_connection
*ic
= conn
->c_transport_data
;
188 rdsdebug("conn %p ic %p event %u\n", conn
, ic
, event
->event
);
190 switch (event
->event
) {
191 case IB_EVENT_COMM_EST
:
192 rdma_notify(ic
->i_cm_id
, IB_EVENT_COMM_EST
);
195 printk(KERN_WARNING
"RDS/ib: unhandled QP event %u "
196 "on connection to %pI4\n", event
->event
,
203 * This needs to be very careful to not leave IS_ERR pointers around for
204 * cleanup to trip over.
206 static int rds_ib_setup_qp(struct rds_connection
*conn
)
208 struct rds_ib_connection
*ic
= conn
->c_transport_data
;
209 struct ib_device
*dev
= ic
->i_cm_id
->device
;
210 struct ib_qp_init_attr attr
;
211 struct rds_ib_device
*rds_ibdev
;
214 /* rds_ib_add_one creates a rds_ib_device object per IB device,
215 * and allocates a protection domain, memory range and FMR pool
216 * for each. If that fails for any reason, it will not register
217 * the rds_ibdev at all.
219 rds_ibdev
= ib_get_client_data(dev
, &rds_ib_client
);
220 if (rds_ibdev
== NULL
) {
221 if (printk_ratelimit())
222 printk(KERN_NOTICE
"RDS/IB: No client_data for device %s\n",
227 if (rds_ibdev
->max_wrs
< ic
->i_send_ring
.w_nr
+ 1)
228 rds_ib_ring_resize(&ic
->i_send_ring
, rds_ibdev
->max_wrs
- 1);
229 if (rds_ibdev
->max_wrs
< ic
->i_recv_ring
.w_nr
+ 1)
230 rds_ib_ring_resize(&ic
->i_recv_ring
, rds_ibdev
->max_wrs
- 1);
232 /* Protection domain and memory range */
233 ic
->i_pd
= rds_ibdev
->pd
;
234 ic
->i_mr
= rds_ibdev
->mr
;
236 ic
->i_send_cq
= ib_create_cq(dev
, rds_ib_send_cq_comp_handler
,
237 rds_ib_cq_event_handler
, conn
,
238 ic
->i_send_ring
.w_nr
+ 1, 0);
239 if (IS_ERR(ic
->i_send_cq
)) {
240 ret
= PTR_ERR(ic
->i_send_cq
);
241 ic
->i_send_cq
= NULL
;
242 rdsdebug("ib_create_cq send failed: %d\n", ret
);
246 ic
->i_recv_cq
= ib_create_cq(dev
, rds_ib_recv_cq_comp_handler
,
247 rds_ib_cq_event_handler
, conn
,
248 ic
->i_recv_ring
.w_nr
, 0);
249 if (IS_ERR(ic
->i_recv_cq
)) {
250 ret
= PTR_ERR(ic
->i_recv_cq
);
251 ic
->i_recv_cq
= NULL
;
252 rdsdebug("ib_create_cq recv failed: %d\n", ret
);
256 ret
= ib_req_notify_cq(ic
->i_send_cq
, IB_CQ_NEXT_COMP
);
258 rdsdebug("ib_req_notify_cq send failed: %d\n", ret
);
262 ret
= ib_req_notify_cq(ic
->i_recv_cq
, IB_CQ_SOLICITED
);
264 rdsdebug("ib_req_notify_cq recv failed: %d\n", ret
);
268 /* XXX negotiate max send/recv with remote? */
269 memset(&attr
, 0, sizeof(attr
));
270 attr
.event_handler
= rds_ib_qp_event_handler
;
271 attr
.qp_context
= conn
;
272 /* + 1 to allow for the single ack message */
273 attr
.cap
.max_send_wr
= ic
->i_send_ring
.w_nr
+ 1;
274 attr
.cap
.max_recv_wr
= ic
->i_recv_ring
.w_nr
+ 1;
275 attr
.cap
.max_send_sge
= rds_ibdev
->max_sge
;
276 attr
.cap
.max_recv_sge
= RDS_IB_RECV_SGE
;
277 attr
.sq_sig_type
= IB_SIGNAL_REQ_WR
;
278 attr
.qp_type
= IB_QPT_RC
;
279 attr
.send_cq
= ic
->i_send_cq
;
280 attr
.recv_cq
= ic
->i_recv_cq
;
283 * XXX this can fail if max_*_wr is too large? Are we supposed
284 * to back off until we get a value that the hardware can support?
286 ret
= rdma_create_qp(ic
->i_cm_id
, ic
->i_pd
, &attr
);
288 rdsdebug("rdma_create_qp failed: %d\n", ret
);
292 ic
->i_send_hdrs
= ib_dma_alloc_coherent(dev
,
293 ic
->i_send_ring
.w_nr
*
294 sizeof(struct rds_header
),
295 &ic
->i_send_hdrs_dma
, GFP_KERNEL
);
296 if (ic
->i_send_hdrs
== NULL
) {
298 rdsdebug("ib_dma_alloc_coherent send failed\n");
302 ic
->i_recv_hdrs
= ib_dma_alloc_coherent(dev
,
303 ic
->i_recv_ring
.w_nr
*
304 sizeof(struct rds_header
),
305 &ic
->i_recv_hdrs_dma
, GFP_KERNEL
);
306 if (ic
->i_recv_hdrs
== NULL
) {
308 rdsdebug("ib_dma_alloc_coherent recv failed\n");
312 ic
->i_ack
= ib_dma_alloc_coherent(dev
, sizeof(struct rds_header
),
313 &ic
->i_ack_dma
, GFP_KERNEL
);
314 if (ic
->i_ack
== NULL
) {
316 rdsdebug("ib_dma_alloc_coherent ack failed\n");
320 ic
->i_sends
= vmalloc(ic
->i_send_ring
.w_nr
* sizeof(struct rds_ib_send_work
));
321 if (ic
->i_sends
== NULL
) {
323 rdsdebug("send allocation failed\n");
326 rds_ib_send_init_ring(ic
);
328 ic
->i_recvs
= vmalloc(ic
->i_recv_ring
.w_nr
* sizeof(struct rds_ib_recv_work
));
329 if (ic
->i_recvs
== NULL
) {
331 rdsdebug("recv allocation failed\n");
335 rds_ib_recv_init_ring(ic
);
336 rds_ib_recv_init_ack(ic
);
338 /* Post receive buffers - as a side effect, this will update
339 * the posted credit count. */
340 rds_ib_recv_refill(conn
, GFP_KERNEL
, GFP_HIGHUSER
, 1);
342 rdsdebug("conn %p pd %p mr %p cq %p %p\n", conn
, ic
->i_pd
, ic
->i_mr
,
343 ic
->i_send_cq
, ic
->i_recv_cq
);
349 static u32
rds_ib_protocol_compatible(const struct rds_ib_connect_private
*dp
)
354 /* rdma_cm private data is odd - when there is any private data in the
355 * request, we will be given a pretty large buffer without telling us the
356 * original size. The only way to tell the difference is by looking at
357 * the contents, which are initialized to zero.
358 * If the protocol version fields aren't set, this is a connection attempt
359 * from an older version. This could could be 3.0 or 2.0 - we can't tell.
360 * We really should have changed this for OFED 1.3 :-( */
361 if (dp
->dp_protocol_major
== 0)
362 return RDS_PROTOCOL_3_0
;
364 common
= be16_to_cpu(dp
->dp_protocol_minor_mask
) & RDS_IB_SUPPORTED_PROTOCOLS
;
365 if (dp
->dp_protocol_major
== 3 && common
) {
366 version
= RDS_PROTOCOL_3_0
;
367 while ((common
>>= 1) != 0)
369 } else if (printk_ratelimit()) {
370 printk(KERN_NOTICE
"RDS: Connection from %pI4 using "
371 "incompatible protocol version %u.%u\n",
373 dp
->dp_protocol_major
,
374 dp
->dp_protocol_minor
);
379 int rds_ib_cm_handle_connect(struct rdma_cm_id
*cm_id
,
380 struct rdma_cm_event
*event
)
382 __be64 lguid
= cm_id
->route
.path_rec
->sgid
.global
.interface_id
;
383 __be64 fguid
= cm_id
->route
.path_rec
->dgid
.global
.interface_id
;
384 const struct rds_ib_connect_private
*dp
= event
->param
.conn
.private_data
;
385 struct rds_ib_connect_private dp_rep
;
386 struct rds_connection
*conn
= NULL
;
387 struct rds_ib_connection
*ic
= NULL
;
388 struct rdma_conn_param conn_param
;
390 int err
, destroy
= 1;
392 /* Check whether the remote protocol version matches ours. */
393 version
= rds_ib_protocol_compatible(dp
);
397 rdsdebug("saddr %pI4 daddr %pI4 RDSv%u.%u lguid 0x%llx fguid "
398 "0x%llx\n", &dp
->dp_saddr
, &dp
->dp_daddr
,
399 RDS_PROTOCOL_MAJOR(version
), RDS_PROTOCOL_MINOR(version
),
400 (unsigned long long)be64_to_cpu(lguid
),
401 (unsigned long long)be64_to_cpu(fguid
));
403 conn
= rds_conn_create(dp
->dp_daddr
, dp
->dp_saddr
, &rds_ib_transport
,
406 rdsdebug("rds_conn_create failed (%ld)\n", PTR_ERR(conn
));
412 * The connection request may occur while the
413 * previous connection exist, e.g. in case of failover.
414 * But as connections may be initiated simultaneously
415 * by both hosts, we have a random backoff mechanism -
416 * see the comment above rds_queue_reconnect()
418 mutex_lock(&conn
->c_cm_lock
);
419 if (!rds_conn_transition(conn
, RDS_CONN_DOWN
, RDS_CONN_CONNECTING
)) {
420 if (rds_conn_state(conn
) == RDS_CONN_UP
) {
421 rdsdebug("incoming connect while connecting\n");
423 rds_ib_stats_inc(s_ib_listen_closed_stale
);
425 if (rds_conn_state(conn
) == RDS_CONN_CONNECTING
) {
426 /* Wait and see - our connect may still be succeeding */
427 rds_ib_stats_inc(s_ib_connect_raced
);
429 mutex_unlock(&conn
->c_cm_lock
);
433 ic
= conn
->c_transport_data
;
435 rds_ib_set_protocol(conn
, version
);
436 rds_ib_set_flow_control(conn
, be32_to_cpu(dp
->dp_credit
));
438 /* If the peer gave us the last packet it saw, process this as if
439 * we had received a regular ACK. */
441 rds_send_drop_acked(conn
, be64_to_cpu(dp
->dp_ack_seq
), NULL
);
443 BUG_ON(cm_id
->context
);
447 cm_id
->context
= conn
;
449 /* We got halfway through setting up the ib_connection, if we
450 * fail now, we have to take the long route out of this mess. */
453 err
= rds_ib_setup_qp(conn
);
455 rds_ib_conn_error(conn
, "rds_ib_setup_qp failed (%d)\n", err
);
459 rds_ib_cm_fill_conn_param(conn
, &conn_param
, &dp_rep
, version
);
461 /* rdma_accept() calls rdma_reject() internally if it fails */
462 err
= rdma_accept(cm_id
, &conn_param
);
463 mutex_unlock(&conn
->c_cm_lock
);
465 rds_ib_conn_error(conn
, "rdma_accept failed (%d)\n", err
);
472 rdma_reject(cm_id
, NULL
, 0);
477 int rds_ib_cm_initiate_connect(struct rdma_cm_id
*cm_id
)
479 struct rds_connection
*conn
= cm_id
->context
;
480 struct rds_ib_connection
*ic
= conn
->c_transport_data
;
481 struct rdma_conn_param conn_param
;
482 struct rds_ib_connect_private dp
;
485 /* If the peer doesn't do protocol negotiation, we must
486 * default to RDSv3.0 */
487 rds_ib_set_protocol(conn
, RDS_PROTOCOL_3_0
);
488 ic
->i_flowctl
= rds_ib_sysctl_flow_control
; /* advertise flow control */
490 ret
= rds_ib_setup_qp(conn
);
492 rds_ib_conn_error(conn
, "rds_ib_setup_qp failed (%d)\n", ret
);
496 rds_ib_cm_fill_conn_param(conn
, &conn_param
, &dp
, RDS_PROTOCOL_VERSION
);
498 ret
= rdma_connect(cm_id
, &conn_param
);
500 rds_ib_conn_error(conn
, "rdma_connect failed (%d)\n", ret
);
503 /* Beware - returning non-zero tells the rdma_cm to destroy
504 * the cm_id. We should certainly not do it as long as we still
505 * "own" the cm_id. */
507 if (ic
->i_cm_id
== cm_id
)
513 int rds_ib_conn_connect(struct rds_connection
*conn
)
515 struct rds_ib_connection
*ic
= conn
->c_transport_data
;
516 struct sockaddr_in src
, dest
;
519 /* XXX I wonder what affect the port space has */
520 /* delegate cm event handler to rdma_transport */
521 ic
->i_cm_id
= rdma_create_id(rds_rdma_cm_event_handler
, conn
,
523 if (IS_ERR(ic
->i_cm_id
)) {
524 ret
= PTR_ERR(ic
->i_cm_id
);
526 rdsdebug("rdma_create_id() failed: %d\n", ret
);
530 rdsdebug("created cm id %p for conn %p\n", ic
->i_cm_id
, conn
);
532 src
.sin_family
= AF_INET
;
533 src
.sin_addr
.s_addr
= (__force u32
)conn
->c_laddr
;
534 src
.sin_port
= (__force u16
)htons(0);
536 dest
.sin_family
= AF_INET
;
537 dest
.sin_addr
.s_addr
= (__force u32
)conn
->c_faddr
;
538 dest
.sin_port
= (__force u16
)htons(RDS_PORT
);
540 ret
= rdma_resolve_addr(ic
->i_cm_id
, (struct sockaddr
*)&src
,
541 (struct sockaddr
*)&dest
,
542 RDS_RDMA_RESOLVE_TIMEOUT_MS
);
544 rdsdebug("addr resolve failed for cm id %p: %d\n", ic
->i_cm_id
,
546 rdma_destroy_id(ic
->i_cm_id
);
555 * This is so careful about only cleaning up resources that were built up
556 * so that it can be called at any point during startup. In fact it
557 * can be called multiple times for a given connection.
559 void rds_ib_conn_shutdown(struct rds_connection
*conn
)
561 struct rds_ib_connection
*ic
= conn
->c_transport_data
;
564 rdsdebug("cm %p pd %p cq %p %p qp %p\n", ic
->i_cm_id
,
565 ic
->i_pd
, ic
->i_send_cq
, ic
->i_recv_cq
,
566 ic
->i_cm_id
? ic
->i_cm_id
->qp
: NULL
);
569 struct ib_device
*dev
= ic
->i_cm_id
->device
;
571 rdsdebug("disconnecting cm %p\n", ic
->i_cm_id
);
572 err
= rdma_disconnect(ic
->i_cm_id
);
574 /* Actually this may happen quite frequently, when
575 * an outgoing connect raced with an incoming connect.
577 rdsdebug("failed to disconnect, cm: %p err %d\n",
581 wait_event(rds_ib_ring_empty_wait
,
582 rds_ib_ring_empty(&ic
->i_send_ring
) &&
583 rds_ib_ring_empty(&ic
->i_recv_ring
));
586 ib_dma_free_coherent(dev
,
587 ic
->i_send_ring
.w_nr
*
588 sizeof(struct rds_header
),
590 ic
->i_send_hdrs_dma
);
593 ib_dma_free_coherent(dev
,
594 ic
->i_recv_ring
.w_nr
*
595 sizeof(struct rds_header
),
597 ic
->i_recv_hdrs_dma
);
600 ib_dma_free_coherent(dev
, sizeof(struct rds_header
),
601 ic
->i_ack
, ic
->i_ack_dma
);
604 rds_ib_send_clear_ring(ic
);
606 rds_ib_recv_clear_ring(ic
);
609 rdma_destroy_qp(ic
->i_cm_id
);
611 ib_destroy_cq(ic
->i_send_cq
);
613 ib_destroy_cq(ic
->i_recv_cq
);
614 rdma_destroy_id(ic
->i_cm_id
);
617 * Move connection back to the nodev list.
621 spin_lock_irq(&ic
->rds_ibdev
->spinlock
);
622 BUG_ON(list_empty(&ic
->ib_node
));
623 list_del(&ic
->ib_node
);
624 spin_unlock_irq(&ic
->rds_ibdev
->spinlock
);
626 spin_lock_irq(&ib_nodev_conns_lock
);
627 list_add_tail(&ic
->ib_node
, &ib_nodev_conns
);
628 spin_unlock_irq(&ib_nodev_conns_lock
);
629 ic
->rds_ibdev
= NULL
;
635 ic
->i_send_cq
= NULL
;
636 ic
->i_recv_cq
= NULL
;
637 ic
->i_send_hdrs
= NULL
;
638 ic
->i_recv_hdrs
= NULL
;
641 BUG_ON(ic
->rds_ibdev
);
643 /* Clear pending transmit */
645 rds_message_put(ic
->i_rm
);
649 /* Clear the ACK state */
650 clear_bit(IB_ACK_IN_FLIGHT
, &ic
->i_ack_flags
);
651 rds_ib_set_64bit(&ic
->i_ack_next
, 0);
654 /* Clear flow control state */
656 atomic_set(&ic
->i_credits
, 0);
658 rds_ib_ring_init(&ic
->i_send_ring
, rds_ib_sysctl_max_send_wr
);
659 rds_ib_ring_init(&ic
->i_recv_ring
, rds_ib_sysctl_max_recv_wr
);
662 rds_inc_put(&ic
->i_ibinc
->ii_inc
);
672 int rds_ib_conn_alloc(struct rds_connection
*conn
, gfp_t gfp
)
674 struct rds_ib_connection
*ic
;
678 ic
= kzalloc(sizeof(struct rds_ib_connection
), GFP_KERNEL
);
682 INIT_LIST_HEAD(&ic
->ib_node
);
683 mutex_init(&ic
->i_recv_mutex
);
686 * rds_ib_conn_shutdown() waits for these to be emptied so they
687 * must be initialized before it can be called.
689 rds_ib_ring_init(&ic
->i_send_ring
, rds_ib_sysctl_max_send_wr
);
690 rds_ib_ring_init(&ic
->i_recv_ring
, rds_ib_sysctl_max_recv_wr
);
693 conn
->c_transport_data
= ic
;
695 spin_lock_irqsave(&ib_nodev_conns_lock
, flags
);
696 list_add_tail(&ic
->ib_node
, &ib_nodev_conns
);
697 spin_unlock_irqrestore(&ib_nodev_conns_lock
, flags
);
700 rdsdebug("conn %p conn ic %p\n", conn
, conn
->c_transport_data
);
704 void rds_ib_conn_free(void *arg
)
706 struct rds_ib_connection
*ic
= arg
;
707 rdsdebug("ic %p\n", ic
);
708 list_del(&ic
->ib_node
);
714 * An error occurred on the connection
717 __rds_ib_conn_error(struct rds_connection
*conn
, const char *fmt
, ...)