Skip to content

Commit 086ed23

Browse files
committed
block/cfq: set the group_idle value to zero too
* Commit 1b531b3 sets slice_idle to 0, but it also makes sense for group_idle
1 parent 2e8cd82 commit 086ed23

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

block/cfq-iosched.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ static const u64 cfq_slice_sync = NSEC_PER_SEC / 10;
3131
static u64 cfq_slice_async = NSEC_PER_SEC / 25;
3232
static const int cfq_slice_async_rq = 2;
3333
static u64 cfq_slice_idle = 0;
34-
static u64 cfq_group_idle = NSEC_PER_SEC / 125;
34+
static u64 cfq_group_idle = 0;
3535
static const u64 cfq_target_latency = (u64)NSEC_PER_SEC * 3/10; /* 300 ms */
3636
static const int cfq_hist_divisor = 4;
3737

0 commit comments

Comments
 (0)