1
0
Fork 0

cifs: smbd: Return -ECONNABORTED when trasnport is not in connected state

The transport should return this error so the upper layer will reconnect.

Signed-off-by: Long Li <longli@microsoft.com>
Cc: stable@vger.kernel.org
Signed-off-by: Steve French <stfrench@microsoft.com>
alistair/sunxi64-5.5-dsi
Long Li 2019-10-16 13:51:54 -07:00 committed by Steve French
parent d63cdbae60
commit acd4680e2b
1 changed files with 1 additions and 1 deletions

View File

@ -1972,7 +1972,7 @@ read_rfc1002_done:
if (info->transport_status != SMBD_CONNECTED) {
log_read(ERR, "disconnected\n");
return 0;
return -ECONNABORTED;
}
goto again;