The quilt patch titled Subject: list: test: check the size of every lists for list_cut_position*() has been removed from the -mm tree. Its filename was list-test-check-the-size-of-every-lists-for-list_cut_position.patch This patch was dropped because it was merged into the mm-nonmm-stable branch of git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm ------------------------------------------------------ From: I Hsin Cheng <richard120310@xxxxxxxxx> Subject: list: test: check the size of every lists for list_cut_position*() Date: Tue, 8 Oct 2024 14:52:53 +0800 Check the total number of elements in both resultant lists are correct within list_cut_position*(). Previously, only the first list's size was checked. so additional elements in the second list would not have been caught. Link: https://lkml.kernel.org/r/20241008065253.26673-1-richard120310@xxxxxxxxx Signed-off-by: I Hsin Cheng <richard120310@xxxxxxxxx> Cc: David Gow <davidgow@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- lib/list-test.c | 4 ++++ 1 file changed, 4 insertions(+) --- a/lib/list-test.c~list-test-check-the-size-of-every-lists-for-list_cut_position +++ a/lib/list-test.c @@ -412,6 +412,8 @@ static void list_test_list_cut_position( KUNIT_EXPECT_PTR_EQ(test, cur, &entries[i]); i++; } + + KUNIT_EXPECT_EQ(test, i, 3); } static void list_test_list_cut_before(struct kunit *test) @@ -440,6 +442,8 @@ static void list_test_list_cut_before(st KUNIT_EXPECT_PTR_EQ(test, cur, &entries[i]); i++; } + + KUNIT_EXPECT_EQ(test, i, 3); } static void list_test_list_splice(struct kunit *test) _ Patches currently in -mm which might be from richard120310@xxxxxxxxx are