cfq-iosched: never allow an async queue idling
We don't enable it by default, don't let it get enabled during runtime. Signed-off-by: Jens Axboe <jens.axboe@oracle.com>
This commit is contained in:
parent
20e493a8d0
commit
1be92f2fc7
@ -1603,7 +1603,12 @@ static void
|
|||||||
cfq_update_idle_window(struct cfq_data *cfqd, struct cfq_queue *cfqq,
|
cfq_update_idle_window(struct cfq_data *cfqd, struct cfq_queue *cfqq,
|
||||||
struct cfq_io_context *cic)
|
struct cfq_io_context *cic)
|
||||||
{
|
{
|
||||||
int enable_idle = cfq_cfqq_idle_window(cfqq);
|
int enable_idle;
|
||||||
|
|
||||||
|
if (!cfq_cfqq_sync(cfqq))
|
||||||
|
return;
|
||||||
|
|
||||||
|
enable_idle = cfq_cfqq_idle_window(cfqq);
|
||||||
|
|
||||||
if (!cic->ioc->task || !cfqd->cfq_slice_idle ||
|
if (!cic->ioc->task || !cfqd->cfq_slice_idle ||
|
||||||
(cfqd->hw_tag && CIC_SEEKY(cic)))
|
(cfqd->hw_tag && CIC_SEEKY(cic)))
|
||||||
|
Loading…
Reference in New Issue
Block a user