[USBSTOR] Do not try to retry a failed request

for all cases except receiving a USBD_STATUS_STALL_PID status.
This decision should be made by higher-level driver (and classpnp drivers do it)
This commit is contained in:
Victor Perevertkin 2019-04-10 03:22:03 +03:00
parent c7ed299aaa
commit aaa90f6986
4 changed files with 9 additions and 27 deletions

View file

@ -355,7 +355,7 @@ USBSTOR_StartIo(
return;
}
USBSTOR_HandleExecuteSCSI(IoStack->DeviceObject, Irp, 0);
USBSTOR_HandleExecuteSCSI(IoStack->DeviceObject, Irp);
// FIXME: handle error
}