MdeModulePkg ScsiDiskDxe: Fix hang issue when reconnecting an ISCSI device

The 'Reset' function for BlockIO(2) in ScsiDiskDxe should return
EFI_SUCCESS instead of EFI_DEVICE_ERROR when a device does not support
reset feature.

Otherwise, a 'reconnect -r' action when an ISCSI device is attached will
cause system hang.

Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Hao Wu <hao.a.wu@intel.com>
Reviewed-by: Feng Tian <feng.tian@intel.com>
This commit is contained in:
Hao Wu 2016-03-07 13:59:18 +08:00
parent 111d79db47
commit ef95212963
1 changed files with 13 additions and 5 deletions

View File

@ -1,7 +1,7 @@
/** @file
SCSI disk driver that layers on every SCSI IO protocol in the system.
Copyright (c) 2006 - 2015, Intel Corporation. All rights reserved.<BR>
Copyright (c) 2006 - 2016, Intel Corporation. All rights reserved.<BR>
This program and the accompanying materials
are licensed and made available under the terms and conditions of the BSD License
which accompanies this distribution. The full text of the license may be found at
@ -466,8 +466,12 @@ ScsiDiskReset (
Status = ScsiDiskDevice->ScsiIo->ResetDevice (ScsiDiskDevice->ScsiIo);
if (EFI_ERROR (Status)) {
Status = EFI_DEVICE_ERROR;
goto Done;
if (Status == EFI_UNSUPPORTED) {
Status = EFI_SUCCESS;
} else {
Status = EFI_DEVICE_ERROR;
goto Done;
}
}
if (!ExtendedVerification) {
@ -790,8 +794,12 @@ ScsiDiskResetEx (
Status = ScsiDiskDevice->ScsiIo->ResetDevice (ScsiDiskDevice->ScsiIo);
if (EFI_ERROR (Status)) {
Status = EFI_DEVICE_ERROR;
goto Done;
if (Status == EFI_UNSUPPORTED) {
Status = EFI_SUCCESS;
} else {
Status = EFI_DEVICE_ERROR;
goto Done;
}
}
if (!ExtendedVerification) {