Commit 97dfb203 authored by Mike Snitzer's avatar Mike Snitzer

dm cache policy smq: cleanup free_target_met() and clean_target_met()

Depending on the passed @idle arg, there may be no need to calculate
'nr_free' or 'nr_clean' respectively in free_target_met() and
clean_target_met().
Signed-off-by: default avatarMike Snitzer <snitzer@redhat.com>
parent ce1d64e8
...@@ -1120,28 +1120,30 @@ static bool clean_target_met(struct smq_policy *mq, bool idle) ...@@ -1120,28 +1120,30 @@ static bool clean_target_met(struct smq_policy *mq, bool idle)
* Cache entries may not be populated. So we cannot rely on the * Cache entries may not be populated. So we cannot rely on the
* size of the clean queue. * size of the clean queue.
*/ */
unsigned nr_clean = from_cblock(mq->cache_size) - q_size(&mq->dirty); unsigned nr_clean;
if (idle) if (idle) {
/* /*
* We'd like to clean everything. * We'd like to clean everything.
*/ */
return q_size(&mq->dirty) == 0u; return q_size(&mq->dirty) == 0u;
else }
return (nr_clean + btracker_nr_writebacks_queued(mq->bg_work)) >=
percent_to_target(mq, CLEAN_TARGET); nr_clean = from_cblock(mq->cache_size) - q_size(&mq->dirty);
return (nr_clean + btracker_nr_writebacks_queued(mq->bg_work)) >=
percent_to_target(mq, CLEAN_TARGET);
} }
static bool free_target_met(struct smq_policy *mq, bool idle) static bool free_target_met(struct smq_policy *mq, bool idle)
{ {
unsigned nr_free = from_cblock(mq->cache_size) - unsigned nr_free;
mq->cache_alloc.nr_allocated;
if (idle) if (!idle)
return (nr_free + btracker_nr_demotions_queued(mq->bg_work)) >=
percent_to_target(mq, FREE_TARGET);
else
return true; return true;
nr_free = from_cblock(mq->cache_size) - mq->cache_alloc.nr_allocated;
return (nr_free + btracker_nr_demotions_queued(mq->bg_work)) >=
percent_to_target(mq, FREE_TARGET);
} }
/*----------------------------------------------------------------*/ /*----------------------------------------------------------------*/
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment