From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 904CD33F6 for ; Tue, 3 May 2022 23:41:01 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 8ED7FC385A9; Tue, 3 May 2022 23:41:00 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1651621261; bh=+tezogTSV04DoRfNPTRO1bdR//3Y4tWK1IjFnVw7LlU=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=KgBnQAlcsxpLon6CBN+YbHbw7TNsR772LOJU85BHBpbn6ULL3OPFvfMTyUjR1hXjt ZGL9kC1YyNCAOR6R82CHjuwMAwnpq3RIyUh5NFO1X3PAjFImVFO4ezBcU4rnUDARPs bWAv/knGIJpwf/8er52TRA75TLdEXy67v6MtvmGlRmWKPKhQosFswaQsPC+t70FxxM yyGWd0MZ1ly8BVxl4qMWQV3/Xh8IXLl/LHAp/adtQZuMVrgopFsqtcXwIhZnKq4l+w uYutrsI62HfILf4oCoMDeugPNgFGzUHusWE/YfEdPeMQdMeWVLMGIa8MFeJ3FjOmTZ /VKXf8Ls4jGpg== From: SeongJae Park To: Liam Howlett Cc: "maple-tree@lists.infradead.org" , "linux-mm@kvack.org" , "linux-kernel@vger.kernel.org" , Andrew Morton , Yu Zhao , sj@kernel.org, damon@lists.linux.dev Subject: Re: [PATCH v8 16/70] damon: Convert __damon_va_three_regions to use the VMA iterator Date: Tue, 3 May 2022 23:40:57 +0000 Message-Id: <20220503234057.105810-1-sj@kernel.org> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220426150616.3937571-17-Liam.Howlett@oracle.com> References: Precedence: bulk X-Mailing-List: damon@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Hi Liam, Could you please add I and damon@lists.linux.dev to the recipients of this patch from next time? On Tue, 26 Apr 2022 15:06:32 +0000 Liam Howlett wrote: > From: "Liam R. Howlett" > > This rather specialised walk can use the VMA iterator. If this proves to > be too slow, we can write a custom routine to find the two largest gaps, > but it will be somewhat complicated, so let's see if we need it first. > > Update the kunit test case to use the maple tree. This also fixes an > issue with the kunit testcase not adding the last VMA to the list. > > Fixes: 17ccae8bb5c9 (mm/damon: add kunit tests) > Signed-off-by: Liam R. Howlett > Signed-off-by: Matthew Wilcox (Oracle) Reviewed-by: SeongJae Park Thanks, SJ [...]