Re: [PATCH v2 4/5] mm/damon/tests/core-kunit: add test cases for multiple regions in damon_test_split_regions_of()
From: SeongJae Park
Date: Wed Dec 24 2025 - 10:31:47 EST
On Tue, 23 Dec 2025 21:34:06 -0800 SeongJae Park <sj@xxxxxxxxxx> wrote:
> On Wed, 24 Dec 2025 04:21:59 +0000 Shu Anzai <shu17az@xxxxxxxxx> wrote:
>
> > Extend damon_test_split_regions_of() to verify that it correctly handles
> > multiple regions with various 'min_sz_region'.
> >
> > Signed-off-by: Shu Anzai <shu17az@xxxxxxxxx>
> > ---
> > mm/damon/tests/core-kunit.h | 21 +++++++++++++++++++++
> > 1 file changed, 21 insertions(+)
> >
> > diff --git a/mm/damon/tests/core-kunit.h b/mm/damon/tests/core-kunit.h
> > index 2eb6f41635a8..36622a2c11f1 100644
> > --- a/mm/damon/tests/core-kunit.h
> > +++ b/mm/damon/tests/core-kunit.h
> > @@ -275,6 +275,9 @@ static void damon_test_split_regions_of(struct kunit *test)
> > {
> > struct damon_target *t;
> > struct damon_region *r;
> > + unsigned long sa[] = {0, 300, 500};
> > + unsigned long ea[] = {220, 400, 700};
> > + int i;
> >
> > t = damon_new_target();
> > if (!t)
> > @@ -301,6 +304,24 @@ static void damon_test_split_regions_of(struct kunit *test)
> > damon_split_regions_of(t, 4, 1);
> > KUNIT_EXPECT_LE(test, damon_nr_regions(t), 4u);
> > damon_free_target(t);
> > +
> > + t = damon_new_target();
> > + if (!t)
> > + kunit_skip(test, "third target alloc fail");
> > + for (i = 0; i < ARRAY_SIZE(sa); i++) {
> > + r = damon_new_region(sa[i], ea[i]);
> > + if (!r) {
> > + damon_free_target(t);
> > + kunit_skip(test, "region alloc fail");
> > + }
> > + damon_add_region(r, t);
> > + }
> > + damon_split_regions_of(t, 4, 5);
> > + KUNIT_EXPECT_LE(test, damon_nr_regions(t), 12u);
> > + damon_for_each_region(r, t) {
> > + KUNIT_EXPECT_GE(test, damon_sz_region(r) % 5ul, 0ul);
> > + }
>
> Nit. The above braces for single statement is unnecessary.
Andrew, could you please pick this series with below attaching fixup for this
one?
>
> > + damon_free_target(t);
> > }
> >
> > static void damon_test_ops_registration(struct kunit *test)
> > --
> > 2.43.0
>
> Other than the above trivial nit for the unnecessary braces,
>
> Reviewed-by: SeongJae Park <sj@xxxxxxxxxx>
>
>
> Thanks,
> SJ
Thanks,
SJ
==== >8 ====