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-10-16 13:51:54 -07:00 коммит произвёл Steve French
Родитель d63cdbae60
Коммит acd4680e2b
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

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