Procházet zdrojové kódy

Tweaked retry messages

tags/v0.9.3
Michael Brown před 18 roky
rodič
revize
8c3d09c564
1 změnil soubory, kde provedl 2 přidání a 1 odebrání
  1. 2
    1
      src/net/tcp/iscsi.c

+ 2
- 1
src/net/tcp/iscsi.c Zobrazit soubor

@@ -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
 }

Načítá se…
Zrušit
Uložit