diff options
author | David Howells <dhowells@redhat.com> | 2018-09-27 16:13:09 +0200 |
---|---|---|
committer | David Howells <dhowells@redhat.com> | 2018-09-28 11:33:17 +0200 |
commit | f334430316e7fd37c4821ebec627e27714bb5d76 (patch) | |
tree | a8e7fb558d409f5a36ba8104975272ed91b5ab9a /net/rxrpc/conn_client.c | |
parent | rxrpc: Fix transport sockopts to get IPv4 errors on an IPv6 socket (diff) | |
download | linux-f334430316e7fd37c4821ebec627e27714bb5d76.tar.xz linux-f334430316e7fd37c4821ebec627e27714bb5d76.zip |
rxrpc: Fix error distribution
Fix error distribution by immediately delivering the errors to all the
affected calls rather than deferring them to a worker thread. The problem
with the latter is that retries and things can happen in the meantime when we
want to stop that sooner.
To this end:
(1) Stop the error distributor from removing calls from the error_targets
list so that peer->lock isn't needed to synchronise against other adds
and removals.
(2) Require the peer's error_targets list to be accessed with RCU, thereby
avoiding the need to take peer->lock over distribution.
(3) Don't attempt to affect a call's state if it is already marked complete.
Signed-off-by: David Howells <dhowells@redhat.com>
Diffstat (limited to 'net/rxrpc/conn_client.c')
-rw-r--r-- | net/rxrpc/conn_client.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/rxrpc/conn_client.c b/net/rxrpc/conn_client.c index f8f37188a932..8acf74fe24c0 100644 --- a/net/rxrpc/conn_client.c +++ b/net/rxrpc/conn_client.c @@ -710,8 +710,8 @@ int rxrpc_connect_call(struct rxrpc_call *call, } spin_lock_bh(&call->conn->params.peer->lock); - hlist_add_head(&call->error_link, - &call->conn->params.peer->error_targets); + hlist_add_head_rcu(&call->error_link, + &call->conn->params.peer->error_targets); spin_unlock_bh(&call->conn->params.peer->lock); out: |