Browse Source

initiator: doing a reset here causes some drives to hang, but not doing it never hangs.

Eric Helgeson 1 year ago
parent
commit
d926dd7166
1 changed files with 2 additions and 1 deletions
  1. 2 1
      src/BlueSCSI_initiator.cpp

+ 2 - 1
src/BlueSCSI_initiator.cpp

@@ -316,7 +316,8 @@ void scsiInitiatorMainLoop()
             {
                 log("Retrying.. ", g_initiator_state.retrycount, "/5");
                 delay_with_poll(200);
-                scsiHostPhyReset();
+                // This reset causes some drives to hang and seems to have no effect if left off.
+                // scsiHostPhyReset();
                 delay_with_poll(200);
 
                 g_initiator_state.retrycount++;