The patch titled Subject: mm/damon/vaddr: add a comment for 'default' case in damon_va_apply_scheme() has been added to the -mm mm-unstable branch. Its filename is mm-damon-vaddr-add-a-comment-for-default-case-in-damon_va_apply_scheme.patch This patch will shortly appear at https://git.kernel.org/pub/scm/linux/kernel/git/akpm/25-new.git/tree/patches/mm-damon-vaddr-add-a-comment-for-default-case-in-damon_va_apply_scheme.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: Kaixu Xia <kaixuxia@xxxxxxxxxxx> Subject: mm/damon/vaddr: add a comment for 'default' case in damon_va_apply_scheme() Date: Thu, 8 Sep 2022 11:13:17 +0800 The switch case 'DAMOS_STAT' and switch case 'default' have same return value in damon_va_apply_scheme(), and the 'default' case is for DAMOS actions that not supported by 'vaddr'. It might make sense to add a comment here. Link: https://lkml.kernel.org/r/1662606797-23534-1-git-send-email-kaixuxia@xxxxxxxxxxx Signed-off-by: Kaixu Xia <kaixuxia@xxxxxxxxxxx> Reviewed-by: SeongJae Park <sj@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- mm/damon/vaddr.c | 3 +++ 1 file changed, 3 insertions(+) --- a/mm/damon/vaddr.c~mm-damon-vaddr-add-a-comment-for-default-case-in-damon_va_apply_scheme +++ a/mm/damon/vaddr.c @@ -658,6 +658,9 @@ static unsigned long damon_va_apply_sche case DAMOS_STAT: return 0; default: + /* + * DAMOS actions that not yet supported by 'vaddr'. + */ return 0; } _ Patches currently in -mm which might be from kaixuxia@xxxxxxxxxxx are mm-damon-core-simplify-the-parameter-passing-for-region-split-operation.patch mm-damon-simplify-the-parameter-passing-for-check_accesses.patch mm-damon-vaddr-remove-comparison-between-mm-and-last_mm-when-checking-region-accesses.patch mm-damon-get-the-hotness-from-damon_hot_score-in-damon_pageout_score.patch mm-damon-sysfs-simplify-the-judgement-whether-kdamonds-are-busy.patch mm-damon-core-iterate-the-regions-list-from-current-point-in-damon_set_regions.patch mm-damon-vaddr-add-a-comment-for-default-case-in-damon_va_apply_scheme.patch