mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-26 12:30:54 +07:00
[SCSI] scsi dh alua: handle report luns data changed in check sense callout
When we switch controllers the Intel Multi-Flex reports REPORTED_LUNS_DATA_HAS_CHANGED. This patch just has us retry the command. Signed-off-by: Ilgu Hong <ilgu.hong@promise.com> Signed-off-by: Mike Christie <michaelc@cs.wisc.edu> Signed-off-by: James Bottomley <James.Bottomley@HansenPartnership.com>
This commit is contained in:
parent
49baef0a5d
commit
4d086f6baf
@ -461,6 +461,15 @@ static int alua_check_sense(struct scsi_device *sdev,
|
|||||||
*/
|
*/
|
||||||
return ADD_TO_MLQUEUE;
|
return ADD_TO_MLQUEUE;
|
||||||
}
|
}
|
||||||
|
if (sense_hdr->asc == 0x3f && sense_hdr->ascq == 0x0e) {
|
||||||
|
/*
|
||||||
|
* REPORTED_LUNS_DATA_HAS_CHANGED is reported
|
||||||
|
* when switching controllers on targets like
|
||||||
|
* Intel Multi-Flex. We can just retry.
|
||||||
|
*/
|
||||||
|
return ADD_TO_MLQUEUE;
|
||||||
|
}
|
||||||
|
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user