On 9/1/24 9:26 PM, Kiwoong Kim wrote:
Exynos host reports OCS_ABORT when a command is nullifed or cleaned up with MCQ enabled.
That is the behavior that is required by the UFSHCI 4.0 standard. Hence, handling the OCS_ABORTED response should be the same for all host controllers and no new callback function should be introduced to handle nullified commands.
I think the command in those situations should be issued again, rather than fail, because when some conditions that caused the nullification or cleaning up disppears after recovery, the command could be processed.
ufshcd_mcq_nullify_sqe() is called by ufshcd_mcq_sqe_search() and the latter function is called by ufshcd_mcq_abort(). It is up to the SCSI core to decide whether or not commands aborted by ufshcd_mcq_abort() should be resubmitted. This is not something the host driver should decide about. Thanks, Bart.