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/slab.h>
36 #include <linux/vmalloc.h>
42 * Set the selected protocol version
44 static void rds_iw_set_protocol(struct rds_connection
*conn
, unsigned int version
)
46 conn
->c_version
= version
;
52 static void rds_iw_set_flow_control(struct rds_connection
*conn
, u32 credits
)
54 struct rds_iw_connection
*ic
= conn
->c_transport_data
;
56 if (rds_iw_sysctl_flow_control
&& credits
!= 0) {
57 /* We're doing flow control */
59 rds_iw_send_add_credits(conn
, credits
);
66 * Connection established.
67 * We get here for both outgoing and incoming connection.
69 void rds_iw_cm_connect_complete(struct rds_connection
*conn
, struct rdma_cm_event
*event
)
71 const struct rds_iw_connect_private
*dp
= NULL
;
72 struct rds_iw_connection
*ic
= conn
->c_transport_data
;
73 struct rds_iw_device
*rds_iwdev
;
76 if (event
->param
.conn
.private_data_len
) {
77 dp
= event
->param
.conn
.private_data
;
79 rds_iw_set_protocol(conn
,
80 RDS_PROTOCOL(dp
->dp_protocol_major
,
81 dp
->dp_protocol_minor
));
82 rds_iw_set_flow_control(conn
, be32_to_cpu(dp
->dp_credit
));
85 /* update ib_device with this local ipaddr & conn */
86 rds_iwdev
= ib_get_client_data(ic
->i_cm_id
->device
, &rds_iw_client
);
87 err
= rds_iw_update_cm_id(rds_iwdev
, ic
->i_cm_id
);
89 printk(KERN_ERR
"rds_iw_update_ipaddr failed (%d)\n", err
);
90 rds_iw_add_conn(rds_iwdev
, conn
);
92 /* If the peer gave us the last packet it saw, process this as if
93 * we had received a regular ACK. */
94 if (dp
&& dp
->dp_ack_seq
)
95 rds_send_drop_acked(conn
, be64_to_cpu(dp
->dp_ack_seq
), NULL
);
97 printk(KERN_NOTICE
"RDS/IW: connected to %pI4<->%pI4 version %u.%u%s\n",
98 &conn
->c_laddr
, &conn
->c_faddr
,
99 RDS_PROTOCOL_MAJOR(conn
->c_version
),
100 RDS_PROTOCOL_MINOR(conn
->c_version
),
101 ic
->i_flowctl
? ", flow control" : "");
103 rds_connect_complete(conn
);
106 static void rds_iw_cm_fill_conn_param(struct rds_connection
*conn
,
107 struct rdma_conn_param
*conn_param
,
108 struct rds_iw_connect_private
*dp
,
109 u32 protocol_version
)
111 struct rds_iw_connection
*ic
= conn
->c_transport_data
;
113 memset(conn_param
, 0, sizeof(struct rdma_conn_param
));
114 /* XXX tune these? */
115 conn_param
->responder_resources
= 1;
116 conn_param
->initiator_depth
= 1;
119 memset(dp
, 0, sizeof(*dp
));
120 dp
->dp_saddr
= conn
->c_laddr
;
121 dp
->dp_daddr
= conn
->c_faddr
;
122 dp
->dp_protocol_major
= RDS_PROTOCOL_MAJOR(protocol_version
);
123 dp
->dp_protocol_minor
= RDS_PROTOCOL_MINOR(protocol_version
);
124 dp
->dp_protocol_minor_mask
= cpu_to_be16(RDS_IW_SUPPORTED_PROTOCOLS
);
125 dp
->dp_ack_seq
= rds_iw_piggyb_ack(ic
);
127 /* Advertise flow control */
129 unsigned int credits
;
131 credits
= IB_GET_POST_CREDITS(atomic_read(&ic
->i_credits
));
132 dp
->dp_credit
= cpu_to_be32(credits
);
133 atomic_sub(IB_SET_POST_CREDITS(credits
), &ic
->i_credits
);
136 conn_param
->private_data
= dp
;
137 conn_param
->private_data_len
= sizeof(*dp
);
141 static void rds_iw_cq_event_handler(struct ib_event
*event
, void *data
)
143 rdsdebug("event %u data %p\n", event
->event
, data
);
146 static void rds_iw_qp_event_handler(struct ib_event
*event
, void *data
)
148 struct rds_connection
*conn
= data
;
149 struct rds_iw_connection
*ic
= conn
->c_transport_data
;
151 rdsdebug("conn %p ic %p event %u\n", conn
, ic
, event
->event
);
153 switch (event
->event
) {
154 case IB_EVENT_COMM_EST
:
155 rdma_notify(ic
->i_cm_id
, IB_EVENT_COMM_EST
);
157 case IB_EVENT_QP_REQ_ERR
:
158 case IB_EVENT_QP_FATAL
:
160 rdsdebug("Fatal QP Event %u "
161 "- connection %pI4->%pI4, reconnecting\n",
162 event
->event
, &conn
->c_laddr
,
172 static int rds_iw_init_qp_attrs(struct ib_qp_init_attr
*attr
,
173 struct rds_iw_device
*rds_iwdev
,
174 struct rds_iw_work_ring
*send_ring
,
175 void (*send_cq_handler
)(struct ib_cq
*, void *),
176 struct rds_iw_work_ring
*recv_ring
,
177 void (*recv_cq_handler
)(struct ib_cq
*, void *),
180 struct ib_device
*dev
= rds_iwdev
->dev
;
181 unsigned int send_size
, recv_size
;
184 /* The offset of 1 is to accomodate the additional ACK WR. */
185 send_size
= min_t(unsigned int, rds_iwdev
->max_wrs
, rds_iw_sysctl_max_send_wr
+ 1);
186 recv_size
= min_t(unsigned int, rds_iwdev
->max_wrs
, rds_iw_sysctl_max_recv_wr
+ 1);
187 rds_iw_ring_resize(send_ring
, send_size
- 1);
188 rds_iw_ring_resize(recv_ring
, recv_size
- 1);
190 memset(attr
, 0, sizeof(*attr
));
191 attr
->event_handler
= rds_iw_qp_event_handler
;
192 attr
->qp_context
= context
;
193 attr
->cap
.max_send_wr
= send_size
;
194 attr
->cap
.max_recv_wr
= recv_size
;
195 attr
->cap
.max_send_sge
= rds_iwdev
->max_sge
;
196 attr
->cap
.max_recv_sge
= RDS_IW_RECV_SGE
;
197 attr
->sq_sig_type
= IB_SIGNAL_REQ_WR
;
198 attr
->qp_type
= IB_QPT_RC
;
200 attr
->send_cq
= ib_create_cq(dev
, send_cq_handler
,
201 rds_iw_cq_event_handler
,
202 context
, send_size
, 0);
203 if (IS_ERR(attr
->send_cq
)) {
204 ret
= PTR_ERR(attr
->send_cq
);
205 attr
->send_cq
= NULL
;
206 rdsdebug("ib_create_cq send failed: %d\n", ret
);
210 attr
->recv_cq
= ib_create_cq(dev
, recv_cq_handler
,
211 rds_iw_cq_event_handler
,
212 context
, recv_size
, 0);
213 if (IS_ERR(attr
->recv_cq
)) {
214 ret
= PTR_ERR(attr
->recv_cq
);
215 attr
->recv_cq
= NULL
;
216 rdsdebug("ib_create_cq send failed: %d\n", ret
);
220 ret
= ib_req_notify_cq(attr
->send_cq
, IB_CQ_NEXT_COMP
);
222 rdsdebug("ib_req_notify_cq send failed: %d\n", ret
);
226 ret
= ib_req_notify_cq(attr
->recv_cq
, IB_CQ_SOLICITED
);
228 rdsdebug("ib_req_notify_cq recv failed: %d\n", ret
);
235 ib_destroy_cq(attr
->send_cq
);
237 ib_destroy_cq(attr
->recv_cq
);
243 * This needs to be very careful to not leave IS_ERR pointers around for
244 * cleanup to trip over.
246 static int rds_iw_setup_qp(struct rds_connection
*conn
)
248 struct rds_iw_connection
*ic
= conn
->c_transport_data
;
249 struct ib_device
*dev
= ic
->i_cm_id
->device
;
250 struct ib_qp_init_attr attr
;
251 struct rds_iw_device
*rds_iwdev
;
254 /* rds_iw_add_one creates a rds_iw_device object per IB device,
255 * and allocates a protection domain, memory range and MR pool
256 * for each. If that fails for any reason, it will not register
257 * the rds_iwdev at all.
259 rds_iwdev
= ib_get_client_data(dev
, &rds_iw_client
);
261 if (printk_ratelimit())
262 printk(KERN_NOTICE
"RDS/IW: No client_data for device %s\n",
267 /* Protection domain and memory range */
268 ic
->i_pd
= rds_iwdev
->pd
;
269 ic
->i_mr
= rds_iwdev
->mr
;
271 ret
= rds_iw_init_qp_attrs(&attr
, rds_iwdev
,
272 &ic
->i_send_ring
, rds_iw_send_cq_comp_handler
,
273 &ic
->i_recv_ring
, rds_iw_recv_cq_comp_handler
,
278 ic
->i_send_cq
= attr
.send_cq
;
279 ic
->i_recv_cq
= attr
.recv_cq
;
282 * XXX this can fail if max_*_wr is too large? Are we supposed
283 * to back off until we get a value that the hardware can support?
285 ret
= rdma_create_qp(ic
->i_cm_id
, ic
->i_pd
, &attr
);
287 rdsdebug("rdma_create_qp failed: %d\n", ret
);
291 ic
->i_send_hdrs
= ib_dma_alloc_coherent(dev
,
292 ic
->i_send_ring
.w_nr
*
293 sizeof(struct rds_header
),
294 &ic
->i_send_hdrs_dma
, GFP_KERNEL
);
295 if (!ic
->i_send_hdrs
) {
297 rdsdebug("ib_dma_alloc_coherent send failed\n");
301 ic
->i_recv_hdrs
= ib_dma_alloc_coherent(dev
,
302 ic
->i_recv_ring
.w_nr
*
303 sizeof(struct rds_header
),
304 &ic
->i_recv_hdrs_dma
, GFP_KERNEL
);
305 if (!ic
->i_recv_hdrs
) {
307 rdsdebug("ib_dma_alloc_coherent recv failed\n");
311 ic
->i_ack
= ib_dma_alloc_coherent(dev
, sizeof(struct rds_header
),
312 &ic
->i_ack_dma
, GFP_KERNEL
);
315 rdsdebug("ib_dma_alloc_coherent ack failed\n");
319 ic
->i_sends
= vmalloc(ic
->i_send_ring
.w_nr
* sizeof(struct rds_iw_send_work
));
322 rdsdebug("send allocation failed\n");
325 rds_iw_send_init_ring(ic
);
327 ic
->i_recvs
= vmalloc(ic
->i_recv_ring
.w_nr
* sizeof(struct rds_iw_recv_work
));
330 rdsdebug("recv allocation failed\n");
334 rds_iw_recv_init_ring(ic
);
335 rds_iw_recv_init_ack(ic
);
337 /* Post receive buffers - as a side effect, this will update
338 * the posted credit count. */
339 rds_iw_recv_refill(conn
, GFP_KERNEL
, GFP_HIGHUSER
, 1);
341 rdsdebug("conn %p pd %p mr %p cq %p %p\n", conn
, ic
->i_pd
, ic
->i_mr
,
342 ic
->i_send_cq
, ic
->i_recv_cq
);
348 static u32
rds_iw_protocol_compatible(const struct rds_iw_connect_private
*dp
)
353 /* rdma_cm private data is odd - when there is any private data in the
354 * request, we will be given a pretty large buffer without telling us the
355 * original size. The only way to tell the difference is by looking at
356 * the contents, which are initialized to zero.
357 * If the protocol version fields aren't set, this is a connection attempt
358 * from an older version. This could could be 3.0 or 2.0 - we can't tell.
359 * We really should have changed this for OFED 1.3 :-( */
360 if (dp
->dp_protocol_major
== 0)
361 return RDS_PROTOCOL_3_0
;
363 common
= be16_to_cpu(dp
->dp_protocol_minor_mask
) & RDS_IW_SUPPORTED_PROTOCOLS
;
364 if (dp
->dp_protocol_major
== 3 && common
) {
365 version
= RDS_PROTOCOL_3_0
;
366 while ((common
>>= 1) != 0)
368 } else if (printk_ratelimit()) {
369 printk(KERN_NOTICE
"RDS: Connection from %pI4 using "
370 "incompatible protocol version %u.%u\n",
372 dp
->dp_protocol_major
,
373 dp
->dp_protocol_minor
);
378 int rds_iw_cm_handle_connect(struct rdma_cm_id
*cm_id
,
379 struct rdma_cm_event
*event
)
381 const struct rds_iw_connect_private
*dp
= event
->param
.conn
.private_data
;
382 struct rds_iw_connect_private dp_rep
;
383 struct rds_connection
*conn
= NULL
;
384 struct rds_iw_connection
*ic
= NULL
;
385 struct rdma_conn_param conn_param
;
386 struct rds_iw_device
*rds_iwdev
;
388 int err
, destroy
= 1;
390 /* Check whether the remote protocol version matches ours. */
391 version
= rds_iw_protocol_compatible(dp
);
395 rdsdebug("saddr %pI4 daddr %pI4 RDSv%u.%u\n",
396 &dp
->dp_saddr
, &dp
->dp_daddr
,
397 RDS_PROTOCOL_MAJOR(version
), RDS_PROTOCOL_MINOR(version
));
399 conn
= rds_conn_create(dp
->dp_daddr
, dp
->dp_saddr
, &rds_iw_transport
,
402 rdsdebug("rds_conn_create failed (%ld)\n", PTR_ERR(conn
));
408 * The connection request may occur while the
409 * previous connection exist, e.g. in case of failover.
410 * But as connections may be initiated simultaneously
411 * by both hosts, we have a random backoff mechanism -
412 * see the comment above rds_queue_reconnect()
414 mutex_lock(&conn
->c_cm_lock
);
415 if (!rds_conn_transition(conn
, RDS_CONN_DOWN
, RDS_CONN_CONNECTING
)) {
416 if (rds_conn_state(conn
) == RDS_CONN_UP
) {
417 rdsdebug("incoming connect while connecting\n");
419 rds_iw_stats_inc(s_iw_listen_closed_stale
);
421 if (rds_conn_state(conn
) == RDS_CONN_CONNECTING
) {
422 /* Wait and see - our connect may still be succeeding */
423 rds_iw_stats_inc(s_iw_connect_raced
);
425 mutex_unlock(&conn
->c_cm_lock
);
429 ic
= conn
->c_transport_data
;
431 rds_iw_set_protocol(conn
, version
);
432 rds_iw_set_flow_control(conn
, be32_to_cpu(dp
->dp_credit
));
434 /* If the peer gave us the last packet it saw, process this as if
435 * we had received a regular ACK. */
437 rds_send_drop_acked(conn
, be64_to_cpu(dp
->dp_ack_seq
), NULL
);
439 BUG_ON(cm_id
->context
);
443 cm_id
->context
= conn
;
445 rds_iwdev
= ib_get_client_data(cm_id
->device
, &rds_iw_client
);
446 ic
->i_dma_local_lkey
= rds_iwdev
->dma_local_lkey
;
448 /* We got halfway through setting up the ib_connection, if we
449 * fail now, we have to take the long route out of this mess. */
452 err
= rds_iw_setup_qp(conn
);
454 rds_iw_conn_error(conn
, "rds_iw_setup_qp failed (%d)\n", err
);
455 mutex_unlock(&conn
->c_cm_lock
);
459 rds_iw_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_iw_conn_error(conn
, "rdma_accept failed (%d)\n", err
);
472 rdma_reject(cm_id
, NULL
, 0);
477 int rds_iw_cm_initiate_connect(struct rdma_cm_id
*cm_id
)
479 struct rds_connection
*conn
= cm_id
->context
;
480 struct rds_iw_connection
*ic
= conn
->c_transport_data
;
481 struct rdma_conn_param conn_param
;
482 struct rds_iw_connect_private dp
;
485 /* If the peer doesn't do protocol negotiation, we must
486 * default to RDSv3.0 */
487 rds_iw_set_protocol(conn
, RDS_PROTOCOL_3_0
);
488 ic
->i_flowctl
= rds_iw_sysctl_flow_control
; /* advertise flow control */
490 ret
= rds_iw_setup_qp(conn
);
492 rds_iw_conn_error(conn
, "rds_iw_setup_qp failed (%d)\n", ret
);
496 rds_iw_cm_fill_conn_param(conn
, &conn_param
, &dp
, RDS_PROTOCOL_VERSION
);
498 ret
= rdma_connect(cm_id
, &conn_param
);
500 rds_iw_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 struct rds_iw_connection
*ic
= conn
->c_transport_data
;
509 if (ic
->i_cm_id
== cm_id
)
515 int rds_iw_conn_connect(struct rds_connection
*conn
)
517 struct rds_iw_connection
*ic
= conn
->c_transport_data
;
518 struct rds_iw_device
*rds_iwdev
;
519 struct sockaddr_in src
, dest
;
522 /* XXX I wonder what affect the port space has */
523 /* delegate cm event handler to rdma_transport */
524 ic
->i_cm_id
= rdma_create_id(rds_rdma_cm_event_handler
, conn
,
526 if (IS_ERR(ic
->i_cm_id
)) {
527 ret
= PTR_ERR(ic
->i_cm_id
);
529 rdsdebug("rdma_create_id() failed: %d\n", ret
);
533 rdsdebug("created cm id %p for conn %p\n", ic
->i_cm_id
, conn
);
535 src
.sin_family
= AF_INET
;
536 src
.sin_addr
.s_addr
= (__force u32
)conn
->c_laddr
;
537 src
.sin_port
= (__force u16
)htons(0);
539 /* First, bind to the local address and device. */
540 ret
= rdma_bind_addr(ic
->i_cm_id
, (struct sockaddr
*) &src
);
542 rdsdebug("rdma_bind_addr(%pI4) failed: %d\n",
543 &conn
->c_laddr
, ret
);
544 rdma_destroy_id(ic
->i_cm_id
);
549 rds_iwdev
= ib_get_client_data(ic
->i_cm_id
->device
, &rds_iw_client
);
550 ic
->i_dma_local_lkey
= rds_iwdev
->dma_local_lkey
;
552 dest
.sin_family
= AF_INET
;
553 dest
.sin_addr
.s_addr
= (__force u32
)conn
->c_faddr
;
554 dest
.sin_port
= (__force u16
)htons(RDS_PORT
);
556 ret
= rdma_resolve_addr(ic
->i_cm_id
, (struct sockaddr
*)&src
,
557 (struct sockaddr
*)&dest
,
558 RDS_RDMA_RESOLVE_TIMEOUT_MS
);
560 rdsdebug("addr resolve failed for cm id %p: %d\n", ic
->i_cm_id
,
562 rdma_destroy_id(ic
->i_cm_id
);
571 * This is so careful about only cleaning up resources that were built up
572 * so that it can be called at any point during startup. In fact it
573 * can be called multiple times for a given connection.
575 void rds_iw_conn_shutdown(struct rds_connection
*conn
)
577 struct rds_iw_connection
*ic
= conn
->c_transport_data
;
579 struct ib_qp_attr qp_attr
;
581 rdsdebug("cm %p pd %p cq %p %p qp %p\n", ic
->i_cm_id
,
582 ic
->i_pd
, ic
->i_send_cq
, ic
->i_recv_cq
,
583 ic
->i_cm_id
? ic
->i_cm_id
->qp
: NULL
);
586 struct ib_device
*dev
= ic
->i_cm_id
->device
;
588 rdsdebug("disconnecting cm %p\n", ic
->i_cm_id
);
589 err
= rdma_disconnect(ic
->i_cm_id
);
591 /* Actually this may happen quite frequently, when
592 * an outgoing connect raced with an incoming connect.
594 rdsdebug("rds_iw_conn_shutdown: failed to disconnect,"
595 " cm: %p err %d\n", ic
->i_cm_id
, err
);
598 if (ic
->i_cm_id
->qp
) {
599 qp_attr
.qp_state
= IB_QPS_ERR
;
600 ib_modify_qp(ic
->i_cm_id
->qp
, &qp_attr
, IB_QP_STATE
);
603 wait_event(rds_iw_ring_empty_wait
,
604 rds_iw_ring_empty(&ic
->i_send_ring
) &&
605 rds_iw_ring_empty(&ic
->i_recv_ring
));
608 ib_dma_free_coherent(dev
,
609 ic
->i_send_ring
.w_nr
*
610 sizeof(struct rds_header
),
612 ic
->i_send_hdrs_dma
);
615 ib_dma_free_coherent(dev
,
616 ic
->i_recv_ring
.w_nr
*
617 sizeof(struct rds_header
),
619 ic
->i_recv_hdrs_dma
);
622 ib_dma_free_coherent(dev
, sizeof(struct rds_header
),
623 ic
->i_ack
, ic
->i_ack_dma
);
626 rds_iw_send_clear_ring(ic
);
628 rds_iw_recv_clear_ring(ic
);
631 rdma_destroy_qp(ic
->i_cm_id
);
633 ib_destroy_cq(ic
->i_send_cq
);
635 ib_destroy_cq(ic
->i_recv_cq
);
638 * If associated with an rds_iw_device:
639 * Move connection back to the nodev list.
640 * Remove cm_id from the device cm_id list.
643 rds_iw_remove_conn(ic
->rds_iwdev
, conn
);
645 rdma_destroy_id(ic
->i_cm_id
);
650 ic
->i_send_cq
= NULL
;
651 ic
->i_recv_cq
= NULL
;
652 ic
->i_send_hdrs
= NULL
;
653 ic
->i_recv_hdrs
= NULL
;
656 BUG_ON(ic
->rds_iwdev
);
658 /* Clear pending transmit */
660 rds_message_put(ic
->i_rm
);
664 /* Clear the ACK state */
665 clear_bit(IB_ACK_IN_FLIGHT
, &ic
->i_ack_flags
);
666 #ifdef KERNEL_HAS_ATOMIC64
667 atomic64_set(&ic
->i_ack_next
, 0);
673 /* Clear flow control state */
675 atomic_set(&ic
->i_credits
, 0);
677 rds_iw_ring_init(&ic
->i_send_ring
, rds_iw_sysctl_max_send_wr
);
678 rds_iw_ring_init(&ic
->i_recv_ring
, rds_iw_sysctl_max_recv_wr
);
681 rds_inc_put(&ic
->i_iwinc
->ii_inc
);
689 rdsdebug("shutdown complete\n");
692 int rds_iw_conn_alloc(struct rds_connection
*conn
, gfp_t gfp
)
694 struct rds_iw_connection
*ic
;
698 ic
= kzalloc(sizeof(struct rds_iw_connection
), GFP_KERNEL
);
702 INIT_LIST_HEAD(&ic
->iw_node
);
703 tasklet_init(&ic
->i_recv_tasklet
, rds_iw_recv_tasklet_fn
,
705 mutex_init(&ic
->i_recv_mutex
);
706 #ifndef KERNEL_HAS_ATOMIC64
707 spin_lock_init(&ic
->i_ack_lock
);
711 * rds_iw_conn_shutdown() waits for these to be emptied so they
712 * must be initialized before it can be called.
714 rds_iw_ring_init(&ic
->i_send_ring
, rds_iw_sysctl_max_send_wr
);
715 rds_iw_ring_init(&ic
->i_recv_ring
, rds_iw_sysctl_max_recv_wr
);
718 conn
->c_transport_data
= ic
;
720 spin_lock_irqsave(&iw_nodev_conns_lock
, flags
);
721 list_add_tail(&ic
->iw_node
, &iw_nodev_conns
);
722 spin_unlock_irqrestore(&iw_nodev_conns_lock
, flags
);
725 rdsdebug("conn %p conn ic %p\n", conn
, conn
->c_transport_data
);
730 * Free a connection. Connection must be shut down and not set for reconnect.
732 void rds_iw_conn_free(void *arg
)
734 struct rds_iw_connection
*ic
= arg
;
735 spinlock_t
*lock_ptr
;
737 rdsdebug("ic %p\n", ic
);
740 * Conn is either on a dev's list or on the nodev list.
741 * A race with shutdown() or connect() would cause problems
742 * (since rds_iwdev would change) but that should never happen.
744 lock_ptr
= ic
->rds_iwdev
? &ic
->rds_iwdev
->spinlock
: &iw_nodev_conns_lock
;
746 spin_lock_irq(lock_ptr
);
747 list_del(&ic
->iw_node
);
748 spin_unlock_irq(lock_ptr
);
754 * An error occurred on the connection
757 __rds_iw_conn_error(struct rds_connection
*conn
, const char *fmt
, ...)