mirror of
https://github.com/adulau/aha.git
synced 2024-12-29 04:06:22 +00:00
Simplify allocate_mid() slightly: Remove some unnecessary "else" branches
Simplify allocate_mid() slightly: Remove some unnecessary "else" branches Signed-off-by: Volker Lendecke <vl@samba.org> Acked-by: Jeff Layton <jlayton@redhat.com> Signed-off-by: Steve French <sfrench@us.ibm.com>
This commit is contained in:
parent
6d9c6d5431
commit
8fbbd365cc
1 changed files with 6 additions and 2 deletions
|
@ -385,10 +385,14 @@ static int allocate_mid(struct cifsSesInfo *ses, struct smb_hdr *in_buf,
|
||||||
{
|
{
|
||||||
if (ses->server->tcpStatus == CifsExiting) {
|
if (ses->server->tcpStatus == CifsExiting) {
|
||||||
return -ENOENT;
|
return -ENOENT;
|
||||||
} else if (ses->server->tcpStatus == CifsNeedReconnect) {
|
}
|
||||||
|
|
||||||
|
if (ses->server->tcpStatus == CifsNeedReconnect) {
|
||||||
cFYI(1, ("tcp session dead - return to caller to retry"));
|
cFYI(1, ("tcp session dead - return to caller to retry"));
|
||||||
return -EAGAIN;
|
return -EAGAIN;
|
||||||
} else if (ses->status != CifsGood) {
|
}
|
||||||
|
|
||||||
|
if (ses->status != CifsGood) {
|
||||||
/* check if SMB session is bad because we are setting it up */
|
/* check if SMB session is bad because we are setting it up */
|
||||||
if ((in_buf->Command != SMB_COM_SESSION_SETUP_ANDX) &&
|
if ((in_buf->Command != SMB_COM_SESSION_SETUP_ANDX) &&
|
||||||
(in_buf->Command != SMB_COM_NEGOTIATE))
|
(in_buf->Command != SMB_COM_NEGOTIATE))
|
||||||
|
|
Loading…
Reference in a new issue