diff options
author | David Howells <dhowells@redhat.com> | 2022-10-17 13:44:22 +0300 |
---|---|---|
committer | David Howells <dhowells@redhat.com> | 2023-01-31 19:38:26 +0300 |
commit | 5bbf953382bec6d3b7003e9389668c1d0863db31 (patch) | |
tree | c7e55b8e988b8db8d183cc4469483f677078b05f /net/rxrpc/call_object.c | |
parent | 84e28aa513af814807a5e9a0e5f3cab773946f3c (diff) | |
download | linux-5bbf953382bec6d3b7003e9389668c1d0863db31.tar.xz |
rxrpc: De-atomic call->ackr_window and call->ackr_nr_unacked
call->ackr_window doesn't need to be atomic as ACK generation and ACK
transmission are now done in the same thread, so drop the atomic64 handling
and split it into two separate members.
Similarly, call->ackr_nr_unacked doesn't need to be atomic now either.
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/call_object.c')
-rw-r--r-- | net/rxrpc/call_object.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/net/rxrpc/call_object.c b/net/rxrpc/call_object.c index 0012589f2aad..6eaffb0d8fdc 100644 --- a/net/rxrpc/call_object.c +++ b/net/rxrpc/call_object.c @@ -167,7 +167,8 @@ struct rxrpc_call *rxrpc_alloc_call(struct rxrpc_sock *rx, gfp_t gfp, call->tx_total_len = -1; call->next_rx_timo = 20 * HZ; call->next_req_timo = 1 * HZ; - atomic64_set(&call->ackr_window, 0x100000001ULL); + call->ackr_window = 1; + call->ackr_wtop = 1; memset(&call->sock_node, 0xed, sizeof(call->sock_node)); |