RxRPC: Don't attempt to reuse aborted connections
Connections that have seen a connection-level abort should not be reused as the far end will just abort them again; instead a new connection should be made. Connection-level aborts occur due to such things as authentication failures. Signed-off-by: David Howells <dhowells@redhat.com> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
committed by
Linus Torvalds
parent
0dd5198672
commit
519d25679e
@@ -444,6 +444,11 @@ int rxrpc_connect_call(struct rxrpc_sock *rx,
|
||||
conn = list_entry(bundle->avail_conns.next,
|
||||
struct rxrpc_connection,
|
||||
bundle_link);
|
||||
if (conn->state >= RXRPC_CONN_REMOTELY_ABORTED) {
|
||||
list_del_init(&conn->bundle_link);
|
||||
bundle->num_conns--;
|
||||
continue;
|
||||
}
|
||||
if (--conn->avail_calls == 0)
|
||||
list_move(&conn->bundle_link,
|
||||
&bundle->busy_conns);
|
||||
@@ -461,6 +466,11 @@ int rxrpc_connect_call(struct rxrpc_sock *rx,
|
||||
conn = list_entry(bundle->unused_conns.next,
|
||||
struct rxrpc_connection,
|
||||
bundle_link);
|
||||
if (conn->state >= RXRPC_CONN_REMOTELY_ABORTED) {
|
||||
list_del_init(&conn->bundle_link);
|
||||
bundle->num_conns--;
|
||||
continue;
|
||||
}
|
||||
ASSERTCMP(conn->avail_calls, ==, RXRPC_MAXCALLS);
|
||||
conn->avail_calls = RXRPC_MAXCALLS - 1;
|
||||
ASSERT(conn->channels[0] == NULL &&
|
||||
|
Reference in New Issue
Block a user