Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 285129
b: refs/heads/master
c: 5d381ef
h: refs/heads/master
i:
  285127: 4781f3e
v: v3
  • Loading branch information
Jens Axboe committed Jan 15, 2012
1 parent 169697e commit 32625b2
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 13 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 6898e3bd11cc9a931ef115eee9000ac9d8f8c3cf
refs/heads/master: 5d381efb3d1f1ef10535a31ca0dd9b22fe1e1922
16 changes: 4 additions & 12 deletions trunk/block/elevator.c
Original file line number Diff line number Diff line change
Expand Up @@ -515,7 +515,6 @@ static bool elv_attempt_insert_merge(struct request_queue *q,
struct request *rq)
{
struct request *__rq;
bool ret;

if (blk_queue_nomerges(q))
return false;
Expand All @@ -529,21 +528,14 @@ static bool elv_attempt_insert_merge(struct request_queue *q,
if (blk_queue_noxmerges(q))
return false;

ret = false;
/*
* See if our hash lookup can find a potential backmerge.
*/
while (1) {
__rq = elv_rqhash_find(q, blk_rq_pos(rq));
if (!__rq || !blk_attempt_req_merge(q, __rq, rq))
break;

/* The merged request could be merged with others, try again */
ret = true;
rq = __rq;
}
__rq = elv_rqhash_find(q, blk_rq_pos(rq));
if (__rq && blk_attempt_req_merge(q, __rq, rq))
return true;

return ret;
return false;
}

void elv_merged_request(struct request_queue *q, struct request *rq, int type)
Expand Down

0 comments on commit 32625b2

Please sign in to comment.