can't find file to patch at input line 107 Perhaps you used the wrong -p or --strip option? The text leading up to this was: -------------------------- |From patchwork Wed Nov 3 16:28:48 2021 |Content-Type: text/plain; charset="utf-8" |MIME-Version: 1.0 |Content-Transfer-Encoding: 7bit |X-Patchwork-Submitter: Florian Weimer |X-Patchwork-Id: 47015 |Return-Path: |X-Original-To: patchwork@sourceware.org |Delivered-To: patchwork@sourceware.org |Received: from server2.sourceware.org (localhost [IPv6:::1]) | by sourceware.org (Postfix) with ESMTP id 164E23858018 | for ; Wed, 3 Nov 2021 16:40:57 +0000 (GMT) |DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 164E23858018 |DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=sourceware.org; | s=default; t=1635957657; | bh=qKRPFTqNFH5Hk4bpOff+Jem3rqdIzBbQVE/H+JTfspU=; | h=To:Subject:In-Reply-To:References:Date:List-Id:List-Unsubscribe: | List-Archive:List-Post:List-Help:List-Subscribe:From:Reply-To:Cc: | From; | b=trEHEQptn+c1blsiGjVTemaVrcLhmrI1QQdNO4N/hltLddFirzqTDaeB2IncZIK8i | iCBtED2ixFwFfSizH2Da7UtIJRvhOpeLaXpH1EkZE9fZOmH7+GmfDI49ArL/JVIVR+ | tlgQujb5WFFH3++h8soLY/Hp8IFlTWY7Q8TIXxVk= |X-Original-To: libc-alpha@sourceware.org |Delivered-To: libc-alpha@sourceware.org |Received: from us-smtp-delivery-124.mimecast.com | (us-smtp-delivery-124.mimecast.com [170.10.133.124]) | by sourceware.org (Postfix) with ESMTPS id 21801385840A | for ; Wed, 3 Nov 2021 16:28:55 +0000 (GMT) |DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org 21801385840A |Received: from mimecast-mx01.redhat.com (mimecast-mx01.redhat.com | [209.132.183.4]) (Using TLS) by relay.mimecast.com with ESMTP id | us-mta-250-EuI_jWiHOGuwDcrggiBNNQ-1; Wed, 03 Nov 2021 12:28:53 -0400 |X-MC-Unique: EuI_jWiHOGuwDcrggiBNNQ-1 |Received: from smtp.corp.redhat.com (int-mx06.intmail.prod.int.phx2.redhat.com | [10.5.11.16]) | (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) | (No client certificate requested) | by mimecast-mx01.redhat.com (Postfix) with ESMTPS id CFDFC18125C2; | Wed, 3 Nov 2021 16:28:52 +0000 (UTC) |Received: from oldenburg.str.redhat.com (unknown [10.39.192.3]) | by smtp.corp.redhat.com (Postfix) with ESMTPS id 1768968D7D; | Wed, 3 Nov 2021 16:28:49 +0000 (UTC) |To: gcc-patches@gcc.gnu.org |Subject: [PATCH 3/4] libgcc: Split FDE search code from PT_GNU_EH_FRAME lookup |In-Reply-To: |References: |X-From-Line: 53daedec153e3bf9b1a9c14f61cfe23385de80c9 Mon Sep 17 00:00:00 2001 |Message-Id: | <53daedec153e3bf9b1a9c14f61cfe23385de80c9.1635955148.git.fweimer@redhat.com> |Date: Wed, 03 Nov 2021 17:28:48 +0100 |User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/27.2 (gnu/linux) |MIME-Version: 1.0 |X-Scanned-By: MIMEDefang 2.79 on 10.5.11.16 |X-Mimecast-Spam-Score: 0 |X-Mimecast-Originator: redhat.com |X-Spam-Status: No, score=-12.7 required=5.0 tests=BAYES_00, DKIMWL_WL_HIGH, | DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, DKIM_VALID_EF, GIT_PATCH_0, | RCVD_IN_DNSWL_LOW, RCVD_IN_MSPIKE_H2, SPF_HELO_NONE, SPF_NONE, | TXREP autolearn=ham autolearn_force=no version=3.4.4 |X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on | server2.sourceware.org |X-BeenThere: libc-alpha@sourceware.org |X-Mailman-Version: 2.1.29 |Precedence: list |List-Id: Libc-alpha mailing list |List-Unsubscribe: , | |List-Archive: |List-Post: |List-Help: |List-Subscribe: , | |X-Patchwork-Original-From: Florian Weimer via Libc-alpha | |From: Florian Weimer |Reply-To: Florian Weimer |Cc: Jakub Jelinek , libc-alpha@sourceware.org, | Jason Merrill |Errors-To: libc-alpha-bounces+patchwork=sourceware.org@sourceware.org |Sender: "Libc-alpha" | | |This allows switching to a different implementation for |PT_GNU_EH_FRAME lookup in a subsequent commit. | |This moves some of the PT_GNU_EH_FRAME parsing out of the glibc loader |lock that is implied by dl_iterate_phdr. However, the FDE is already |parsed outside the lock before this change, so this does not introduce |additional crashes in case of a concurrent dlclose. | |libunwind/ChangeLog | | * unwind-dw2-fde-dip.c (struct unw_eh_callback_data): Add hdr. | Remove func, ret. | (struct find_fde_tail_result): New. | (find_fde_tail): New function. Split from | _Unwind_IteratePhdrCallback. | (_Unwind_Find_FDE): Add call to find_fde_tail. |--- | libgcc/unwind-dw2-fde-dip.c | 91 +++++++++++++++++++++---------------- | 1 file changed, 52 insertions(+), 39 deletions(-) | |diff --git a/libgcc/unwind-dw2-fde-dip.c b/libgcc/unwind-dw2-fde-dip.c |index 3f302826d2d..272c0ec46c0 100644 |--- a/libgcc/unwind-dw2-fde-dip.c |+++ b/libgcc/unwind-dw2-fde-dip.c -------------------------- No file to patch. Skipping patch. 10 out of 10 hunks ignored