Przeglądaj źródła

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

Eric Helgeson 1 rok temu
rodzic
commit
d926dd7166
1 zmienionych plików z 2 dodań i 1 usunięć
  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++;