diff options
author | Jens Axboe <jaxboe@fusionio.com> | 2011-03-07 03:40:21 -0500 |
---|---|---|
committer | Jens Axboe <jaxboe@fusionio.com> | 2011-03-07 03:40:21 -0500 |
commit | b873c5d692d4d5453cceed18bb06c62bb1a73ac0 (patch) | |
tree | f9d5816bc26ced37f187a141ee6c74c7b8e00fcf /block/cfq-iosched.c | |
parent | a60327107b56573c305ecc78e471dbdbb4d2f426 (diff) | |
parent | e83a46bbb1d4c03defd733a64b727632a40059ad (diff) |
Merge branch 'block-for-2.6.39-core' of ssh://master.kernel.org/pub/scm/linux/kernel/git/tj/misc into for-2.6.39/core
Diffstat (limited to 'block/cfq-iosched.c')
-rw-r--r-- | block/cfq-iosched.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/block/cfq-iosched.c b/block/cfq-iosched.c index 938ae52aa927..9697053f80bc 100644 --- a/block/cfq-iosched.c +++ b/block/cfq-iosched.c | |||
@@ -3344,7 +3344,7 @@ cfq_rq_enqueued(struct cfq_data *cfqd, struct cfq_queue *cfqq, | |||
3344 | cfqd->busy_queues > 1) { | 3344 | cfqd->busy_queues > 1) { |
3345 | cfq_del_timer(cfqd, cfqq); | 3345 | cfq_del_timer(cfqd, cfqq); |
3346 | cfq_clear_cfqq_wait_request(cfqq); | 3346 | cfq_clear_cfqq_wait_request(cfqq); |
3347 | __blk_run_queue(cfqd->queue); | 3347 | __blk_run_queue(cfqd->queue, false); |
3348 | } else { | 3348 | } else { |
3349 | cfq_blkiocg_update_idle_time_stats( | 3349 | cfq_blkiocg_update_idle_time_stats( |
3350 | &cfqq->cfqg->blkg); | 3350 | &cfqq->cfqg->blkg); |
@@ -3359,7 +3359,7 @@ cfq_rq_enqueued(struct cfq_data *cfqd, struct cfq_queue *cfqq, | |||
3359 | * this new queue is RT and the current one is BE | 3359 | * this new queue is RT and the current one is BE |
3360 | */ | 3360 | */ |
3361 | cfq_preempt_queue(cfqd, cfqq); | 3361 | cfq_preempt_queue(cfqd, cfqq); |
3362 | __blk_run_queue(cfqd->queue); | 3362 | __blk_run_queue(cfqd->queue, false); |
3363 | } | 3363 | } |
3364 | } | 3364 | } |
3365 | 3365 | ||
@@ -3719,7 +3719,7 @@ static void cfq_kick_queue(struct work_struct *work) | |||
3719 | struct request_queue *q = cfqd->queue; | 3719 | struct request_queue *q = cfqd->queue; |
3720 | 3720 | ||
3721 | spin_lock_irq(q->queue_lock); | 3721 | spin_lock_irq(q->queue_lock); |
3722 | __blk_run_queue(cfqd->queue); | 3722 | __blk_run_queue(cfqd->queue, false); |
3723 | spin_unlock_irq(q->queue_lock); | 3723 | spin_unlock_irq(q->queue_lock); |
3724 | } | 3724 | } |
3725 | 3725 | ||