lkml.org 
[lkml]   [2024]   [Apr]   [29]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
Patch in this message
/
From
Subject[PATCH 1/4] mm/damon/paddr: avoid unnecessary page level access check for pageout DAMOS action
Date
'pageout' DAMOS action implementation of 'paddr' asks reclaim_pages() to
do the page level access check. User could ask DAMOS to do the page
level access check on its own using 'young page' type DAMOS filter. In
the case, pageout DAMOS action unnecessarily asks reclaim_pages() to do
the check again. Ask the page level access check only if the scheme is
not having the filter.

Signed-off-by: SeongJae Park <sj@kernel.org>
---
mm/damon/paddr.c | 12 +++++++++++-
1 file changed, 11 insertions(+), 1 deletion(-)

diff --git a/mm/damon/paddr.c b/mm/damon/paddr.c
index 5685ba485097..d5f2f7ddf863 100644
--- a/mm/damon/paddr.c
+++ b/mm/damon/paddr.c
@@ -244,6 +244,16 @@ static unsigned long damon_pa_pageout(struct damon_region *r, struct damos *s)
{
unsigned long addr, applied;
LIST_HEAD(folio_list);
+ bool ignore_references = false;
+ struct damos_filter *filter;
+
+ /* respect user's page level reference check handling request */
+ damos_for_each_filter(filter, s) {
+ if (filter->type == DAMOS_FILTER_TYPE_YOUNG) {
+ ignore_references = true;
+ break;
+ }
+ }

for (addr = r->ar.start; addr < r->ar.end; addr += PAGE_SIZE) {
struct folio *folio = damon_get_folio(PHYS_PFN(addr));
@@ -265,7 +275,7 @@ static unsigned long damon_pa_pageout(struct damon_region *r, struct damos *s)
put_folio:
folio_put(folio);
}
- applied = reclaim_pages(&folio_list, false);
+ applied = reclaim_pages(&folio_list, ignore_references);
cond_resched();
return applied * PAGE_SIZE;
}
--
2.39.2

\
 
 \ /
  Last update: 2024-05-27 18:08    [W:0.043 / U:0.028 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site