mirror of https://github.com/acidanthera/audk.git
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@14782 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
e8b1fb2e60
commit
80e864fc47
|
@ -2535,7 +2535,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 (
|
||||
|
@ -2707,7 +2708,7 @@ IScsiSessionReinstatement (
|
|||
EFI_STATUS Status;
|
||||
|
||||
Session = &Private->Session;
|
||||
ASSERT (Session->State == SESSION_STATE_LOGGED_IN);
|
||||
ASSERT (Session->State != SESSION_STATE_FREE);
|
||||
|
||||
//
|
||||
// Abort the session and re-init it.
|
||||
|
|
Loading…
Reference in New Issue