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>
This commit is contained in:
Long Li
2019-11-25 01:14:15 -06:00
committed by Steve French
parent d63cdbae60
commit acd4680e2b
+1 -1
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;