Fix an issue that execute "map -r" in UEFI shell cannot reinstate iSCSI session with Microsoft iSCSI target after unplug/plug network cable.

Signed-off-by: Ye Ting  <ting.ye@intel.com>
Reviewed-by: Fu Siyuan <siyuan.fu@intel.com>

git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@14781 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
Ye Ting 2013-10-18 02:43:34 +00:00 committed by tye1
parent f3a86f7392
commit e8b1fb2e60
1 changed files with 3 additions and 2 deletions

View File

@ -2851,7 +2851,8 @@ IScsiExecuteScsiCommand (
Timeout = 0;
if (Session->State != SESSION_STATE_LOGGED_IN) {
return EFI_DEVICE_ERROR;
Status = EFI_DEVICE_ERROR;
goto ON_EXIT;
}
Conn = NET_LIST_USER_STRUCT_S (
@ -3025,7 +3026,7 @@ IScsiSessionReinstatement (
{
EFI_STATUS Status;
ASSERT (Session->State == SESSION_STATE_LOGGED_IN);
ASSERT (Session->State != SESSION_STATE_FREE);
//
// Abort the session and re-init it.