dm cache policy smq: be more aggressive about triggering a writeback
If there are no clean entries to demote we really want to writeback immediately. Signed-off-by: Joe Thornber <ejt@redhat.com> Signed-off-by: Mike Snitzer <snitzer@redhat.com>
This commit is contained in:
parent
a8cd1eba61
commit
78c45607b9
|
@ -1192,7 +1192,7 @@ static void queue_demotion(struct smq_policy *mq)
|
||||||
|
|
||||||
e = q_peek(&mq->clean, mq->clean.nr_levels / 2, true);
|
e = q_peek(&mq->clean, mq->clean.nr_levels / 2, true);
|
||||||
if (!e) {
|
if (!e) {
|
||||||
if (!clean_target_met(mq, false))
|
if (!clean_target_met(mq, true))
|
||||||
queue_writeback(mq);
|
queue_writeback(mq);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue