connection.c (992c9ec5fe1d0c7859e158ee22f293cbee95c6a3) connection.c (fb1b3dc43dabd4bf7b57b3d63fd2875a499c81f0)
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:

--- 641 unchanged lines hidden (view full) ---

650 va_list ap;
651
652 va_start(ap, fmt);
653 vprintk(fmt, ap);
654 va_end(ap);
655
656 rds_conn_drop(conn);
657}
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:

--- 641 unchanged lines hidden (view full) ---

650 va_list ap;
651
652 va_start(ap, fmt);
653 vprintk(fmt, ap);
654 va_end(ap);
655
656 rds_conn_drop(conn);
657}
658
659void
660__rds_conn_path_error(struct rds_conn_path *cp, const char *fmt, ...)
661{
662 va_list ap;
663
664 va_start(ap, fmt);
665 vprintk(fmt, ap);
666 va_end(ap);
667
668 rds_conn_path_drop(cp);
669}