mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-11 21:38:32 +08:00
libceph: drop gratuitous socket close calls in con_work
If the state is CLOSED or OPENING, we shouldn't have a socket. Signed-off-by: Sage Weil <sage@inktank.com>
This commit is contained in:
parent
a59b55a602
commit
2e8cb10063
@ -2284,15 +2284,15 @@ restart:
|
||||
dout("con_work %p STANDBY\n", con);
|
||||
goto done;
|
||||
}
|
||||
if (test_bit(CLOSED, &con->state)) { /* e.g. if we are replaced */
|
||||
dout("con_work CLOSED\n");
|
||||
con_close_socket(con);
|
||||
if (test_bit(CLOSED, &con->state)) {
|
||||
dout("con_work %p CLOSED\n", con);
|
||||
BUG_ON(con->sock);
|
||||
goto done;
|
||||
}
|
||||
if (test_and_clear_bit(OPENING, &con->state)) {
|
||||
/* reopen w/ new peer */
|
||||
dout("con_work OPENING\n");
|
||||
con_close_socket(con);
|
||||
BUG_ON(con->sock);
|
||||
}
|
||||
|
||||
ret = try_read(con);
|
||||
|
Loading…
Reference in New Issue
Block a user