From 0e9bb718ce231ffd73fe11810d8dc1d3902e4b2d Mon Sep 17 00:00:00 2001 From: Andrew Deason Date: Wed, 26 Feb 2014 11:42:16 -0600 Subject: [PATCH] viced: Restore some previous log message language Before commit 6c41b1f740e16b5b9adfe9026630595be6f0699e, we logged these three messages in the fileserver in different situations: CallPreamble: Couldn't get client. CallPreamble: Couldn't get CPS. Fail CallPreamble: couldn't reconnect to ptserver After commits 6c41b1f740e16b5b9adfe9026630595be6f0699e and 0a5e878aa0a71c4dfaef1806744ed78bcc13b9f4, these messages were changed to contain more useful information, but the language was also changed. The messages now look like: Client host too busy while handling request from host %s:%d viceid %d fid %lu.%lu.%lu, failing request Cannot get CPS for client while handling request [...], failing request Cannot reconnect to ptserver while handling request [...], failing request While the new messages are more informative, and (in my opinion) better describe what is happening in those situations, they do look very different from the old messages. This can break scripts that try to parse these logs, but in general it is also not clear to administrators that these messages still refer to the same events. So instead, put these messages back the way they were. Still include the extra information, of course, but revert the language to look more like the old messages. Now we log: CallPreamble: Couldn't get client while handling request from host %s:%d viceid %d fid %lu.%lu.%lu, failing request CallPreamble: Couldn't get CPS while handling request [...], failing request CallPreamble: couldn't reconnect to ptserver while handling request [...], failing request Thanks to Ben Kaduk for bringing this up. Change-Id: Ie2389fb598640d79f0f0725c3161c7af7924ffb4 Reviewed-on: http://gerrit.openafs.org/10857 Reviewed-by: Benjamin Kaduk Reviewed-by: Andrew Deason Tested-by: D Brashear Reviewed-by: D Brashear --- src/viced/afsfileprocs.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/viced/afsfileprocs.c b/src/viced/afsfileprocs.c index bfaac8ddc..76e7ff1ad 100644 --- a/src/viced/afsfileprocs.c +++ b/src/viced/afsfileprocs.c @@ -372,7 +372,7 @@ CallPreamble(struct rx_call *acall, int activecall, struct AFSFid *Fid, tclient = h_FindClient_r(*tconn, &viceid); if (!tclient) { H_UNLOCK; - LogClientError("Client host too busy", *tconn, viceid, Fid); + LogClientError("CallPreamble: Couldn't get client", *tconn, viceid, Fid); return VBUSY; } thost = tclient->host; @@ -381,7 +381,7 @@ CallPreamble(struct rx_call *acall, int activecall, struct AFSFid *Fid, h_ReleaseClient_r(tclient); h_Release_r(thost); H_UNLOCK; - LogClientError("Cannot get CPS for client", *tconn, viceid, Fid); + LogClientError("CallPreamble: Couldn't get CPS", *tconn, viceid, Fid); return -1001; } retry_flag = 0; /* Retry once */ @@ -408,7 +408,7 @@ CallPreamble(struct rx_call *acall, int activecall, struct AFSFid *Fid, h_ReleaseClient_r(tclient); h_Release_r(thost); H_UNLOCK; - LogClientError("Cannot reconnect to ptserver", *tconn, viceid, Fid); + LogClientError("CallPreamble: couldn't reconnect to ptserver", *tconn, viceid, Fid); return -1001; } -- 2.39.5