The patch titled Subject: mm/damon/reclaim: change damon_reclaim_wmarks to static has been added to the -mm mm-unstable branch. Its filename is mm-damon-reclaim-change-damon_reclaim_wmarks-to-static.patch This patch will shortly appear at https://git.kernel.org/pub/scm/linux/kernel/git/akpm/25-new.git/tree/patches/mm-damon-reclaim-change-damon_reclaim_wmarks-to-static.patch This patch will later appear in the mm-unstable branch at git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm Before you just go and hit "reply", please: a) Consider who else should be cc'ed b) Prefer to cc a suitable mailing list as well c) Ideally: find the original patch on the mailing list and do a reply-to-all to that, adding suitable additional cc's *** Remember to use Documentation/process/submit-checklist.rst when testing your code *** The -mm tree is included into linux-next via the mm-everything branch at git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm and is updated there every 2-3 working days ------------------------------------------------------ From: Yang Yingliang <yangyingliang@xxxxxxxxxx> Subject: mm/damon/reclaim: change damon_reclaim_wmarks to static Date: Thu, 15 Sep 2022 10:10:23 +0800 damon_reclaim_wmarks is only used in reclaim.c now, change it to static. Link: https://lkml.kernel.org/r/20220915021024.4177940-1-yangyingliang@xxxxxxxxxx Fixes: 89dd02d8abd1 ("mm/damon/reclaim: use watermarks parameters generator macro") Signed-off-by: Yang Yingliang <yangyingliang@xxxxxxxxxx> Reviewed-by: SeongJae Park <sj@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- mm/damon/reclaim.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/mm/damon/reclaim.c~mm-damon-reclaim-change-damon_reclaim_wmarks-to-static +++ a/mm/damon/reclaim.c @@ -64,7 +64,7 @@ static struct damos_quota damon_reclaim_ }; DEFINE_DAMON_MODULES_DAMOS_QUOTAS(damon_reclaim_quota); -struct damos_watermarks damon_reclaim_wmarks = { +static struct damos_watermarks damon_reclaim_wmarks = { .metric = DAMOS_WMARK_FREE_MEM_RATE, .interval = 5000000, /* 5 seconds */ .high = 500, /* 50 percent */ _ Patches currently in -mm which might be from yangyingliang@xxxxxxxxxx are mm-damon-reclaim-change-damon_reclaim_wmarks-to-static.patch mm-damon-lru_sort-change-damon_lru_sort_wmarks-to-static.patch