diff options
Diffstat (limited to 'block')
-rw-r--r-- | block/cfq-iosched.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/block/cfq-iosched.c b/block/cfq-iosched.c index eb4086f7dfef..8830569542c4 100644 --- a/block/cfq-iosched.c +++ b/block/cfq-iosched.c | |||
@@ -1839,6 +1839,9 @@ static bool cfq_should_idle(struct cfq_data *cfqd, struct cfq_queue *cfqq) | |||
1839 | BUG_ON(!service_tree); | 1839 | BUG_ON(!service_tree); |
1840 | BUG_ON(!service_tree->count); | 1840 | BUG_ON(!service_tree->count); |
1841 | 1841 | ||
1842 | if (!cfqd->cfq_slice_idle) | ||
1843 | return false; | ||
1844 | |||
1842 | /* We never do for idle class queues. */ | 1845 | /* We never do for idle class queues. */ |
1843 | if (prio == IDLE_WORKLOAD) | 1846 | if (prio == IDLE_WORKLOAD) |
1844 | return false; | 1847 | return false; |
@@ -1879,7 +1882,7 @@ static void cfq_arm_slice_timer(struct cfq_data *cfqd) | |||
1879 | /* | 1882 | /* |
1880 | * idle is disabled, either manually or by past process history | 1883 | * idle is disabled, either manually or by past process history |
1881 | */ | 1884 | */ |
1882 | if (!cfqd->cfq_slice_idle || !cfq_should_idle(cfqd, cfqq)) | 1885 | if (!cfq_should_idle(cfqd, cfqq)) |
1883 | return; | 1886 | return; |
1884 | 1887 | ||
1885 | /* | 1888 | /* |