The quilt patch titled Subject: mm/damon/vaddr: add a comment for 'default' case in damon_va_apply_scheme() has been removed from the -mm tree. Its filename was mm-damon-vaddr-add-a-comment-for-default-case-in-damon_va_apply_scheme.patch This patch was dropped because it was merged into the mm-stable branch of git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm ------------------------------------------------------ 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. [akpm@xxxxxxxxxxxxxxxxxxxx: fx comment grammar] 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 are not yet supported by 'vaddr'. + */ return 0; } _ Patches currently in -mm which might be from kaixuxia@xxxxxxxxxxx are