소스 검색

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

Eric Helgeson 1 년 전
부모
커밋
d926dd7166
1개의 변경된 파일2개의 추가작업 그리고 1개의 파일을 삭제
  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++;