From 7a6647fecc2526a898a4eac51ccab49b65175b7c Mon Sep 17 00:00:00 2001 From: isaac Date: Mon, 26 Feb 2007 19:57:57 +0000 Subject: [PATCH] b=10316,r=eeb: - fixed console chatter in case of -ETIMEDOUT. --- lnet/ChangeLog | 4 ++++ lnet/lnet/acceptor.c | 10 +++++----- 2 files changed, 9 insertions(+), 5 deletions(-) diff --git a/lnet/ChangeLog b/lnet/ChangeLog index b0a0f04..d7fcde83 100644 --- a/lnet/ChangeLog +++ b/lnet/ChangeLog @@ -14,6 +14,10 @@ TBD Cluster File Systems, Inc. * bug fixes Severity : enhancement +Bugzilla : 10316 +Description: Fixed console chatter in case of -ETIMEDOUT. + +Severity : enhancement Bugzilla : 11684 Description: Added D_NETTRACE for recording network packet history (initially only for ptllnd). Also a separate userspace diff --git a/lnet/lnet/acceptor.c b/lnet/lnet/acceptor.c index 1968f59..cf38645 100644 --- a/lnet/lnet/acceptor.c +++ b/lnet/lnet/acceptor.c @@ -81,11 +81,11 @@ lnet_connect_console_error (int rc, lnet_nid_t peer_nid, libcfs_nid2str(peer_nid), HIPQUAD(peer_ip)); break; case -ETIMEDOUT: - LCONSOLE_ERROR("Connection to %s at host %u.%u.%u.%u on " - "port %d took too long: that node may be hung " - "or experiencing high load.\n", - libcfs_nid2str(peer_nid), - HIPQUAD(peer_ip), peer_port); + CDEBUG(D_NETERROR, "Connection to %s at host %u.%u.%u.%u on " + "port %d took too long: that node may be hung " + "or experiencing high load.\n", + libcfs_nid2str(peer_nid), + HIPQUAD(peer_ip), peer_port); break; case -ECONNRESET: LCONSOLE_ERROR("Connection to %s at host %u.%u.%u.%u on " -- 1.8.3.1