diff options
author | David Howells <dhowells@redhat.com> | 2022-10-08 15:33:50 +0200 |
---|---|---|
committer | David Howells <dhowells@redhat.com> | 2023-01-06 10:43:31 +0100 |
commit | 30df927b936b2ef21eb07dce9c141c7897609643 (patch) | |
tree | d937030e969b0659b87a67139660577ab5d66896 /net/rxrpc/io_thread.c | |
parent | rxrpc: Make the local endpoint hold a ref on a connected call (diff) | |
download | linux-30df927b936b2ef21eb07dce9c141c7897609643.tar.xz linux-30df927b936b2ef21eb07dce9c141c7897609643.zip |
rxrpc: Separate call retransmission from other conn events
Call the rxrpc_conn_retransmit_call() directly from rxrpc_input_packet()
rather than calling it via connection event handling.
Signed-off-by: David Howells <dhowells@redhat.com>
cc: Marc Dionne <marc.dionne@auristor.com>
cc: linux-afs@lists.infradead.org
Diffstat (limited to 'net/rxrpc/io_thread.c')
-rw-r--r-- | net/rxrpc/io_thread.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/rxrpc/io_thread.c b/net/rxrpc/io_thread.c index 1ad067d66fb6..0e1a548d35f8 100644 --- a/net/rxrpc/io_thread.c +++ b/net/rxrpc/io_thread.c @@ -358,7 +358,7 @@ static int rxrpc_input_packet_on_conn(struct rxrpc_connection *conn, sp->hdr.seq, sp->hdr.serial, sp->hdr.flags); - rxrpc_input_conn_packet(conn, skb); + rxrpc_conn_retransmit_call(conn, skb, channel); return 0; } |