* [merged] selftests-filesystems-assume-that-tiocgptpeer-is-defined.patch removed from -mm tree
@ 2026-03-02 18:31 Andrew Morton
0 siblings, 0 replies; only message in thread
From: Andrew Morton @ 2026-03-02 18:31 UTC (permalink / raw)
To: mm-commits, shuah, brauner, broonie, akpm
The quilt patch titled
Subject: selftests/filesystems: assume that TIOCGPTPEER is defined
has been removed from the -mm tree. Its filename was
selftests-filesystems-assume-that-tiocgptpeer-is-defined.patch
This patch was dropped because it was merged into mainline or a subsystem tree
------------------------------------------------------
From: Mark Brown <broonie@kernel.org>
Subject: selftests/filesystems: assume that TIOCGPTPEER is defined
Date: Fri, 27 Feb 2026 15:20:35 +0000
The devpts_pts selftest has an ifdef in case an architecture does not
define TIOCGPTPEER, but the handling for this is broken since we need
errno to be set to EINVAL in order to skip the test as we should. Given
that this ioctl() has been defined since v4.15 we may as well just assume
it's there rather than write handling code which will probably never get
used.
Link: https://lkml.kernel.org/r/20260227-selftests-filesystems-devpts-tiocgptpeer-v3-1-07db4d85d5aa@kernel.org
Signed-off-by: Mark Brown <broonie@kernel.org>
Cc: Christian Brauner <brauner@kernel.org>
Cc: Shuah Khan <shuah@kernel.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
---
tools/testing/selftests/filesystems/devpts_pts.c | 2 --
1 file changed, 2 deletions(-)
--- a/tools/testing/selftests/filesystems/devpts_pts.c~selftests-filesystems-assume-that-tiocgptpeer-is-defined
+++ a/tools/testing/selftests/filesystems/devpts_pts.c
@@ -119,9 +119,7 @@ static int do_tiocgptpeer(char *ptmx, ch
goto do_cleanup;
}
-#ifdef TIOCGPTPEER
slave = ioctl(master, TIOCGPTPEER, O_RDWR | O_NOCTTY | O_CLOEXEC);
-#endif
if (slave < 0) {
if (errno == EINVAL) {
fprintf(stderr, "TIOCGPTPEER is not supported. "
_
Patches currently in -mm which might be from broonie@kernel.org are
selftests-fchmodat2-clean-up-temporary-files-and-directories.patch
selftests-fchmodat2-use-ksft_finished.patch
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2026-03-02 18:31 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-03-02 18:31 [merged] selftests-filesystems-assume-that-tiocgptpeer-is-defined.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.