Skip to content
Snippets Groups Projects
Commit 448f828a authored by Robert Read's avatar Robert Read
Browse files

Branch b1_6

b=17491
i=nathan
i=rread

Quick fix patch from behlendorf1@llnl.gov.
parent f1e739e5
No related merge requests found
......@@ -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;
......
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