From: nathan Date: Wed, 20 Aug 2008 23:47:35 +0000 (+0000) Subject: b=16408 X-Git-Tag: v1_7_110~75 X-Git-Url: https://git.whamcloud.com/?a=commitdiff_plain;h=b274d3d194483ab458ed965fc53fb9a55c6ca2e9;p=fs%2Flustre-release.git b=16408 i=ericm i=rread increase fudge for Cray --- diff --git a/lustre/ptlrpc/client.c b/lustre/ptlrpc/client.c index 6669227..5d13a24d 100644 --- a/lustre/ptlrpc/client.c +++ b/lustre/ptlrpc/client.c @@ -278,10 +278,9 @@ static void ptlrpc_at_adj_net_latency(struct ptlrpc_request *req) /* Network latency is total time less server processing time */ nl = max_t(int, now - req->rq_sent - st, 0) + 1/*st rounding*/; - if (st > now - req->rq_sent + 2 /* rounding */) - CERROR("Reported service time %u > total measured time " - CFS_DURATION_T"\n", - st, cfs_time_sub(now, req->rq_sent)); + if (st > now - req->rq_sent + 3 /* bz16408 */) + CWARN("Reported service time %u > total measured time " + CFS_DURATION_T"\n", st, cfs_time_sub(now, req->rq_sent)); oldnl = at_add(&at->iat_net_latency, nl); if (oldnl != 0)