From: robert.read Date: Tue, 28 Oct 2008 23:17:40 +0000 (+0000) Subject: Branch b1_6 X-Git-Tag: GIT_EPOCH_B_RELEASE_1_6_7~2^3~135 X-Git-Url: https://git.whamcloud.com/?a=commitdiff_plain;h=448f828a65de99ed40c5648c8b2bc562cd03db6f;p=fs%2Flustre-release.git Branch b1_6 b=17491 i=nathan i=rread Quick fix patch from behlendorf1@llnl.gov. --- diff --git a/lustre/ptlrpc/service.c b/lustre/ptlrpc/service.c index 128532e..0514398 100644 --- a/lustre/ptlrpc/service.c +++ b/lustre/ptlrpc/service.c @@ -658,7 +658,7 @@ static int ptlrpc_at_add_timed(struct ptlrpc_request *req) /* Add to sorted list. Presumably latest rpcs will have the latest deadlines, so search backward. */ list_for_each_entry_reverse(rq, &svc->srv_at_list, rq_timed_list) { - if (req->rq_deadline > rq->rq_deadline) { + if (req->rq_deadline >= rq->rq_deadline) { list_add(&req->rq_timed_list, &rq->rq_timed_list); found++; break;