* + list-test-check-the-size-of-every-lists-for-list_cut_position.patch added to mm-nonmm-unstable branch
@ 2024-10-08 18:18 Andrew Morton
0 siblings, 0 replies; only message in thread
From: Andrew Morton @ 2024-10-08 18:18 UTC (permalink / raw)
To: mm-commits, davidgow, richard120310, akpm
The patch titled
Subject: list: test: check the size of every lists for list_cut_position*()
has been added to the -mm mm-nonmm-unstable branch. Its filename is
list-test-check-the-size-of-every-lists-for-list_cut_position.patch
This patch will shortly appear at
https://git.kernel.org/pub/scm/linux/kernel/git/akpm/25-new.git/tree/patches/list-test-check-the-size-of-every-lists-for-list_cut_position.patch
This patch will later appear in the mm-nonmm-unstable branch at
git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm
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 via the mm-everything
branch at git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm
and is updated there every 2-3 working days
------------------------------------------------------
From: I Hsin Cheng <richard120310@gmail.com>
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@gmail.com
Signed-off-by: I Hsin Cheng <richard120310@gmail.com>
Cc: David Gow <davidgow@google.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
---
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@gmail.com are
list-test-check-the-size-of-every-lists-for-list_cut_position.patch
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2024-10-08 18:18 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-10-08 18:18 + list-test-check-the-size-of-every-lists-for-list_cut_position.patch added to mm-nonmm-unstable branch Andrew Morton
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.