From 436d4ad1a318622c04dbc8d69715b2ac0af451c1 Mon Sep 17 00:00:00 2001 From: nathan Date: Wed, 20 Aug 2008 22:48:33 +0000 Subject: [PATCH] b=16408 i=ericm i=rread increase fudge for Cray --- lustre/ptlrpc/client.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lustre/ptlrpc/client.c b/lustre/ptlrpc/client.c index 05e9ad2..0fbaa9c 100644 --- a/lustre/ptlrpc/client.c +++ b/lustre/ptlrpc/client.c @@ -274,9 +274,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 %ld\n", - st, now - req->rq_sent); + if (st > now - req->rq_sent + 3 /* bz16408 */) + CWARN("Reported service time %u > total measured time %ld\n", + st, now - req->rq_sent); oldnl = at_add(&at->iat_net_latency, nl); if (oldnl != 0) -- 1.8.3.1