From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 71C061581FB for ; Mon, 26 Aug 2024 16:38:39 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B0CE0E29F4; Mon, 26 Aug 2024 16:38:38 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 4D45AE29F4 for ; Mon, 26 Aug 2024 16:38:38 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 881BE340C76 for ; Mon, 26 Aug 2024 16:38:37 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id CBDC6167A for ; Mon, 26 Aug 2024 16:38:35 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1724690285.3d95e904d7e2ed93baab37897a46b381bd9cf986.sam@gentoo> Subject: [gentoo-commits] proj/toolchain/glibc-patches:master commit in: 9999/ X-VCS-Repository: proj/toolchain/glibc-patches X-VCS-Files: 9999/0007-Mitigation-for-clone-on-sparc-might-fail-with-EFAULT.patch X-VCS-Directories: 9999/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 3d95e904d7e2ed93baab37897a46b381bd9cf986 X-VCS-Branch: master Date: Mon, 26 Aug 2024 16:38:35 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 023945d4-e608-4729-9d4f-e45195e19b74 X-Archives-Hash: fd6cee0a3cd33d49f3e1b1b3687c9376 commit: 3d95e904d7e2ed93baab37897a46b381bd9cf986 Author: Sam James gentoo org> AuthorDate: Mon Aug 26 16:38:05 2024 +0000 Commit: Sam James gentoo org> CommitDate: Mon Aug 26 16:38:05 2024 +0000 URL: https://gitweb.gentoo.org/proj/toolchain/glibc-patches.git/commit/?id=3d95e904 9999: drop 0007-Mitigation-for-clone-on-sparc-might-fail-with-EFAULT.patch This landed upstream in faeaa3bc9f76030b9882ccfdee232fc0ca6dcb06 which is in 2.40. Signed-off-by: Sam James gentoo.org> ...for-clone-on-sparc-might-fail-with-EFAULT.patch | 50 ---------------------- 1 file changed, 50 deletions(-) diff --git a/9999/0007-Mitigation-for-clone-on-sparc-might-fail-with-EFAULT.patch b/9999/0007-Mitigation-for-clone-on-sparc-might-fail-with-EFAULT.patch deleted file mode 100644 index 65fb098..0000000 --- a/9999/0007-Mitigation-for-clone-on-sparc-might-fail-with-EFAULT.patch +++ /dev/null @@ -1,50 +0,0 @@ -From e2218c420f1aca6c8910f4ddd6df11815c137bdf Mon Sep 17 00:00:00 2001 -From: Michael Karcher -Date: Sat, 17 Feb 2024 22:47:58 +0100 -Subject: [PATCH] Mitigation for "clone on sparc might fail with -EFAULT for no - valid reason" -MIME-Version: 1.0 -Content-Type: text/plain; charset=UTF-8 -Content-Transfer-Encoding: 8bit - -Bug: https://www.mail-archive.com/debian-glibc@lists.debian.org/msg62592.html -Bug: https://sourceware.org/bugzilla/show_bug.cgi?id=31394 -See-also: https://lore.kernel.org/sparclinux/62f9be9d-a086-4134-9a9f-5df8822708af@mkarcher.dialup.fu-berlin.de/ -Signed-off-by: Andreas K. Hüttel -(cherry picked from commit fa441cd6be9a34d81306d41defeefaa2ac31d0b8) ---- - sysdeps/unix/sysv/linux/sparc/sparc32/clone.S | 3 +++ - sysdeps/unix/sysv/linux/sparc/sparc64/clone.S | 3 +++ - 2 files changed, 6 insertions(+) - -diff --git a/sysdeps/unix/sysv/linux/sparc/sparc32/clone.S b/sysdeps/unix/sysv/linux/sparc/sparc32/clone.S -index b48aa96ea6..0b1af3203b 100644 ---- a/sysdeps/unix/sysv/linux/sparc/sparc32/clone.S -+++ b/sysdeps/unix/sysv/linux/sparc/sparc32/clone.S -@@ -28,6 +28,9 @@ - .text - ENTRY (__clone) - save %sp,-96,%sp -+ save %sp,-96,%sp -+ flushw -+ restore - cfi_def_cfa_register(%fp) - cfi_window_save - cfi_register(%o7, %i7) -diff --git a/sysdeps/unix/sysv/linux/sparc/sparc64/clone.S b/sysdeps/unix/sysv/linux/sparc/sparc64/clone.S -index e6c4e12f47..48a7152f38 100644 ---- a/sysdeps/unix/sysv/linux/sparc/sparc64/clone.S -+++ b/sysdeps/unix/sysv/linux/sparc/sparc64/clone.S -@@ -32,6 +32,9 @@ - - ENTRY (__clone) - save %sp, -192, %sp -+ save %sp, -192, %sp -+ flushw -+ restore - cfi_def_cfa_register(%fp) - cfi_window_save - cfi_register(%o7, %i7) --- -2.43.0 -