From: Greg Kroah-Hartman Date: Fri, 1 May 2026 11:11:55 +0000 (+0200) Subject: 5.10-stable patches X-Git-Tag: v6.12.86~64 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=53ee5e678703f8fef66f91f480bb9a68974038eb;p=thirdparty%2Fkernel%2Fstable-queue.git 5.10-stable patches added patches: parisc-_llseek-syscall-is-only-available-for-32-bit-userspace.patch selftests-mqueue-fix-incorrectly-named-file.patch --- 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 index 0000000000..d36e6e5a28 --- /dev/null +++ b/queue-5.10/parisc-_llseek-syscall-is-only-available-for-32-bit-userspace.patch @@ -0,0 +1,27 @@ +From da3680f564bd787ce974f9931e6e924d908b3b2a Mon Sep 17 00:00:00 2001 +From: Helge Deller +Date: Tue, 7 Apr 2026 23:56:28 +0200 +Subject: parisc: _llseek syscall is only available for 32-bit userspace + +From: Helge Deller + +commit da3680f564bd787ce974f9931e6e924d908b3b2a upstream. + +Cc: stable@vger.kernel.org +Signed-off-by: Helge Deller +Signed-off-by: Greg Kroah-Hartman +--- + 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 index 0000000000..95a67fdced --- /dev/null +++ b/queue-5.10/selftests-mqueue-fix-incorrectly-named-file.patch @@ -0,0 +1,41 @@ +From 64fac99037689020ad97e472ae898e96ea3616dc Mon Sep 17 00:00:00 2001 +From: Simon Liebold +Date: Thu, 12 Mar 2026 14:02:00 +0000 +Subject: selftests/mqueue: Fix incorrectly named file + +From: Simon Liebold + +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: # 5.10.y +Signed-off-by: Simon Liebold +Link: https://lore.kernel.org/r/20260312140200.2224850-1-simonlie@amazon.de +Signed-off-by: Shuah Khan +Signed-off-by: Greg Kroah-Hartman +--- + 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 diff --git a/queue-5.10/series b/queue-5.10/series index e5919d790e..e5f05aaedc 100644 --- a/queue-5.10/series +++ b/queue-5.10/series @@ -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