diff options
| author | David Howells <dhowells@redhat.com> | 2022-10-27 11:25:55 +0100 |
|---|---|---|
| committer | David Howells <dhowells@redhat.com> | 2023-01-06 09:43:33 +0000 |
| commit | 96b4059f43ce69e9c590f77d6ce3e99888d5cfe6 (patch) | |
| tree | 6bb930f3fdf5ef78094645713d7460c898ab77c7 /net/rxrpc/rxkad.c | |
| parent | 93368b6bd58ac49d804fdc9ab041a6dc89ebf1cc (diff) | |
| download | linux-96b4059f43ce69e9c590f77d6ce3e99888d5cfe6.tar.gz linux-96b4059f43ce69e9c590f77d6ce3e99888d5cfe6.tar.bz2 linux-96b4059f43ce69e9c590f77d6ce3e99888d5cfe6.zip | |
rxrpc: Remove call->state_lock
All the setters of call->state are now in the I/O thread and thus the state
lock is now unnecessary.
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/rxkad.c')
| -rw-r--r-- | net/rxrpc/rxkad.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/rxrpc/rxkad.c b/net/rxrpc/rxkad.c index e52cb8058156..dfb01e7b90fb 100644 --- a/net/rxrpc/rxkad.c +++ b/net/rxrpc/rxkad.c @@ -1143,7 +1143,7 @@ static int rxkad_verify_response(struct rxrpc_connection *conn, call = rcu_dereference_protected( conn->channels[i].call, lockdep_is_held(&conn->bundle->channel_lock)); - if (call && call->state < RXRPC_CALL_COMPLETE) { + if (call && !__rxrpc_call_is_complete(call)) { rxrpc_abort_conn(conn, skb, RXKADSEALEDINCON, -EPROTO, rxkad_abort_resp_call_state); goto protocol_error_unlock; |
