can't find file to patch at input line 95 Perhaps you used the wrong -p or --strip option? The text leading up to this was: -------------------------- |From patchwork Mon Jun 14 22:32:14 2021 |Content-Type: text/plain; charset="utf-8" |MIME-Version: 1.0 |Content-Transfer-Encoding: 7bit |X-Patchwork-Submitter: Mark Brown |X-Patchwork-Id: 43851 |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 8B39D394FC06 | for ; Mon, 14 Jun 2021 22:36:23 +0000 (GMT) |DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 8B39D394FC06 |DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=sourceware.org; | s=default; t=1623710183; | bh=957/WbHZwwAwPaDam8HYSY5e3uvhHkZT+U9YPmVB/AA=; | h=To:Subject:Date:In-Reply-To:References:List-Id:List-Unsubscribe: | List-Archive:List-Post:List-Help:List-Subscribe:From:Reply-To:Cc: | From; | b=BJYZwgnplD3YV20SnDfrtzTw0EJeJ0JmoRwPzC1sGrryMOkdZ96FZOT1Gyg2ZNf8+ | WY46Jzh/7vwAHtRpoNjXRZAAtmnHwM34CD/cvl2YXvFUiSbMtYaWipPIXgue1BlMMz | mSyzo78iyH/QWofUWhLAl+PUyBE7s/Wz2P//fdeM= |X-Original-To: libc-alpha@sourceware.org |Delivered-To: libc-alpha@sourceware.org |Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) | by sourceware.org (Postfix) with ESMTPS id 28B513835409 | for ; Mon, 14 Jun 2021 22:33:16 +0000 (GMT) |DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org 28B513835409 |Received: by mail.kernel.org (Postfix) with ESMTPSA id B398461350; | Mon, 14 Jun 2021 22:33:14 +0000 (UTC) |To: Catalin Marinas , | Will Deacon |Subject: [PATCH v3 4/4] elf: Remove has_interp property from | arch_parse_elf_property() |Date: Mon, 14 Jun 2021 23:32:14 +0100 |Message-Id: <20210614223214.39011-5-broonie@kernel.org> |X-Mailer: git-send-email 2.20.1 |In-Reply-To: <20210614223214.39011-1-broonie@kernel.org> |References: <20210614223214.39011-1-broonie@kernel.org> |MIME-Version: 1.0 |X-Developer-Signature: v=1; a=openpgp-sha256; l=2046; h=from:subject; | bh=dADxCcnOfO3ZUnZ9a2fEumgqIOKICC14vf9CSy6vgv0=; | b=owEBbQGS/pANAwAKASTWi3JdVIfQAcsmYgBgx9jthwgmlfRA1jM91GkX7mG7mC714J/VsA8WtqyN | FwHJzzqJATMEAAEKAB0WIQSt5miqZ1cYtZ/in+ok1otyXVSH0AUCYMfY7QAKCRAk1otyXVSH0Px6B/ | 9ZQmIoNj/Fsbx5yBcfBfa7aW1jNFB1wAIMpAythc7L3lyflO+/Uo83KH38OzRCi72aZPXNs89O8hk/ | z5KFmFFHmgUhxh++V1Uv6+JML3VbsAk4QeaW6LNwE1JlfMB6WPk4lKdlqRW1V0jo8Wl5zL2CbzsKlq | skmLKgudOy6QdcUTdZ62XOROXUIDtYl9HIBqx0295UpAcHTYH7XnrUWz571gJH1RozGZPoz0/gQcRJ | rQvOGo3ncDf6amtTmrO4k7JyO0rtQ5op4tXC6y6fyJ9rr8se4lVLKkDWs1rPvewsDj42iVEY86NJoT | cj0wVnj4CIRpZ8Mn2W4lcJTDzZl4Nb |X-Developer-Key: i=broonie@kernel.org; a=openpgp; | fpr=3F2568AAC26998F9E813A1C5C3F436CA30F5D8EB |X-Spam-Status: No, score=-10.9 required=5.0 tests=BAYES_00, DKIMWL_WL_HIGH, | DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, DKIM_VALID_EF, GIT_PATCH_0, | SPF_HELO_NONE, SPF_PASS, TXREP autolearn=ham autolearn_force=no version=3.4.2 |X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) 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: Mark Brown via Libc-alpha | |From: Mark Brown |Reply-To: Mark Brown |Cc: linux-arch@vger.kernel.org, Yu-cheng Yu , | libc-alpha@sourceware.org, Szabolcs Nagy , | Jeremy Linton , Mark Brown , | Dave Martin , linux-arm-kernel@lists.infradead.org |Errors-To: libc-alpha-bounces+patchwork=sourceware.org@sourceware.org |Sender: "Libc-alpha" | | |Since all current users of arch_parse_elf_property() are able to treat the |interpreter and main executable orthogonaly the has_interp argument is now |redundant so remove it. | |Signed-off-by: Mark Brown |--- | arch/arm64/include/asm/elf.h | 2 +- | fs/binfmt_elf.c | 2 +- | include/linux/elf.h | 4 ++-- | 3 files changed, 4 insertions(+), 4 deletions(-) | |diff --git a/arch/arm64/include/asm/elf.h b/arch/arm64/include/asm/elf.h |index 9f86dbce2680..a6e9032b951a 100644 |--- a/arch/arm64/include/asm/elf.h |+++ b/arch/arm64/include/asm/elf.h -------------------------- No file to patch. Skipping patch. 1 out of 1 hunk ignored can't find file to patch at input line 108 Perhaps you used the wrong -p or --strip option? The text leading up to this was: -------------------------- |diff --git a/fs/binfmt_elf.c b/fs/binfmt_elf.c |index ffe38d54308b..5509ae63c2e1 100644 |--- a/fs/binfmt_elf.c |+++ b/fs/binfmt_elf.c -------------------------- No file to patch. Skipping patch. 1 out of 1 hunk ignored can't find file to patch at input line 121 Perhaps you used the wrong -p or --strip option? The text leading up to this was: -------------------------- |diff --git a/include/linux/elf.h b/include/linux/elf.h |index d8392531899d..cdb080d4b34a 100644 |--- a/include/linux/elf.h |+++ b/include/linux/elf.h -------------------------- No file to patch. Skipping patch. 1 out of 1 hunk ignored