소스 검색

Tweaked retry messages

tags/v0.9.3
Michael Brown 18 년 전
부모
커밋
8c3d09c564
1개의 변경된 파일2개의 추가작업 그리고 1개의 파일을 삭제
  1. 2
    1
      src/net/tcp/iscsi.c

+ 2
- 1
src/net/tcp/iscsi.c 파일 보기

@@ -1125,9 +1125,10 @@ static void iscsi_closed ( struct tcp_connection *conn, int status ) {
1125 1125
 
1126 1126
 	/* Retry connection if within the retry limit, otherwise fail */
1127 1127
 	if ( ++iscsi->retry_count <= ISCSI_MAX_RETRIES ) {
1128
+		DBG ( "iSCSI %p retrying connection\n", iscsi );
1128 1129
 		tcp_connect ( conn );
1129 1130
 	} else {
1130
-		printf ( "iSCSI retry count exceeded\n" );
1131
+		printf ( "iSCSI %p retry count exceeded\n", iscsi );
1131 1132
 		iscsi_done ( iscsi, status );
1132 1133
 	}
1133 1134
 }

Loading…
취소
저장