forked from Minki/linux
dlm: fix not reconnecting on connecting error handling
If we don't clear that bit, lowcomms_connect_sock() will not schedule another attempt, and no further attempt will be done. Signed-off-by: Marcelo Ricardo Leitner <marcelo.leitner@gmail.com> Signed-off-by: David Teigland <teigland@redhat.com>
This commit is contained in:
parent
0d737a8cfd
commit
356344c4c3
@ -1253,6 +1253,7 @@ out_err:
|
||||
con->retries, result);
|
||||
mutex_unlock(&con->sock_mutex);
|
||||
msleep(1000);
|
||||
clear_bit(CF_CONNECT_PENDING, &con->flags);
|
||||
lowcomms_connect_sock(con);
|
||||
return;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user