ib_cm.c (a976c2951d8f376112361830aa7762beff83a205) | ib_cm.c (ebeeb1ad9b8adcc37c2ec21a96f39e9d35199b46) |
---|---|
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: --- 103 unchanged lines hidden (view full) --- 112 } 113 } 114 115 if (conn->c_version < RDS_PROTOCOL(3, 1)) { 116 pr_notice("RDS/IB: Connection <%pI4,%pI4> version %u.%u no longer supported\n", 117 &conn->c_laddr, &conn->c_faddr, 118 RDS_PROTOCOL_MAJOR(conn->c_version), 119 RDS_PROTOCOL_MINOR(conn->c_version)); | 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: --- 103 unchanged lines hidden (view full) --- 112 } 113 } 114 115 if (conn->c_version < RDS_PROTOCOL(3, 1)) { 116 pr_notice("RDS/IB: Connection <%pI4,%pI4> version %u.%u no longer supported\n", 117 &conn->c_laddr, &conn->c_faddr, 118 RDS_PROTOCOL_MAJOR(conn->c_version), 119 RDS_PROTOCOL_MINOR(conn->c_version)); |
120 set_bit(RDS_DESTROY_PENDING, &conn->c_path[0].cp_flags); |
|
120 rds_conn_destroy(conn); 121 return; 122 } else { 123 pr_notice("RDS/IB: %s conn connected <%pI4,%pI4> version %u.%u%s\n", 124 ic->i_active_side ? "Active" : "Passive", 125 &conn->c_laddr, &conn->c_faddr, 126 RDS_PROTOCOL_MAJOR(conn->c_version), 127 RDS_PROTOCOL_MINOR(conn->c_version), --- 897 unchanged lines hidden --- | 121 rds_conn_destroy(conn); 122 return; 123 } else { 124 pr_notice("RDS/IB: %s conn connected <%pI4,%pI4> version %u.%u%s\n", 125 ic->i_active_side ? "Active" : "Passive", 126 &conn->c_laddr, &conn->c_faddr, 127 RDS_PROTOCOL_MAJOR(conn->c_version), 128 RDS_PROTOCOL_MINOR(conn->c_version), --- 897 unchanged lines hidden --- |