The patch titled Subject: mm/damon: remove unnecessary variable initialization has been added to the -mm tree. Its filename is mm-damon-remove-unnecessary-variable-initialization.patch This patch should soon appear at https://ozlabs.org/~akpm/mmots/broken-out/mm-damon-remove-unnecessary-variable-initialization.patch and later at https://ozlabs.org/~akpm/mmotm/broken-out/mm-damon-remove-unnecessary-variable-initialization.patch 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 and is updated there every 3-4 working days ------------------------------------------------------ From: Xin Hao <xhao@xxxxxxxxxxxxxxxxx> Subject: mm/damon: remove unnecessary variable initialization Patch series "mm/damon: Fix some small bugs", v4. This patch (of 2): In 'damon_va_apply_three_regions', There is no need to set variable 'i' as 0 Link: https://lkml.kernel.org/r/b7df8d3dad0943a37e01f60c441b1968b2b20354.1634720326.git.xhao@xxxxxxxxxxxxxxxxx Link: https://lkml.kernel.org/r/cover.1634720326.git.xhao@xxxxxxxxxxxxxxxxx Signed-off-by: Xin Hao <xhao@xxxxxxxxxxxxxxxxx> Reviewed-by: SeongJae Park <sj@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- mm/damon/vaddr.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/mm/damon/vaddr.c~mm-damon-remove-unnecessary-variable-initialization +++ a/mm/damon/vaddr.c @@ -306,7 +306,7 @@ static void damon_va_apply_three_regions struct damon_addr_range bregions[3]) { struct damon_region *r, *next; - unsigned int i = 0; + unsigned int i; /* Remove regions which are not in the three big regions now */ damon_for_each_region_safe(r, next, t) { _ Patches currently in -mm which might be from xhao@xxxxxxxxxxxxxxxxx are mm-damon-remove-unnecessary-variable-initialization.patch mm-damon-dbgfs-add-adaptive_targets-list-check-before-enable-monitor_on.patch