From 8c3d09c564e64fe8e852b91e0054bcf9d7981155 Mon Sep 17 00:00:00 2001 From: Michael Brown Date: Tue, 5 Dec 2006 23:12:54 +0000 Subject: [PATCH] Tweaked retry messages --- src/net/tcp/iscsi.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/net/tcp/iscsi.c b/src/net/tcp/iscsi.c index 31d5a1b9..424bbcf4 100644 --- a/src/net/tcp/iscsi.c +++ b/src/net/tcp/iscsi.c @@ -1125,9 +1125,10 @@ static void iscsi_closed ( struct tcp_connection *conn, int status ) { /* Retry connection if within the retry limit, otherwise fail */ if ( ++iscsi->retry_count <= ISCSI_MAX_RETRIES ) { + DBG ( "iSCSI %p retrying connection\n", iscsi ); tcp_connect ( conn ); } else { - printf ( "iSCSI retry count exceeded\n" ); + printf ( "iSCSI %p retry count exceeded\n", iscsi ); iscsi_done ( iscsi, status ); } }