mirror of
https://github.com/acidanthera/audk.git
synced 2025-07-27 07:34:06 +02:00
MdeModulePkg/scsi :Coverity scan flags multiple issues in edk2-stable202205
Added changes to resolve the SCSI driver Coverity issues. Cc: Vasudevan Sambandan <vasudevans@ami.com> Cc: Sundaresan Selvaraj <sundaresans@ami.com> Signed-off-by: Sivaparvathi chellaiah <sivaparvathic@ami.com> Reviewed-by: Liming Gao <gaoliming@byosoft.com.cn>
This commit is contained in:
parent
b84f32ae5b
commit
eae9e51d98
@ -3,6 +3,8 @@
|
|||||||
Extended SCSI Pass Thru protocol in the system.
|
Extended SCSI Pass Thru protocol in the system.
|
||||||
|
|
||||||
Copyright (c) 2006 - 2019, Intel Corporation. All rights reserved.<BR>
|
Copyright (c) 2006 - 2019, Intel Corporation. All rights reserved.<BR>
|
||||||
|
Copyright (c) 1985 - 2022, American Megatrends International LLC.<BR>
|
||||||
|
|
||||||
SPDX-License-Identifier: BSD-2-Clause-Patent
|
SPDX-License-Identifier: BSD-2-Clause-Patent
|
||||||
|
|
||||||
**/
|
**/
|
||||||
@ -531,6 +533,9 @@ SCSIBusDriverBindingStart (
|
|||||||
// then create handle and install scsi i/o protocol.
|
// then create handle and install scsi i/o protocol.
|
||||||
//
|
//
|
||||||
Status = ScsiScanCreateDevice (This, Controller, &ScsiTargetId, Lun, ScsiBusDev);
|
Status = ScsiScanCreateDevice (This, Controller, &ScsiTargetId, Lun, ScsiBusDev);
|
||||||
|
if (Status == EFI_OUT_OF_RESOURCES) {
|
||||||
|
goto ErrorExit;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return EFI_SUCCESS;
|
return EFI_SUCCESS;
|
||||||
|
@ -3,6 +3,10 @@
|
|||||||
|
|
||||||
Copyright (c) 2006 - 2019, Intel Corporation. All rights reserved.<BR>
|
Copyright (c) 2006 - 2019, Intel Corporation. All rights reserved.<BR>
|
||||||
Copyright (c) 1985 - 2022, American Megatrends International LLC.<BR>
|
Copyright (c) 1985 - 2022, American Megatrends International LLC.<BR>
|
||||||
|
<<<<<<< HEAD
|
||||||
|
=======
|
||||||
|
|
||||||
|
>>>>>>> ace365b4e0 (MdeModulePkg/scsi :Coverity scan flags multiple issues in edk2-stable202205)
|
||||||
SPDX-License-Identifier: BSD-2-Clause-Patent
|
SPDX-License-Identifier: BSD-2-Clause-Patent
|
||||||
|
|
||||||
**/
|
**/
|
||||||
@ -4296,7 +4300,7 @@ BackOff:
|
|||||||
|
|
||||||
if ((TargetStatus == EFI_EXT_SCSI_STATUS_TARGET_CHECK_CONDITION) || (EFI_ERROR (ReturnStatus))) {
|
if ((TargetStatus == EFI_EXT_SCSI_STATUS_TARGET_CHECK_CONDITION) || (EFI_ERROR (ReturnStatus))) {
|
||||||
DEBUG ((DEBUG_ERROR, "ScsiDiskRead10: Check Condition happened!\n"));
|
DEBUG ((DEBUG_ERROR, "ScsiDiskRead10: Check Condition happened!\n"));
|
||||||
Status = DetectMediaParsingSenseKeys (ScsiDiskDevice, ScsiDiskDevice->SenseData, SenseDataLength / sizeof (EFI_SCSI_SENSE_DATA), &Action);
|
DetectMediaParsingSenseKeys (ScsiDiskDevice, ScsiDiskDevice->SenseData, SenseDataLength / sizeof (EFI_SCSI_SENSE_DATA), &Action);
|
||||||
if (Action == ACTION_RETRY_COMMAND_LATER) {
|
if (Action == ACTION_RETRY_COMMAND_LATER) {
|
||||||
*NeedRetry = TRUE;
|
*NeedRetry = TRUE;
|
||||||
return EFI_DEVICE_ERROR;
|
return EFI_DEVICE_ERROR;
|
||||||
@ -4420,7 +4424,7 @@ BackOff:
|
|||||||
|
|
||||||
if ((TargetStatus == EFI_EXT_SCSI_STATUS_TARGET_CHECK_CONDITION) || (EFI_ERROR (ReturnStatus))) {
|
if ((TargetStatus == EFI_EXT_SCSI_STATUS_TARGET_CHECK_CONDITION) || (EFI_ERROR (ReturnStatus))) {
|
||||||
DEBUG ((DEBUG_ERROR, "ScsiDiskWrite10: Check Condition happened!\n"));
|
DEBUG ((DEBUG_ERROR, "ScsiDiskWrite10: Check Condition happened!\n"));
|
||||||
Status = DetectMediaParsingSenseKeys (ScsiDiskDevice, ScsiDiskDevice->SenseData, SenseDataLength / sizeof (EFI_SCSI_SENSE_DATA), &Action);
|
DetectMediaParsingSenseKeys (ScsiDiskDevice, ScsiDiskDevice->SenseData, SenseDataLength / sizeof (EFI_SCSI_SENSE_DATA), &Action);
|
||||||
if (Action == ACTION_RETRY_COMMAND_LATER) {
|
if (Action == ACTION_RETRY_COMMAND_LATER) {
|
||||||
*NeedRetry = TRUE;
|
*NeedRetry = TRUE;
|
||||||
return EFI_DEVICE_ERROR;
|
return EFI_DEVICE_ERROR;
|
||||||
@ -4543,7 +4547,7 @@ BackOff:
|
|||||||
|
|
||||||
if ((TargetStatus == EFI_EXT_SCSI_STATUS_TARGET_CHECK_CONDITION) || (EFI_ERROR (ReturnStatus))) {
|
if ((TargetStatus == EFI_EXT_SCSI_STATUS_TARGET_CHECK_CONDITION) || (EFI_ERROR (ReturnStatus))) {
|
||||||
DEBUG ((DEBUG_ERROR, "ScsiDiskRead16: Check Condition happened!\n"));
|
DEBUG ((DEBUG_ERROR, "ScsiDiskRead16: Check Condition happened!\n"));
|
||||||
Status = DetectMediaParsingSenseKeys (ScsiDiskDevice, ScsiDiskDevice->SenseData, SenseDataLength / sizeof (EFI_SCSI_SENSE_DATA), &Action);
|
DetectMediaParsingSenseKeys (ScsiDiskDevice, ScsiDiskDevice->SenseData, SenseDataLength / sizeof (EFI_SCSI_SENSE_DATA), &Action);
|
||||||
if (Action == ACTION_RETRY_COMMAND_LATER) {
|
if (Action == ACTION_RETRY_COMMAND_LATER) {
|
||||||
*NeedRetry = TRUE;
|
*NeedRetry = TRUE;
|
||||||
return EFI_DEVICE_ERROR;
|
return EFI_DEVICE_ERROR;
|
||||||
@ -4667,7 +4671,7 @@ BackOff:
|
|||||||
|
|
||||||
if ((TargetStatus == EFI_EXT_SCSI_STATUS_TARGET_CHECK_CONDITION) || (EFI_ERROR (ReturnStatus))) {
|
if ((TargetStatus == EFI_EXT_SCSI_STATUS_TARGET_CHECK_CONDITION) || (EFI_ERROR (ReturnStatus))) {
|
||||||
DEBUG ((DEBUG_ERROR, "ScsiDiskWrite16: Check Condition happened!\n"));
|
DEBUG ((DEBUG_ERROR, "ScsiDiskWrite16: Check Condition happened!\n"));
|
||||||
Status = DetectMediaParsingSenseKeys (ScsiDiskDevice, ScsiDiskDevice->SenseData, SenseDataLength / sizeof (EFI_SCSI_SENSE_DATA), &Action);
|
DetectMediaParsingSenseKeys (ScsiDiskDevice, ScsiDiskDevice->SenseData, SenseDataLength / sizeof (EFI_SCSI_SENSE_DATA), &Action);
|
||||||
if (Action == ACTION_RETRY_COMMAND_LATER) {
|
if (Action == ACTION_RETRY_COMMAND_LATER) {
|
||||||
*NeedRetry = TRUE;
|
*NeedRetry = TRUE;
|
||||||
return EFI_DEVICE_ERROR;
|
return EFI_DEVICE_ERROR;
|
||||||
@ -4777,7 +4781,7 @@ ScsiDiskNotify (
|
|||||||
if (Request->TargetStatus == EFI_EXT_SCSI_STATUS_TARGET_CHECK_CONDITION) {
|
if (Request->TargetStatus == EFI_EXT_SCSI_STATUS_TARGET_CHECK_CONDITION) {
|
||||||
DEBUG ((DEBUG_ERROR, "ScsiDiskNotify: Check Condition happened!\n"));
|
DEBUG ((DEBUG_ERROR, "ScsiDiskNotify: Check Condition happened!\n"));
|
||||||
|
|
||||||
Status = DetectMediaParsingSenseKeys (
|
DetectMediaParsingSenseKeys (
|
||||||
ScsiDiskDevice,
|
ScsiDiskDevice,
|
||||||
Request->SenseData,
|
Request->SenseData,
|
||||||
Request->SenseDataLength / sizeof (EFI_SCSI_SENSE_DATA),
|
Request->SenseDataLength / sizeof (EFI_SCSI_SENSE_DATA),
|
||||||
|
Loading…
x
Reference in New Issue
Block a user