mirror of
https://github.com/acidanthera/audk.git
synced 2025-07-30 00:54:06 +02:00
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;
|
Timeout = 0;
|
||||||
|
|
||||||
if (Session->State != SESSION_STATE_LOGGED_IN) {
|
if (Session->State != SESSION_STATE_LOGGED_IN) {
|
||||||
return EFI_DEVICE_ERROR;
|
Status = EFI_DEVICE_ERROR;
|
||||||
|
goto ON_EXIT;
|
||||||
}
|
}
|
||||||
|
|
||||||
Conn = NET_LIST_USER_STRUCT_S (
|
Conn = NET_LIST_USER_STRUCT_S (
|
||||||
@ -2707,7 +2708,7 @@ IScsiSessionReinstatement (
|
|||||||
EFI_STATUS Status;
|
EFI_STATUS Status;
|
||||||
|
|
||||||
Session = &Private->Session;
|
Session = &Private->Session;
|
||||||
ASSERT (Session->State == SESSION_STATE_LOGGED_IN);
|
ASSERT (Session->State != SESSION_STATE_FREE);
|
||||||
|
|
||||||
//
|
//
|
||||||
// Abort the session and re-init it.
|
// Abort the session and re-init it.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user