mirror of
https://github.com/torvalds/linux.git
synced 2026-03-08 03:44:45 +01:00
net/rds: Clear reconnect pending bit
When canceling the reconnect worker, care must be taken to reset the reconnect-pending bit. If the reconnect worker has not yet been scheduled before it is canceled, the reconnect-pending bit will stay on forever. Signed-off-by: Håkon Bugge <haakon.bugge@oracle.com> Signed-off-by: Allison Henderson <allison.henderson@oracle.com> Link: https://patch.msgid.link/20260203055723.1085751-6-achender@kernel.org Signed-off-by: Jakub Kicinski <kuba@kernel.org>
This commit is contained in:
parent
aa0cd656f0
commit
b89fc7c252
1 changed files with 2 additions and 0 deletions
|
|
@ -442,6 +442,8 @@ void rds_conn_shutdown(struct rds_conn_path *cp)
|
|||
* to the conn hash, so we never trigger a reconnect on this
|
||||
* conn - the reconnect is always triggered by the active peer. */
|
||||
cancel_delayed_work_sync(&cp->cp_conn_w);
|
||||
|
||||
clear_bit(RDS_RECONNECT_PENDING, &cp->cp_flags);
|
||||
rcu_read_lock();
|
||||
if (!hlist_unhashed(&conn->c_hash_node)) {
|
||||
rcu_read_unlock();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue