Skip to content
Snippets Groups Projects
Commit 7a6647fe authored by Isaac Huang's avatar Isaac Huang
Browse files

b=10316,r=eeb:

-   fixed console chatter in case of -ETIMEDOUT.
parent 4e10baf2
No related branches found
No related tags found
No related merge requests found
...@@ -13,6 +13,10 @@ TBD Cluster File Systems, Inc. <info@clusterfs.com> ...@@ -13,6 +13,10 @@ TBD Cluster File Systems, Inc. <info@clusterfs.com>
ptllnd - Portals 3.3 / UNICOS/lc 1.5.x, 2.0.x ptllnd - Portals 3.3 / UNICOS/lc 1.5.x, 2.0.x
* bug fixes * bug fixes
Severity : enhancement
Bugzilla : 10316
Description: Fixed console chatter in case of -ETIMEDOUT.
Severity : enhancement Severity : enhancement
Bugzilla : 11684 Bugzilla : 11684
Description: Added D_NETTRACE for recording network packet history Description: Added D_NETTRACE for recording network packet history
......
...@@ -81,11 +81,11 @@ lnet_connect_console_error (int rc, lnet_nid_t peer_nid, ...@@ -81,11 +81,11 @@ lnet_connect_console_error (int rc, lnet_nid_t peer_nid,
libcfs_nid2str(peer_nid), HIPQUAD(peer_ip)); libcfs_nid2str(peer_nid), HIPQUAD(peer_ip));
break; break;
case -ETIMEDOUT: case -ETIMEDOUT:
LCONSOLE_ERROR("Connection to %s at host %u.%u.%u.%u on " CDEBUG(D_NETERROR, "Connection to %s at host %u.%u.%u.%u on "
"port %d took too long: that node may be hung " "port %d took too long: that node may be hung "
"or experiencing high load.\n", "or experiencing high load.\n",
libcfs_nid2str(peer_nid), libcfs_nid2str(peer_nid),
HIPQUAD(peer_ip), peer_port); HIPQUAD(peer_ip), peer_port);
break; break;
case -ECONNRESET: case -ECONNRESET:
LCONSOLE_ERROR("Connection to %s at host %u.%u.%u.%u on " LCONSOLE_ERROR("Connection to %s at host %u.%u.%u.%u on "
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment