|
@@ -1205,7 +1205,7 @@ static void arcmsr_report_sense_info(struct CommandControlBlock *ccb)
|
|
|
|
|
|
struct scsi_cmnd *pcmd = ccb->pcmd;
|
|
|
struct SENSE_DATA *sensebuffer = (struct SENSE_DATA *)pcmd->sense_buffer;
|
|
|
- pcmd->result = DID_OK << 16;
|
|
|
+ pcmd->result = (DID_OK << 16) | (CHECK_CONDITION << 1);
|
|
|
if (sensebuffer) {
|
|
|
int sense_data_length =
|
|
|
sizeof(struct SENSE_DATA) < SCSI_SENSE_BUFFERSIZE
|
|
@@ -1214,6 +1214,7 @@ static void arcmsr_report_sense_info(struct CommandControlBlock *ccb)
|
|
|
memcpy(sensebuffer, ccb->arcmsr_cdb.SenseData, sense_data_length);
|
|
|
sensebuffer->ErrorCode = SCSI_SENSE_CURRENT_ERRORS;
|
|
|
sensebuffer->Valid = 1;
|
|
|
+ pcmd->result |= (DRIVER_SENSE << 24);
|
|
|
}
|
|
|
}
|
|
|
|