RDS: Update rds_conn_shutdown to work with rds_conn_path
[deliverable/linux.git] / net / rds / connection.c
1 /*
2 * Copyright (c) 2006 Oracle. All rights reserved.
3 *
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:
9 *
10 * Redistribution and use in source and binary forms, with or
11 * without modification, are permitted provided that the following
12 * conditions are met:
13 *
14 * - Redistributions of source code must retain the above
15 * copyright notice, this list of conditions and the following
16 * disclaimer.
17 *
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.
22 *
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
30 * SOFTWARE.
31 *
32 */
33 #include <linux/kernel.h>
34 #include <linux/list.h>
35 #include <linux/slab.h>
36 #include <linux/export.h>
37 #include <net/inet_hashtables.h>
38
39 #include "rds_single_path.h"
40 #include "rds.h"
41 #include "loop.h"
42
43 #define RDS_CONNECTION_HASH_BITS 12
44 #define RDS_CONNECTION_HASH_ENTRIES (1 << RDS_CONNECTION_HASH_BITS)
45 #define RDS_CONNECTION_HASH_MASK (RDS_CONNECTION_HASH_ENTRIES - 1)
46
47 /* converting this to RCU is a chore for another day.. */
48 static DEFINE_SPINLOCK(rds_conn_lock);
49 static unsigned long rds_conn_count;
50 static struct hlist_head rds_conn_hash[RDS_CONNECTION_HASH_ENTRIES];
51 static struct kmem_cache *rds_conn_slab;
52
53 static struct hlist_head *rds_conn_bucket(__be32 laddr, __be32 faddr)
54 {
55 static u32 rds_hash_secret __read_mostly;
56
57 unsigned long hash;
58
59 net_get_random_once(&rds_hash_secret, sizeof(rds_hash_secret));
60
61 /* Pass NULL, don't need struct net for hash */
62 hash = __inet_ehashfn(be32_to_cpu(laddr), 0,
63 be32_to_cpu(faddr), 0,
64 rds_hash_secret);
65 return &rds_conn_hash[hash & RDS_CONNECTION_HASH_MASK];
66 }
67
68 #define rds_conn_info_set(var, test, suffix) do { \
69 if (test) \
70 var |= RDS_INFO_CONNECTION_FLAG_##suffix; \
71 } while (0)
72
73 /* rcu read lock must be held or the connection spinlock */
74 static struct rds_connection *rds_conn_lookup(struct net *net,
75 struct hlist_head *head,
76 __be32 laddr, __be32 faddr,
77 struct rds_transport *trans)
78 {
79 struct rds_connection *conn, *ret = NULL;
80
81 hlist_for_each_entry_rcu(conn, head, c_hash_node) {
82 if (conn->c_faddr == faddr && conn->c_laddr == laddr &&
83 conn->c_trans == trans && net == rds_conn_net(conn)) {
84 ret = conn;
85 break;
86 }
87 }
88 rdsdebug("returning conn %p for %pI4 -> %pI4\n", ret,
89 &laddr, &faddr);
90 return ret;
91 }
92
93 /*
94 * This is called by transports as they're bringing down a connection.
95 * It clears partial message state so that the transport can start sending
96 * and receiving over this connection again in the future. It is up to
97 * the transport to have serialized this call with its send and recv.
98 */
99 static void rds_conn_path_reset(struct rds_conn_path *cp)
100 {
101 struct rds_connection *conn = cp->cp_conn;
102
103 rdsdebug("connection %pI4 to %pI4 reset\n",
104 &conn->c_laddr, &conn->c_faddr);
105
106 rds_stats_inc(s_conn_reset);
107 rds_send_path_reset(cp);
108 cp->cp_flags = 0;
109
110 /* Do not clear next_rx_seq here, else we cannot distinguish
111 * retransmitted packets from new packets, and will hand all
112 * of them to the application. That is not consistent with the
113 * reliability guarantees of RDS. */
114 }
115
116 static void __rds_conn_path_init(struct rds_connection *conn,
117 struct rds_conn_path *cp, bool is_outgoing)
118 {
119 spin_lock_init(&cp->cp_lock);
120 cp->cp_next_tx_seq = 1;
121 init_waitqueue_head(&cp->cp_waitq);
122 INIT_LIST_HEAD(&cp->cp_send_queue);
123 INIT_LIST_HEAD(&cp->cp_retrans);
124
125 cp->cp_conn = conn;
126 atomic_set(&cp->cp_state, RDS_CONN_DOWN);
127 cp->cp_send_gen = 0;
128 /* cp_outgoing is per-path. So we can only set it here
129 * for the single-path transports.
130 */
131 if (!conn->c_trans->t_mp_capable)
132 cp->cp_outgoing = (is_outgoing ? 1 : 0);
133 cp->cp_reconnect_jiffies = 0;
134 INIT_DELAYED_WORK(&cp->cp_send_w, rds_send_worker);
135 INIT_DELAYED_WORK(&cp->cp_recv_w, rds_recv_worker);
136 INIT_DELAYED_WORK(&cp->cp_conn_w, rds_connect_worker);
137 INIT_WORK(&cp->cp_down_w, rds_shutdown_worker);
138 mutex_init(&cp->cp_cm_lock);
139 cp->cp_flags = 0;
140 }
141
142 /*
143 * There is only every one 'conn' for a given pair of addresses in the
144 * system at a time. They contain messages to be retransmitted and so
145 * span the lifetime of the actual underlying transport connections.
146 *
147 * For now they are not garbage collected once they're created. They
148 * are torn down as the module is removed, if ever.
149 */
150 static struct rds_connection *__rds_conn_create(struct net *net,
151 __be32 laddr, __be32 faddr,
152 struct rds_transport *trans, gfp_t gfp,
153 int is_outgoing)
154 {
155 struct rds_connection *conn, *parent = NULL;
156 struct hlist_head *head = rds_conn_bucket(laddr, faddr);
157 struct rds_transport *loop_trans;
158 unsigned long flags;
159 int ret;
160
161 rcu_read_lock();
162 conn = rds_conn_lookup(net, head, laddr, faddr, trans);
163 if (conn && conn->c_loopback && conn->c_trans != &rds_loop_transport &&
164 laddr == faddr && !is_outgoing) {
165 /* This is a looped back IB connection, and we're
166 * called by the code handling the incoming connect.
167 * We need a second connection object into which we
168 * can stick the other QP. */
169 parent = conn;
170 conn = parent->c_passive;
171 }
172 rcu_read_unlock();
173 if (conn)
174 goto out;
175
176 conn = kmem_cache_zalloc(rds_conn_slab, gfp);
177 if (!conn) {
178 conn = ERR_PTR(-ENOMEM);
179 goto out;
180 }
181
182 INIT_HLIST_NODE(&conn->c_hash_node);
183 conn->c_laddr = laddr;
184 conn->c_faddr = faddr;
185
186 rds_conn_net_set(conn, net);
187
188 ret = rds_cong_get_maps(conn);
189 if (ret) {
190 kmem_cache_free(rds_conn_slab, conn);
191 conn = ERR_PTR(ret);
192 goto out;
193 }
194
195 /*
196 * This is where a connection becomes loopback. If *any* RDS sockets
197 * can bind to the destination address then we'd rather the messages
198 * flow through loopback rather than either transport.
199 */
200 loop_trans = rds_trans_get_preferred(net, faddr);
201 if (loop_trans) {
202 rds_trans_put(loop_trans);
203 conn->c_loopback = 1;
204 if (is_outgoing && trans->t_prefer_loopback) {
205 /* "outgoing" connection - and the transport
206 * says it wants the connection handled by the
207 * loopback transport. This is what TCP does.
208 */
209 trans = &rds_loop_transport;
210 }
211 }
212
213 conn->c_trans = trans;
214
215 ret = trans->conn_alloc(conn, gfp);
216 if (ret) {
217 kmem_cache_free(rds_conn_slab, conn);
218 conn = ERR_PTR(ret);
219 goto out;
220 }
221
222 rdsdebug("allocated conn %p for %pI4 -> %pI4 over %s %s\n",
223 conn, &laddr, &faddr,
224 trans->t_name ? trans->t_name : "[unknown]",
225 is_outgoing ? "(outgoing)" : "");
226
227 /*
228 * Since we ran without holding the conn lock, someone could
229 * have created the same conn (either normal or passive) in the
230 * interim. We check while holding the lock. If we won, we complete
231 * init and return our conn. If we lost, we rollback and return the
232 * other one.
233 */
234 spin_lock_irqsave(&rds_conn_lock, flags);
235 if (parent) {
236 /* Creating passive conn */
237 if (parent->c_passive) {
238 trans->conn_free(conn->c_path[0].cp_transport_data);
239 kmem_cache_free(rds_conn_slab, conn);
240 conn = parent->c_passive;
241 } else {
242 parent->c_passive = conn;
243 rds_cong_add_conn(conn);
244 rds_conn_count++;
245 }
246 } else {
247 /* Creating normal conn */
248 struct rds_connection *found;
249
250 found = rds_conn_lookup(net, head, laddr, faddr, trans);
251 if (found) {
252 struct rds_conn_path *cp;
253 int i;
254
255 for (i = 0; i < RDS_MPATH_WORKERS; i++) {
256 cp = &conn->c_path[i];
257 trans->conn_free(cp->cp_transport_data);
258 if (!trans->t_mp_capable)
259 break;
260 }
261 kmem_cache_free(rds_conn_slab, conn);
262 conn = found;
263 } else {
264 int i;
265
266 for (i = 0; i < RDS_MPATH_WORKERS; i++) {
267 __rds_conn_path_init(conn, &conn->c_path[i],
268 is_outgoing);
269 conn->c_path[i].cp_index = i;
270 }
271
272 hlist_add_head_rcu(&conn->c_hash_node, head);
273 rds_cong_add_conn(conn);
274 rds_conn_count++;
275 }
276 }
277 spin_unlock_irqrestore(&rds_conn_lock, flags);
278
279 out:
280 return conn;
281 }
282
283 struct rds_connection *rds_conn_create(struct net *net,
284 __be32 laddr, __be32 faddr,
285 struct rds_transport *trans, gfp_t gfp)
286 {
287 return __rds_conn_create(net, laddr, faddr, trans, gfp, 0);
288 }
289 EXPORT_SYMBOL_GPL(rds_conn_create);
290
291 struct rds_connection *rds_conn_create_outgoing(struct net *net,
292 __be32 laddr, __be32 faddr,
293 struct rds_transport *trans, gfp_t gfp)
294 {
295 return __rds_conn_create(net, laddr, faddr, trans, gfp, 1);
296 }
297 EXPORT_SYMBOL_GPL(rds_conn_create_outgoing);
298
299 void rds_conn_shutdown(struct rds_conn_path *cp)
300 {
301 struct rds_connection *conn = cp->cp_conn;
302
303 /* shut it down unless it's down already */
304 if (!rds_conn_path_transition(cp, RDS_CONN_DOWN, RDS_CONN_DOWN)) {
305 /*
306 * Quiesce the connection mgmt handlers before we start tearing
307 * things down. We don't hold the mutex for the entire
308 * duration of the shutdown operation, else we may be
309 * deadlocking with the CM handler. Instead, the CM event
310 * handler is supposed to check for state DISCONNECTING
311 */
312 mutex_lock(&cp->cp_cm_lock);
313 if (!rds_conn_path_transition(cp, RDS_CONN_UP,
314 RDS_CONN_DISCONNECTING) &&
315 !rds_conn_path_transition(cp, RDS_CONN_ERROR,
316 RDS_CONN_DISCONNECTING)) {
317 rds_conn_path_error(cp,
318 "shutdown called in state %d\n",
319 atomic_read(&cp->cp_state));
320 mutex_unlock(&cp->cp_cm_lock);
321 return;
322 }
323 mutex_unlock(&cp->cp_cm_lock);
324
325 wait_event(cp->cp_waitq,
326 !test_bit(RDS_IN_XMIT, &cp->cp_flags));
327 wait_event(cp->cp_waitq,
328 !test_bit(RDS_RECV_REFILL, &cp->cp_flags));
329
330 if (!conn->c_trans->t_mp_capable)
331 conn->c_trans->conn_shutdown(conn);
332 else
333 conn->c_trans->conn_path_shutdown(cp);
334 rds_conn_path_reset(cp);
335
336 if (!rds_conn_path_transition(cp, RDS_CONN_DISCONNECTING,
337 RDS_CONN_DOWN)) {
338 /* This can happen - eg when we're in the middle of tearing
339 * down the connection, and someone unloads the rds module.
340 * Quite reproduceable with loopback connections.
341 * Mostly harmless.
342 */
343 rds_conn_path_error(cp, "%s: failed to transition "
344 "to state DOWN, current state "
345 "is %d\n", __func__,
346 atomic_read(&cp->cp_state));
347 return;
348 }
349 }
350
351 /* Then reconnect if it's still live.
352 * The passive side of an IB loopback connection is never added
353 * to the conn hash, so we never trigger a reconnect on this
354 * conn - the reconnect is always triggered by the active peer. */
355 cancel_delayed_work_sync(&cp->cp_conn_w);
356 rcu_read_lock();
357 if (!hlist_unhashed(&conn->c_hash_node)) {
358 rcu_read_unlock();
359 if (conn->c_trans->t_type != RDS_TRANS_TCP ||
360 cp->cp_outgoing == 1)
361 rds_queue_reconnect(cp);
362 } else {
363 rcu_read_unlock();
364 }
365 }
366
367 /*
368 * Stop and free a connection.
369 *
370 * This can only be used in very limited circumstances. It assumes that once
371 * the conn has been shutdown that no one else is referencing the connection.
372 * We can only ensure this in the rmmod path in the current code.
373 */
374 void rds_conn_destroy(struct rds_connection *conn)
375 {
376 struct rds_message *rm, *rtmp;
377 unsigned long flags;
378
379 rdsdebug("freeing conn %p for %pI4 -> "
380 "%pI4\n", conn, &conn->c_laddr,
381 &conn->c_faddr);
382
383 /* Ensure conn will not be scheduled for reconnect */
384 spin_lock_irq(&rds_conn_lock);
385 hlist_del_init_rcu(&conn->c_hash_node);
386 spin_unlock_irq(&rds_conn_lock);
387 synchronize_rcu();
388
389 /* shut the connection down */
390 rds_conn_drop(conn);
391 flush_work(&conn->c_down_w);
392
393 /* make sure lingering queued work won't try to ref the conn */
394 cancel_delayed_work_sync(&conn->c_send_w);
395 cancel_delayed_work_sync(&conn->c_recv_w);
396
397 /* tear down queued messages */
398 list_for_each_entry_safe(rm, rtmp,
399 &conn->c_send_queue,
400 m_conn_item) {
401 list_del_init(&rm->m_conn_item);
402 BUG_ON(!list_empty(&rm->m_sock_item));
403 rds_message_put(rm);
404 }
405 if (conn->c_xmit_rm)
406 rds_message_put(conn->c_xmit_rm);
407
408 conn->c_trans->conn_free(conn->c_transport_data);
409
410 /*
411 * The congestion maps aren't freed up here. They're
412 * freed by rds_cong_exit() after all the connections
413 * have been freed.
414 */
415 rds_cong_remove_conn(conn);
416
417 BUG_ON(!list_empty(&conn->c_retrans));
418 kmem_cache_free(rds_conn_slab, conn);
419
420 spin_lock_irqsave(&rds_conn_lock, flags);
421 rds_conn_count--;
422 spin_unlock_irqrestore(&rds_conn_lock, flags);
423 }
424 EXPORT_SYMBOL_GPL(rds_conn_destroy);
425
426 static void rds_conn_message_info(struct socket *sock, unsigned int len,
427 struct rds_info_iterator *iter,
428 struct rds_info_lengths *lens,
429 int want_send)
430 {
431 struct hlist_head *head;
432 struct list_head *list;
433 struct rds_connection *conn;
434 struct rds_message *rm;
435 unsigned int total = 0;
436 unsigned long flags;
437 size_t i;
438 int j;
439
440 len /= sizeof(struct rds_info_message);
441
442 rcu_read_lock();
443
444 for (i = 0, head = rds_conn_hash; i < ARRAY_SIZE(rds_conn_hash);
445 i++, head++) {
446 hlist_for_each_entry_rcu(conn, head, c_hash_node) {
447 struct rds_conn_path *cp;
448
449 for (j = 0; j < RDS_MPATH_WORKERS; j++) {
450 cp = &conn->c_path[j];
451 if (want_send)
452 list = &cp->cp_send_queue;
453 else
454 list = &cp->cp_retrans;
455
456 spin_lock_irqsave(&cp->cp_lock, flags);
457
458 /* XXX too lazy to maintain counts.. */
459 list_for_each_entry(rm, list, m_conn_item) {
460 total++;
461 if (total <= len)
462 rds_inc_info_copy(&rm->m_inc,
463 iter,
464 conn->c_laddr,
465 conn->c_faddr,
466 0);
467 }
468
469 spin_unlock_irqrestore(&cp->cp_lock, flags);
470 if (!conn->c_trans->t_mp_capable)
471 break;
472 }
473 }
474 }
475 rcu_read_unlock();
476
477 lens->nr = total;
478 lens->each = sizeof(struct rds_info_message);
479 }
480
481 static void rds_conn_message_info_send(struct socket *sock, unsigned int len,
482 struct rds_info_iterator *iter,
483 struct rds_info_lengths *lens)
484 {
485 rds_conn_message_info(sock, len, iter, lens, 1);
486 }
487
488 static void rds_conn_message_info_retrans(struct socket *sock,
489 unsigned int len,
490 struct rds_info_iterator *iter,
491 struct rds_info_lengths *lens)
492 {
493 rds_conn_message_info(sock, len, iter, lens, 0);
494 }
495
496 void rds_for_each_conn_info(struct socket *sock, unsigned int len,
497 struct rds_info_iterator *iter,
498 struct rds_info_lengths *lens,
499 int (*visitor)(struct rds_connection *, void *),
500 size_t item_len)
501 {
502 uint64_t buffer[(item_len + 7) / 8];
503 struct hlist_head *head;
504 struct rds_connection *conn;
505 size_t i;
506
507 rcu_read_lock();
508
509 lens->nr = 0;
510 lens->each = item_len;
511
512 for (i = 0, head = rds_conn_hash; i < ARRAY_SIZE(rds_conn_hash);
513 i++, head++) {
514 hlist_for_each_entry_rcu(conn, head, c_hash_node) {
515
516 /* XXX no c_lock usage.. */
517 if (!visitor(conn, buffer))
518 continue;
519
520 /* We copy as much as we can fit in the buffer,
521 * but we count all items so that the caller
522 * can resize the buffer. */
523 if (len >= item_len) {
524 rds_info_copy(iter, buffer, item_len);
525 len -= item_len;
526 }
527 lens->nr++;
528 }
529 }
530 rcu_read_unlock();
531 }
532 EXPORT_SYMBOL_GPL(rds_for_each_conn_info);
533
534 void rds_walk_conn_path_info(struct socket *sock, unsigned int len,
535 struct rds_info_iterator *iter,
536 struct rds_info_lengths *lens,
537 int (*visitor)(struct rds_conn_path *, void *),
538 size_t item_len)
539 {
540 u64 buffer[(item_len + 7) / 8];
541 struct hlist_head *head;
542 struct rds_connection *conn;
543 size_t i;
544 int j;
545
546 rcu_read_lock();
547
548 lens->nr = 0;
549 lens->each = item_len;
550
551 for (i = 0, head = rds_conn_hash; i < ARRAY_SIZE(rds_conn_hash);
552 i++, head++) {
553 hlist_for_each_entry_rcu(conn, head, c_hash_node) {
554 struct rds_conn_path *cp;
555
556 for (j = 0; j < RDS_MPATH_WORKERS; j++) {
557 cp = &conn->c_path[j];
558
559 /* XXX no cp_lock usage.. */
560 if (!visitor(cp, buffer))
561 continue;
562 if (!conn->c_trans->t_mp_capable)
563 break;
564 }
565
566 /* We copy as much as we can fit in the buffer,
567 * but we count all items so that the caller
568 * can resize the buffer.
569 */
570 if (len >= item_len) {
571 rds_info_copy(iter, buffer, item_len);
572 len -= item_len;
573 }
574 lens->nr++;
575 }
576 }
577 rcu_read_unlock();
578 }
579
580 static int rds_conn_info_visitor(struct rds_conn_path *cp, void *buffer)
581 {
582 struct rds_info_connection *cinfo = buffer;
583
584 cinfo->next_tx_seq = cp->cp_next_tx_seq;
585 cinfo->next_rx_seq = cp->cp_next_rx_seq;
586 cinfo->laddr = cp->cp_conn->c_laddr;
587 cinfo->faddr = cp->cp_conn->c_faddr;
588 strncpy(cinfo->transport, cp->cp_conn->c_trans->t_name,
589 sizeof(cinfo->transport));
590 cinfo->flags = 0;
591
592 rds_conn_info_set(cinfo->flags, test_bit(RDS_IN_XMIT, &cp->cp_flags),
593 SENDING);
594 /* XXX Future: return the state rather than these funky bits */
595 rds_conn_info_set(cinfo->flags,
596 atomic_read(&cp->cp_state) == RDS_CONN_CONNECTING,
597 CONNECTING);
598 rds_conn_info_set(cinfo->flags,
599 atomic_read(&cp->cp_state) == RDS_CONN_UP,
600 CONNECTED);
601 return 1;
602 }
603
604 static void rds_conn_info(struct socket *sock, unsigned int len,
605 struct rds_info_iterator *iter,
606 struct rds_info_lengths *lens)
607 {
608 rds_walk_conn_path_info(sock, len, iter, lens,
609 rds_conn_info_visitor,
610 sizeof(struct rds_info_connection));
611 }
612
613 int rds_conn_init(void)
614 {
615 rds_conn_slab = kmem_cache_create("rds_connection",
616 sizeof(struct rds_connection),
617 0, 0, NULL);
618 if (!rds_conn_slab)
619 return -ENOMEM;
620
621 rds_info_register_func(RDS_INFO_CONNECTIONS, rds_conn_info);
622 rds_info_register_func(RDS_INFO_SEND_MESSAGES,
623 rds_conn_message_info_send);
624 rds_info_register_func(RDS_INFO_RETRANS_MESSAGES,
625 rds_conn_message_info_retrans);
626
627 return 0;
628 }
629
630 void rds_conn_exit(void)
631 {
632 rds_loop_exit();
633
634 WARN_ON(!hlist_empty(rds_conn_hash));
635
636 kmem_cache_destroy(rds_conn_slab);
637
638 rds_info_deregister_func(RDS_INFO_CONNECTIONS, rds_conn_info);
639 rds_info_deregister_func(RDS_INFO_SEND_MESSAGES,
640 rds_conn_message_info_send);
641 rds_info_deregister_func(RDS_INFO_RETRANS_MESSAGES,
642 rds_conn_message_info_retrans);
643 }
644
645 /*
646 * Force a disconnect
647 */
648 void rds_conn_path_drop(struct rds_conn_path *cp)
649 {
650 atomic_set(&cp->cp_state, RDS_CONN_ERROR);
651 queue_work(rds_wq, &cp->cp_down_w);
652 }
653 EXPORT_SYMBOL_GPL(rds_conn_path_drop);
654
655 void rds_conn_drop(struct rds_connection *conn)
656 {
657 rds_conn_path_drop(&conn->c_path[0]);
658 }
659 EXPORT_SYMBOL_GPL(rds_conn_drop);
660
661 /*
662 * If the connection is down, trigger a connect. We may have scheduled a
663 * delayed reconnect however - in this case we should not interfere.
664 */
665 void rds_conn_path_connect_if_down(struct rds_conn_path *cp)
666 {
667 if (rds_conn_path_state(cp) == RDS_CONN_DOWN &&
668 !test_and_set_bit(RDS_RECONNECT_PENDING, &cp->cp_flags))
669 queue_delayed_work(rds_wq, &cp->cp_conn_w, 0);
670 }
671
672 void rds_conn_connect_if_down(struct rds_connection *conn)
673 {
674 WARN_ON(conn->c_trans->t_mp_capable);
675 rds_conn_path_connect_if_down(&conn->c_path[0]);
676 }
677 EXPORT_SYMBOL_GPL(rds_conn_connect_if_down);
678
679 /*
680 * An error occurred on the connection
681 */
682 void
683 __rds_conn_error(struct rds_connection *conn, const char *fmt, ...)
684 {
685 va_list ap;
686
687 va_start(ap, fmt);
688 vprintk(fmt, ap);
689 va_end(ap);
690
691 rds_conn_drop(conn);
692 }
693
694 void
695 __rds_conn_path_error(struct rds_conn_path *cp, const char *fmt, ...)
696 {
697 va_list ap;
698
699 va_start(ap, fmt);
700 vprintk(fmt, ap);
701 va_end(ap);
702
703 rds_conn_path_drop(cp);
704 }
This page took 0.061286 seconds and 6 git commands to generate.