Commit b6993be2 authored by Kefeng Wang's avatar Kefeng Wang Committed by Andrew Morton

mm/damon/paddr: minor refactor of damon_pa_mark_accessed_or_deactivate()

Omit one line by unified folio_put(), and make code more clear.

Link: https://lkml.kernel.org/r/20230308083311.120951-3-wangkefeng.wang@huawei.comSigned-off-by: default avatarKefeng Wang <wangkefeng.wang@huawei.com>
Reviewed-by: default avatarSeongJae Park <sj@kernel.org>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
parent dd411433
...@@ -268,16 +268,15 @@ static inline unsigned long damon_pa_mark_accessed_or_deactivate( ...@@ -268,16 +268,15 @@ static inline unsigned long damon_pa_mark_accessed_or_deactivate(
if (!folio) if (!folio)
continue; continue;
if (damos_pa_filter_out(s, folio)) { if (damos_pa_filter_out(s, folio))
folio_put(folio); goto put_folio;
continue;
}
if (mark_accessed) if (mark_accessed)
folio_mark_accessed(folio); folio_mark_accessed(folio);
else else
folio_deactivate(folio); folio_deactivate(folio);
applied += folio_nr_pages(folio); applied += folio_nr_pages(folio);
put_folio:
folio_put(folio); folio_put(folio);
} }
return applied * PAGE_SIZE; return applied * PAGE_SIZE;
......
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