* [folded-merged] selftests-prctl-introduce-tests-for-disabling-thps-completely-fix.patch removed from -mm tree
@ 2025-09-13 22:19 Andrew Morton
0 siblings, 0 replies; only message in thread
From: Andrew Morton @ 2025-09-13 22:19 UTC (permalink / raw)
To: mm-commits, ziy, vbabka, surenb, sj, shakeel.butt, ryan.roberts,
rppt, riel, npache, mhocko, lorenzo.stoakes, liam.howlett,
laoar.shao, jannh, hannes, dev.jain, david, corbet, baolin.wang,
baohua, arnd, usamaarif642, akpm
The quilt patch titled
Subject: selftests: prctl: return after executing test in child process
has been removed from the -mm tree. Its filename was
selftests-prctl-introduce-tests-for-disabling-thps-completely-fix.patch
This patch was dropped because it was folded into selftests-prctl-introduce-tests-for-disabling-thps-completely.patch
------------------------------------------------------
From: Usama Arif <usamaarif642@gmail.com>
Subject: selftests: prctl: return after executing test in child process
Date: Mon, 18 Aug 2025 11:27:04 +0100
The next step after executing the test is a wait, but there is nothing to
wait for in the child, so just return.
Link: https://lkml.kernel.org/r/2d0ea708-ecba-4021-b6ca-e93f1413d60a@gmail.com
Signed-off-by: Usama Arif <usamaarif642@gmail.com>
Cc: David Hildenbrand <david@redhat.com>
Cc: Arnd Bergmann <arnd@arndb.de>
Cc: Baolin Wang <baolin.wang@linux.alibaba.com>
Cc: Barry Song <baohua@kernel.org>
Cc: Dev Jain <dev.jain@arm.com>
Cc: Jann Horn <jannh@google.com>
Cc: Johannes Weiner <hannes@cmpxchg.org>
Cc: Jonathan Corbet <corbet@lwn.net>
Cc: Liam Howlett <liam.howlett@oracle.com>
Cc: Lorenzo Stoakes <lorenzo.stoakes@oracle.com>
Cc: Mariano Pache <npache@redhat.com>
Cc: Michal Hocko <mhocko@suse.com>
Cc: Mike Rapoport <rppt@kernel.org>
Cc: Rik van Riel <riel@surriel.com>
Cc: Ryan Roberts <ryan.roberts@arm.com>
Cc: SeongJae Park <sj@kernel.org>
Cc: Shakeel Butt <shakeel.butt@linux.dev>
Cc: Suren Baghdasaryan <surenb@google.com>
Cc: Vlastimil Babka <vbabka@suse.cz>
Cc: Yafang <laoar.shao@gmail.com>
Cc: Zi Yan <ziy@nvidia.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
---
tools/testing/selftests/mm/prctl_thp_disable.c | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
--- a/tools/testing/selftests/mm/prctl_thp_disable.c~selftests-prctl-introduce-tests-for-disabling-thps-completely-fix
+++ a/tools/testing/selftests/mm/prctl_thp_disable.c
@@ -161,8 +161,10 @@ TEST_F(prctl_thp_disable_completely, for
pid = fork();
ASSERT_GE(pid, 0);
- if (!pid)
+ if (!pid) {
prctl_thp_disable_completely_test(_metadata, self->pmdsize, variant->thp_policy);
+ return;
+ }
wait(&ret);
if (WIFEXITED(ret))
_
Patches currently in -mm which might be from usamaarif642@gmail.com are
docs-transhuge-document-process-level-thp-controls.patch
selftest-mm-extract-sz2ord-function-into-vm_utilh.patch
selftests-prctl-introduce-tests-for-disabling-thps-completely.patch
selftests-prctl-introduce-tests-for-disabling-thps-completely-fix-2.patch
selftests-prctl-introduce-tests-for-disabling-thps-except-for-madvise.patch
selftests-prctl-introduce-tests-for-disabling-thps-except-for-madvise-fix.patch
mm-huge_memory-remove-enforce_sysfs-from-__thp_vma_allowable_orders.patch
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2025-09-13 22:19 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-09-13 22:19 [folded-merged] selftests-prctl-introduce-tests-for-disabling-thps-completely-fix.patch removed from -mm tree 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.