Fine by me.
On 6/18/18, 1:13 AM, "Greg Kroah-Hartman" <gre...@linuxfoundation.org> wrote: >4.14-stable review patch. If anyone has any objections, please let me know. > >------------------ > >From: Jim Gill <jg...@vmware.com> > >[ Upstream commit f4b024271ae3e9786e5d6f1c05b01b57a74e1d6d ] > >The vmw_pvscsi driver returns DID_ABORT for commands aborted internally >by the adapter, leading to the filesystem going read-only. Change the >result to DID_BUS_BUSY, causing the kernel to retry the command. > >Signed-off-by: Jim Gill <jg...@vmware.com> >Signed-off-by: Martin K. Petersen <martin.peter...@oracle.com> >Signed-off-by: Sasha Levin <alexander.le...@microsoft.com> >Signed-off-by: Greg Kroah-Hartman <gre...@linuxfoundation.org> >--- > drivers/scsi/vmw_pvscsi.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > >--- a/drivers/scsi/vmw_pvscsi.c >+++ b/drivers/scsi/vmw_pvscsi.c >@@ -609,7 +609,7 @@ static void pvscsi_complete_request(stru > break; > > case BTSTAT_ABORTQUEUE: >- cmd->result = (DID_ABORT << 16); >+ cmd->result = (DID_BUS_BUSY << 16); > break; > > case BTSTAT_SCSIPARITY: > >