threads.c (1f9ecd7eacfd9ee52a114b87292bfe885aafdb1f) | threads.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: --- 149 unchanged lines hidden (view full) --- 158 conn, &conn->c_laddr, &conn->c_faddr, ret); 159 160 if (ret) { 161 if (rds_conn_path_transition(cp, 162 RDS_CONN_CONNECTING, 163 RDS_CONN_DOWN)) 164 rds_queue_reconnect(cp); 165 else | 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: --- 149 unchanged lines hidden (view full) --- 158 conn, &conn->c_laddr, &conn->c_faddr, ret); 159 160 if (ret) { 161 if (rds_conn_path_transition(cp, 162 RDS_CONN_CONNECTING, 163 RDS_CONN_DOWN)) 164 rds_queue_reconnect(cp); 165 else |
166 rds_conn_error(conn, "RDS: connect failed\n"); | 166 rds_conn_path_error(cp, 167 "RDS: connect failed\n"); |
167 } 168 } 169} 170 171void rds_send_worker(struct work_struct *work) 172{ 173 struct rds_conn_path *cp = container_of(work, 174 struct rds_conn_path, --- 68 unchanged lines hidden --- | 168 } 169 } 170} 171 172void rds_send_worker(struct work_struct *work) 173{ 174 struct rds_conn_path *cp = container_of(work, 175 struct rds_conn_path, --- 68 unchanged lines hidden --- |