Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 5460509e authored by DespairFactor's avatar DespairFactor Committed by Pranav Vashi
Browse files

block: set slice_idle to 0 on cfq



Credits to Cl3Kener for original commit

Signed-off-by: default avatarDennySPB <dennyspb@gmail.com>
Signed-off-by: default avatarCyber Knight <cyberknight755@gmail.com>
Signed-off-by: default avatarPranav Vashi <neobuddy89@gmail.com>
parent c5747758
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -32,7 +32,7 @@ static const int cfq_back_penalty = 2;
static const u64 cfq_slice_sync = NSEC_PER_SEC / 10;
static u64 cfq_slice_async = NSEC_PER_SEC / 25;
static const int cfq_slice_async_rq = 2;
static u64 cfq_slice_idle = NSEC_PER_SEC / 125;
static u64 cfq_slice_idle = 0;
static u64 cfq_group_idle = 1;
static const u64 cfq_target_latency = (u64)NSEC_PER_SEC * 3/10; /* 300 ms */
static const int cfq_hist_divisor = 4;