]> git.ipfire.org Git - thirdparty/kernel/stable-queue.git/commitdiff
5.10-stable patches
authorGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 1 May 2026 11:11:55 +0000 (13:11 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 1 May 2026 11:11:55 +0000 (13:11 +0200)
added patches:
parisc-_llseek-syscall-is-only-available-for-32-bit-userspace.patch
selftests-mqueue-fix-incorrectly-named-file.patch

queue-5.10/parisc-_llseek-syscall-is-only-available-for-32-bit-userspace.patch [new file with mode: 0644]
queue-5.10/selftests-mqueue-fix-incorrectly-named-file.patch [new file with mode: 0644]
queue-5.10/series

diff --git a/queue-5.10/parisc-_llseek-syscall-is-only-available-for-32-bit-userspace.patch b/queue-5.10/parisc-_llseek-syscall-is-only-available-for-32-bit-userspace.patch
new file mode 100644 (file)
index 0000000..d36e6e5
--- /dev/null
@@ -0,0 +1,27 @@
+From da3680f564bd787ce974f9931e6e924d908b3b2a Mon Sep 17 00:00:00 2001
+From: Helge Deller <deller@gmx.de>
+Date: Tue, 7 Apr 2026 23:56:28 +0200
+Subject: parisc: _llseek syscall is only available for 32-bit userspace
+
+From: Helge Deller <deller@gmx.de>
+
+commit da3680f564bd787ce974f9931e6e924d908b3b2a upstream.
+
+Cc: stable@vger.kernel.org
+Signed-off-by: Helge Deller <deller@gmx.de>
+Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
+---
+ arch/parisc/kernel/syscalls/syscall.tbl |    2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+--- a/arch/parisc/kernel/syscalls/syscall.tbl
++++ b/arch/parisc/kernel/syscalls/syscall.tbl
+@@ -154,7 +154,7 @@
+ # 137 was afs_syscall
+ 138   common  setfsuid                sys_setfsuid
+ 139   common  setfsgid                sys_setfsgid
+-140   common  _llseek                 sys_llseek
++140   32      _llseek                 sys_llseek
+ 141   common  getdents                sys_getdents                    compat_sys_getdents
+ 142   common  _newselect              sys_select                      compat_sys_select
+ 143   common  flock                   sys_flock
diff --git a/queue-5.10/selftests-mqueue-fix-incorrectly-named-file.patch b/queue-5.10/selftests-mqueue-fix-incorrectly-named-file.patch
new file mode 100644 (file)
index 0000000..95a67fd
--- /dev/null
@@ -0,0 +1,41 @@
+From 64fac99037689020ad97e472ae898e96ea3616dc Mon Sep 17 00:00:00 2001
+From: Simon Liebold <simonlie@amazon.de>
+Date: Thu, 12 Mar 2026 14:02:00 +0000
+Subject: selftests/mqueue: Fix incorrectly named file
+
+From: Simon Liebold <simonlie@amazon.de>
+
+commit 64fac99037689020ad97e472ae898e96ea3616dc upstream.
+
+Commit 85506aca2eb4 ("selftests/mqueue: Set timeout to 180 seconds")
+intended to increase the timeout for mq_perf_tests from the default
+kselftest limit of 45 seconds to 180 seconds.
+
+Unfortunately, the file storing this information was incorrectly named
+`setting` instead of `settings`, causing the kselftest runner not to
+pick up the limit and keep using the default 45 seconds limit.
+
+Fix this by renaming it to `settings` to ensure that the kselftest
+runner uses the increased timeout of 180 seconds for this test.
+
+Fixes: 85506aca2eb4 ("selftests/mqueue: Set timeout to 180 seconds")
+Cc: <stable@vger.kernel.org> # 5.10.y
+Signed-off-by: Simon Liebold <simonlie@amazon.de>
+Link: https://lore.kernel.org/r/20260312140200.2224850-1-simonlie@amazon.de
+Signed-off-by: Shuah Khan <skhan@linuxfoundation.org>
+Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
+---
+ tools/testing/selftests/mqueue/{setting => settings} | 0
+ tools/testing/selftests/mqueue/setting  |    1 -
+ tools/testing/selftests/mqueue/settings |    1 +
+ 2 files changed, 1 insertion(+), 1 deletion(-)
+ rename tools/testing/selftests/mqueue/{setting => settings} (100%)
+
+--- a/tools/testing/selftests/mqueue/setting
++++ /dev/null
+@@ -1 +0,0 @@
+-timeout=180
+--- /dev/null
++++ b/tools/testing/selftests/mqueue/settings
+@@ -0,0 +1 @@
++timeout=180
index e5919d790e2d6e12dfe3738b550b29ed28188c87..e5f05aaedc5a8de29527fdd47c2ece16f7059a7c 100644 (file)
@@ -162,3 +162,5 @@ ext2-reject-inodes-with-zero-i_nlink-and-valid-mode-in-ext2_iget.patch
 alsa-aoa-i2sbus-fix-of-node-lifetime-handling.patch
 alsa-ctxfi-add-fallback-to-default-rsr-for-s-pdif.patch
 alsa-seq_oss-return-full-count-for-successful-seq_fullsize-writes.patch
+parisc-_llseek-syscall-is-only-available-for-32-bit-userspace.patch
+selftests-mqueue-fix-incorrectly-named-file.patch