[PATCH] block: request_queue->ordcolor must not be flipped on SOFTBARRIER
q->ordcolor must not be flipped on SOFTBARRIER. Signed-off-by: Tejun Heo <htejun@gmail.com> Acked-by: Jens Axboe <axboe@suse.de> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
This commit is contained in:
parent
9a7a67af8b
commit
238e7db935
1 changed files with 2 additions and 1 deletions
|
@ -323,7 +323,8 @@ void __elv_add_request(request_queue_t *q, struct request *rq, int where,
|
|||
/*
|
||||
* toggle ordered color
|
||||
*/
|
||||
q->ordcolor ^= 1;
|
||||
if (blk_barrier_rq(rq))
|
||||
q->ordcolor ^= 1;
|
||||
|
||||
/*
|
||||
* barriers implicitly indicate back insertion
|
||||
|
|
Loading…
Reference in a new issue