Эх сурвалжийг харах

[SCSI] ipr: Auto sense handling fix

Fix up a logic error in the checking for valid sense data.

Signed-off-by: Brian King <brking@us.ibm.com>
Signed-off-by: James Bottomley <James.Bottomley@SteelEye.com>
Brian King 19 жил өмнө
parent
commit
117d2ce1ce

+ 1 - 2
drivers/scsi/ipr.c

@@ -4127,8 +4127,7 @@ static int ipr_get_autosense(struct ipr_cmnd *ipr_cmd)
 {
 {
 	struct ipr_ioasa *ioasa = &ipr_cmd->ioasa;
 	struct ipr_ioasa *ioasa = &ipr_cmd->ioasa;
 
 
-	if ((be32_to_cpu(ioasa->ioasc_specific) &
-	     (IPR_ADDITIONAL_STATUS_FMT | IPR_AUTOSENSE_VALID)) == 0)
+	if ((be32_to_cpu(ioasa->ioasc_specific) & IPR_AUTOSENSE_VALID) == 0)
 		return 0;
 		return 0;
 
 
 	memcpy(ipr_cmd->scsi_cmd->sense_buffer, ioasa->auto_sense.data,
 	memcpy(ipr_cmd->scsi_cmd->sense_buffer, ioasa->auto_sense.data,