diff options
author | 2022-10-21 09:30:23 +0100 | |
---|---|---|
committer | 2023-01-06 09:43:32 +0000 | |
commit | 1bab27af6b88b5c811f99de4812b5590f20d1cb7 (patch) | |
tree | 5310856eca1c21f3cae48c7b372bd7e27ce299be /net/rxrpc/sendmsg.c | |
parent | rxrpc: Offload the completion of service conn security to the I/O thread (diff) | |
download | linux-rng-1bab27af6b88b5c811f99de4812b5590f20d1cb7.tar.xz linux-rng-1bab27af6b88b5c811f99de4812b5590f20d1cb7.zip |
rxrpc: Set up a connection bundle from a call, not rxrpc_conn_parameters
Use the information now stored in struct rxrpc_call to configure the
connection bundle and thence the connection, rather than using the
rxrpc_conn_parameters struct.
Signed-off-by: David Howells <dhowells@redhat.com>
cc: Marc Dionne <marc.dionne@auristor.com>
cc: linux-afs@lists.infradead.org
Diffstat (limited to '')
-rw-r--r-- | net/rxrpc/sendmsg.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/net/rxrpc/sendmsg.c b/net/rxrpc/sendmsg.c index d67808b659f1..2a003c3a9897 100644 --- a/net/rxrpc/sendmsg.c +++ b/net/rxrpc/sendmsg.c @@ -564,7 +564,6 @@ rxrpc_new_client_call_for_sendmsg(struct rxrpc_sock *rx, struct msghdr *msg, atomic_inc_return(&rxrpc_debug_id)); /* The socket is now unlocked */ - rxrpc_put_peer(cp.peer, rxrpc_peer_put_discard_tmp); _leave(" = %p\n", call); return call; } |