On Thu, Oct 31, 2019 at 6:12 AM Deepak Ukey <deepak.ukey@xxxxxxxxxxxxx> wrote: > > From: peter chang <dpf@xxxxxxxxxx> > > Driver was missing complete() call in mpi_sata_completion which > result in SATA abort error handling is timing out. That causes the > device to be left in the in_recovery state so subsequent commands > sent to the device fail and the OS removes access to it. > > Signed-off-by: peter chang <dpf@xxxxxxxxxx> > Signed-off-by: Deepak Ukey <deepak.ukey@xxxxxxxxxxxxx> > Signed-off-by: Viswas G <Viswas.G@xxxxxxxxxxxxx> Thanks for the patch, it looks good. But the commit message doesn't explain the second part of the change, I suggest to split it to 2 patches. Thanks > --- > drivers/scsi/pm8001/pm80xx_hwi.c | 6 +++++- > 1 file changed, 5 insertions(+), 1 deletion(-) > > diff --git a/drivers/scsi/pm8001/pm80xx_hwi.c b/drivers/scsi/pm8001/pm80xx_hwi.c > index 73261902d75d..ee9c187d8caa 100644 > --- a/drivers/scsi/pm8001/pm80xx_hwi.c > +++ b/drivers/scsi/pm8001/pm80xx_hwi.c > @@ -2382,6 +2382,8 @@ mpi_sata_completion(struct pm8001_hba_info *pm8001_ha, void *piomb) > pm8001_printk("task 0x%p done with io_status 0x%x" > " resp 0x%x stat 0x%x but aborted by upper layer!\n", > t, status, ts->resp, ts->stat)); > + if (t->slow_task) > + complete(&t->slow_task->completion); > pm8001_ccb_task_free(pm8001_ha, t, ccb, tag); > } else { > spin_unlock_irqrestore(&t->task_state_lock, flags); > @@ -3130,8 +3132,10 @@ static int mpi_phy_start_resp(struct pm8001_hba_info *pm8001_ha, void *piomb) > if (status == 0) { > phy->phy_state = PHY_LINK_DOWN; > if (pm8001_ha->flags == PM8001F_RUN_TIME && > - phy->enable_completion != NULL) > + phy->enable_completion != NULL) { > complete(phy->enable_completion); > + phy->enable_completion = NULL; > + } > } > return 0; > > -- > 2.16.3 >